OSDN Git Service

android-x86/frameworks-native.git
9 years agoam 60d31a0f: am 3c648e37: Update comment to use correct GPS file for wearable.
Sean Wan [Fri, 19 Sep 2014 22:02:37 +0000 (22:02 +0000)]
am 60d31a0f: am 3c648e37: Update comment to use correct GPS file for wearable.

* commit '60d31a0fc0724d4538d105a800a1565e5f843130':
  Update comment to use correct GPS file for wearable.

9 years agoam 3c648e37: Update comment to use correct GPS file for wearable.
Sean Wan [Fri, 19 Sep 2014 21:49:11 +0000 (21:49 +0000)]
am 3c648e37: Update comment to use correct GPS file for wearable.

* commit '3c648e373a44237c1924fc886daf8418a6e9f4cf':
  Update comment to use correct GPS file for wearable.

9 years agoUpdate comment to use correct GPS file for wearable.
Sean Wan [Fri, 19 Sep 2014 21:33:51 +0000 (14:33 -0700)]
Update comment to use correct GPS file for wearable.

Change-Id: I91c4363dbcc6cada8d6e9599d1b15e77febee0e5

9 years agosurfaceflinger: add getDisplayStats() method
Lajos Molnar [Thu, 11 Sep 2014 21:58:45 +0000 (14:58 -0700)]
surfaceflinger: add getDisplayStats() method

This is used by media service to schedule video frames at the
proper time, based on precise vsync timings.

Bug: 14659809
Change-Id: I1a90603f3dc09dca9aa4f90a3aa845fab56e0a5e

9 years agoMerge "Fix typo for android.hardware.audio.output feature in handheld device config...
Unsuk Jung [Mon, 15 Sep 2014 23:42:53 +0000 (23:42 +0000)]
Merge "Fix typo for android.hardware.audio.output feature in handheld device config" into lmp-dev

9 years agoMerge "SensorService fixes." into lmp-dev
Aravind Akella [Mon, 15 Sep 2014 22:09:52 +0000 (22:09 +0000)]
Merge "SensorService fixes." into lmp-dev

9 years agoSensorService fixes.
Aravind Akella [Mon, 15 Sep 2014 00:29:48 +0000 (17:29 -0700)]
SensorService fixes.

   i) Initialize sensor_event.flags to zero or wake_up flag before sending dropped flush_complete_events. This will avoid unnecessary acks.
Currently it is not set to anything which may result in garbage values for flags field.
   ii) Change the dump format of SensorEventConnection.
   iii) Add const to method signatures wherever applicable.

Bug id: https://b2.corp.google.com/issues/17498626

Change-Id: Ia736ffb01c366540aab73cdcf596ce852c052593

9 years agoAdd system feature for ConnectionService API support (2/3)
Ihab Awad [Fri, 12 Sep 2014 18:11:16 +0000 (11:11 -0700)]
Add system feature for ConnectionService API support (2/3)

Bug: 17445268

Change-Id: Ib96e50e2558d2744f74419fd022f3f20d578a2de

9 years agoFix typo for android.hardware.audio.output feature in handheld device config
Unsuk Jung [Fri, 12 Sep 2014 22:49:32 +0000 (15:49 -0700)]
Fix typo for android.hardware.audio.output feature in handheld device config

Bug: 15318046
Change-Id: I6437a2e87a909a8ef4ce6fcdc56ff06c5599a15a

9 years agoRename managed_profiles feature to managed_users
Amith Yamasani [Fri, 12 Sep 2014 21:21:03 +0000 (14:21 -0700)]
Rename managed_profiles feature to managed_users

Bug: 17392243
Change-Id: Ib60d1563ecdda9a979196ef51e849be2f9e9f841

9 years agoMerge "Make dumpstate vibrate immediately." into lmp-dev
Jeff Brown [Thu, 11 Sep 2014 22:32:05 +0000 (22:32 +0000)]
Merge "Make dumpstate vibrate immediately." into lmp-dev

9 years agoMake dumpstate vibrate immediately.
Jeff Brown [Thu, 11 Sep 2014 21:15:27 +0000 (14:15 -0700)]
Make dumpstate vibrate immediately.

Previously, the vibration was not performed until after stacks
were gathered which takes a long time.  Moved the vibration
to happen earlier so we provide better user feedback for the
three-button salute when collecting a bug report.

Deleted some dead code for playing begin/end sounds.

Improved the timing measurement code to help track down why
bug reports are so slow.  (They take over a minute now which
can cause us to lose valuable diagnostic information.)

Bug: 17474152
Change-Id: Iac73f7993d7dc85196aad96f459b22fd4a710f94

9 years agoSensorService fixes
Aravind Akella [Mon, 8 Sep 2014 22:45:47 +0000 (15:45 -0700)]
SensorService fixes

  i) Significant Motion multiple clients fix. Make a copy of
  mActiveConnections vector before cleaning up SensorEventConnections
  when one-shot sensors trigger.
  ii) Maintain a mapping between flush_complete_events and
  SensorEventConnections to accurately map flush() API calls and
  corresponding flush_complete_events
  iii) Remove all references to 1_1 and 1_2 HALs.
  iv) Dynamically allocate sensor_event buffers in SensorService main
  threadLoop.

Bug: 17412359
Change-Id: If3c3986197660cafef2d2e0b4dc7582e229cf1c4

9 years agoMerge "Add feature flags for verified boot and securely remove users." into lmp-dev
Adam Connors [Wed, 10 Sep 2014 10:07:49 +0000 (10:07 +0000)]
Merge "Add feature flags for verified boot and securely remove users." into lmp-dev

9 years agoMerge "Add support for max res decode" into lmp-dev
Jeff Tinker [Tue, 9 Sep 2014 23:55:59 +0000 (23:55 +0000)]
Merge "Add support for max res decode" into lmp-dev

9 years agoMerge "Use time() instead of clock() for timeouts." into lmp-dev
Christopher Ferris [Tue, 9 Sep 2014 20:29:15 +0000 (20:29 +0000)]
Merge "Use time() instead of clock() for timeouts." into lmp-dev

9 years agoUse time() instead of clock() for timeouts.
Christopher Ferris [Tue, 9 Sep 2014 20:10:49 +0000 (13:10 -0700)]
Use time() instead of clock() for timeouts.

The clock() function returns the processor time used by the process. This
is not a good timeout mechanism since the code is suspended most of the
time waiting for the forked process to finish. Replace with the time()
function.

Bug: 17154069
Change-Id: Ib383329f9db269445d71a100553b08e71fddda3f

9 years agoUpdate ScreenshotClient to take advantage of rotation in surfaceflinger's screencap api
Riley Andrews [Thu, 4 Sep 2014 23:19:44 +0000 (16:19 -0700)]
Update ScreenshotClient to take advantage of rotation in surfaceflinger's screencap api

Change-Id: I836649d9d5cd5958ce34e47f26f4a36d2d05d24c

9 years agoMerge "Add rotation to surfaceflingers screen cap." into lmp-dev
Riley Andrews [Tue, 9 Sep 2014 19:40:52 +0000 (19:40 +0000)]
Merge "Add rotation to surfaceflingers screen cap." into lmp-dev

9 years agoMerge "Add new system APK locations." into lmp-dev
Jeff Sharkey [Tue, 9 Sep 2014 16:27:05 +0000 (16:27 +0000)]
Merge "Add new system APK locations." into lmp-dev

9 years agoAdd new system APK locations.
Jeff Sharkey [Tue, 9 Sep 2014 00:14:26 +0000 (17:14 -0700)]
Add new system APK locations.

Add /system/priv-app and /oem/app paths to system paths.  Also allow
rmdex on system apps, and quietly ignore when it was already removed.

Also relax logging when clearing code cache, since it's optional.

Bug: 17205122
Change-Id: I4fc4d0f63a3596937c4defbd64e1f8a1c563f02d

9 years agoAdd rotation to surfaceflingers screen cap.
Riley Andrews [Thu, 4 Sep 2014 23:20:31 +0000 (16:20 -0700)]
Add rotation to surfaceflingers screen cap.

+ This is needed so that activity manager does not
  have to do cpu side rotations when capturing recents
  thumbnails.

Change-Id: If998008e675ad01305db8399fd643cf4608b7025

9 years agoMerge "Add FEATURE_GAMEPAD." into lmp-dev
Michael Wright [Mon, 8 Sep 2014 23:21:34 +0000 (23:21 +0000)]
Merge "Add FEATURE_GAMEPAD." into lmp-dev

9 years agoMerge "Make IPowerManager native conform to .aidl for oneway" into lmp-dev
Glenn Kasten [Mon, 8 Sep 2014 16:33:54 +0000 (16:33 +0000)]
Merge "Make IPowerManager native conform to .aidl for oneway" into lmp-dev

9 years agoAdd feature flags for verified boot and securely remove users.
Adam Connors [Mon, 8 Sep 2014 16:33:16 +0000 (17:33 +0100)]
Add feature flags for verified boot and securely remove users.

Bug: 17405636
Change-Id: I06c0319f7903787910c52d65025b0d77d9e0575f

9 years agoAdd feature android.hardware.audio.output xml file
Unsuk Jung [Wed, 3 Sep 2014 01:46:59 +0000 (18:46 -0700)]
Add feature android.hardware.audio.output xml file

Bug: 15318046
Change-Id: I49f0881752493ac0bad238b43ce7e1e147119528

9 years agoAdd FEATURE_GAMEPAD.
Michael Wright [Fri, 5 Sep 2014 22:21:32 +0000 (15:21 -0700)]
Add FEATURE_GAMEPAD.

This allows micro-consoles or other devices to signify that there's a
game controller in the box, even if the user hasn't connected it.

Change-Id: I93cfba8bd1376aa5d1ec772a5b643b974eaa36c5

9 years agoMake IPowerManager native conform to .aidl for oneway
Glenn Kasten [Fri, 5 Sep 2014 23:46:46 +0000 (16:46 -0700)]
Make IPowerManager native conform to .aidl for oneway

But provide a temporary escape hatch for AudioFlinger.
This oneway option will be removed as soon as possible.

Bug: 16408906
Change-Id: I20d6da1969ae05b96e72795463470eb4c1f8fbdc

9 years agoMerge "SensorService flush fixes." into lmp-dev
Aravind Akella [Fri, 5 Sep 2014 19:53:36 +0000 (19:53 +0000)]
Merge "SensorService flush fixes." into lmp-dev

9 years agoMerge "IPowerManager: make all binder call one way" into lmp-dev
Eric Laurent [Fri, 5 Sep 2014 17:30:04 +0000 (17:30 +0000)]
Merge "IPowerManager: make all binder call one way" into lmp-dev

9 years agoIPowerManager: make all binder call one way
Eric Laurent [Sun, 10 Aug 2014 17:46:52 +0000 (10:46 -0700)]
IPowerManager: make all binder call one way

make all binder call to power manager service one way so that
they don't block calling thread and are processed in the
incoming order.

Bug: 16408906.
Change-Id: I94034df7f0a36d967e085b53fdc37fff7b44757b

9 years agoam 6de9f394: (-s ours) am 8c967b9b: DO NOT MERGE: Removing android prefix for ECG...
Vinod Krishnan [Thu, 4 Sep 2014 23:23:46 +0000 (23:23 +0000)]
am 6de9f394: (-s ours) am 8c967b9b: DO NOT MERGE: Removing android prefix for ECG feature

* commit '6de9f39476c6bbb1d196dbc6af23a27b177c7bf9':
  DO NOT MERGE: Removing android prefix for ECG feature

9 years agoam 8c967b9b: DO NOT MERGE: Removing android prefix for ECG feature
Vinod Krishnan [Thu, 4 Sep 2014 23:11:58 +0000 (23:11 +0000)]
am 8c967b9b: DO NOT MERGE: Removing android prefix for ECG feature

* commit '8c967b9bea7c80a8bd7d085fa9c9e390495dd1e8':
  DO NOT MERGE: Removing android prefix for ECG feature

9 years agoDO NOT MERGE: Removing android prefix for ECG feature
Vinod Krishnan [Thu, 4 Sep 2014 22:24:12 +0000 (15:24 -0700)]
DO NOT MERGE: Removing android prefix for ECG feature

Bug: 17272904

Change-Id: Ia476bd8853e098600b681bb769536774596b9345

9 years agoMerge "Fix undefined behavior (not returning a value from a function with return...
Stephen Hines [Thu, 4 Sep 2014 21:50:39 +0000 (21:50 +0000)]
Merge "Fix undefined behavior (not returning a value from a function with return)." into lmp-dev

9 years agoMerge "Fix type for temp variable" into lmp-dev
Michael Wright [Thu, 4 Sep 2014 21:46:59 +0000 (21:46 +0000)]
Merge "Fix type for temp variable" into lmp-dev

9 years agoFix undefined behavior (not returning a value from a function with return).
Stephen Hines [Thu, 4 Sep 2014 15:28:54 +0000 (08:28 -0700)]
Fix undefined behavior (not returning a value from a function with return).

Bug: 17379740

This function was missing a return statement, even though it declares a return
type. This is undefined behavior, which clang miscompiled into just falling
through to a later function in some cases. Adding the return statement
fixes the undefined behavior (and probably fixes a bug too).

Change-Id: I05c03b6473b831769dc4fa8b5ba43fb4249f7626

9 years agoSensorService flush fixes.
Aravind Akella [Wed, 3 Sep 2014 22:48:05 +0000 (15:48 -0700)]
SensorService flush fixes.

 i) Fix a possible race condition when adding a pending flush connection
 to mActiveSensors data structure.
 ii) Invalidate flush_complete_events as soon as they are consumed by a
 connection so that they are not used by other connections which are
 registered for the same sensor.

Change-Id: I1491bea8c2081c4aab1feacc60add13b7aa26bb7

9 years agoMerge "Fix CAS argument type." into lmp-dev
Hans Boehm [Wed, 3 Sep 2014 17:18:44 +0000 (17:18 +0000)]
Merge "Fix CAS argument type." into lmp-dev

9 years agoMerge "New keycode definitions for TV remotes." into lmp-dev
Wally Yau [Wed, 3 Sep 2014 17:15:37 +0000 (17:15 +0000)]
Merge "New keycode definitions for TV remotes." into lmp-dev

9 years agoFix CAS argument type.
Hans Boehm [Tue, 19 Aug 2014 20:42:54 +0000 (13:42 -0700)]
Fix CAS argument type.

Gcc apparently doesn't check; clang does.

Bug:17067219
Change-Id: I184084a5063131dbc857c63f97e70e78a05e1a76
(cherry picked from commit 1ddaadb59883df5ca821b4b08fdd41a1720a3b6f)

9 years agoRevert "Revert "Revert "Revert "Remove incorrect android_atomic_...64 use.""""
Hans Boehm [Tue, 12 Aug 2014 22:56:00 +0000 (22:56 +0000)]
Revert "Revert "Revert "Revert "Remove incorrect android_atomic_...64 use.""""

After fixing b/16874785.

This reverts commit f010a05c7e9a23b6083294aff4a8183ab01f686e.

Original comment, which actually describes the effect of this:

Change the mExtras field in Binder.h to be a stdatomic.h atomic
value, and replace references to it with proper stdatomic.h calls.
This removes one of a small number of remaining 64 bit
android_atomic references.  It also replaces the erroneously
non-atomic read accesses to mExtras.

It would be better if this used the C++11 <atomic> facility,
but we don't quite have that yet.

Fixes

Bug:16513433

Change-Id: I1645ca5d6f60595bf5d388913665ce4b8780b26d
(cherry picked from commit 3effababf2980d029339522fdc914bdeb913d99b)

9 years agoNew keycode definitions for TV remotes.
ASAZU, Hideki [Wed, 27 Aug 2014 09:06:31 +0000 (18:06 +0900)]
New keycode definitions for TV remotes.

Keys which are necessary for supporting world-wide broadcast
standard or used commonly for TV/STB remotes.

Change-Id: I2721ceb7d956c87f1d4106b99f9d21947ae13d47

9 years agoFix type for temp variable
Michael Wright [Fri, 29 Aug 2014 23:16:26 +0000 (16:16 -0700)]
Fix type for temp variable

Change-Id: I8e2d229da326e5182692f94660336169fb249da7

9 years agoAdd logging for switch state
Michael Wright [Fri, 29 Aug 2014 21:31:32 +0000 (14:31 -0700)]
Add logging for switch state

Bug: 17004602
Change-Id: I15c9feb7b28274183742936c20e34e7fb07e0b70

9 years agoAdd support for max res decode
Jeff Tinker [Fri, 29 Aug 2014 01:00:58 +0000 (18:00 -0700)]
Add support for max res decode

bug: 16034599
Change-Id: Ia1de1457ca29fe1dd7e55f4bb45da45ea3f6e5b1

9 years agoRemove obsolete prunedexcache
Alex Light [Thu, 28 Aug 2014 23:17:04 +0000 (16:17 -0700)]
Remove obsolete prunedexcache

Bug: 16875245

(cherry picked from commit 5f727f86942a188354c028356f1167794fdc8655)

Change-Id: I06e14c405aa4af295795982c1d236be3cb00e893

9 years agoAdd android.software.live_tv feature
Jae Seo [Thu, 28 Aug 2014 19:53:46 +0000 (12:53 -0700)]
Add android.software.live_tv feature

Bug: 17284986
Change-Id: I777d045f61a50f7ea473cb26bb509123c440587a

9 years agoMerge "GLConsumer: Fix eglTerminate/eglInit edge case." into lmp-dev
Eric Penner [Wed, 27 Aug 2014 18:07:04 +0000 (18:07 +0000)]
Merge "GLConsumer: Fix eglTerminate/eglInit edge case." into lmp-dev

9 years agoMerge "Make clear data stricter." into lmp-dev
Jeff Sharkey [Wed, 27 Aug 2014 17:58:34 +0000 (17:58 +0000)]
Merge "Make clear data stricter." into lmp-dev

9 years agoMake clear data stricter.
Jeff Sharkey [Wed, 27 Aug 2014 17:46:25 +0000 (10:46 -0700)]
Make clear data stricter.

It should nuke everything under the data directory.  PMS will come
around and generate the lib symlink after we're finished.

Bug: 16739202
Change-Id: Ib70af2e1450e3bed6781fb497b9cc67e1e594c49

9 years agoSet compiler filter flag to true when vmSafeMode is present.
Calin Juravle [Wed, 27 Aug 2014 15:10:03 +0000 (16:10 +0100)]
Set compiler filter flag to true when vmSafeMode is present.

Bug: 12457423
Change-Id: I33345c5cce76681d8a6592ebae8c9f96a9f0f8bd

9 years agoGLConsumer: Fix eglTerminate/eglInit edge case.
Eric Penner [Tue, 26 Aug 2014 03:16:37 +0000 (20:16 -0700)]
GLConsumer: Fix eglTerminate/eglInit edge case.

If a display is terminated and then initialized, we can't detect
this using the display itself (it has the same value), but all
EglImages still become invalid for the display. This patch detects
this during image binding and forces creation of a new EglImage.

Bug: 10430249
Change-Id: I75101c50962f21263dca3ec6e241a2e5a3c23dad

9 years agoMerge "Add vm_safe_mode to dexopt." into lmp-dev
Calin Juravle [Tue, 26 Aug 2014 19:09:55 +0000 (19:09 +0000)]
Merge "Add vm_safe_mode to dexopt." into lmp-dev

9 years agoMerge "Pass isa features flag to dex2oat." into lmp-dev
Calin Juravle [Tue, 26 Aug 2014 17:34:57 +0000 (17:34 +0000)]
Merge "Pass isa features flag to dex2oat." into lmp-dev

9 years agoAdd vm_safe_mode to dexopt.
Calin Juravle [Thu, 21 Aug 2014 18:05:20 +0000 (19:05 +0100)]
Add vm_safe_mode to dexopt.

The flag enforces interpret-only flag for dex2oat.

Bug: 12457423
Change-Id: Ifdafcc1afa32996577fa44c5682eeb58c79772ac

9 years agoPass isa features flag to dex2oat.
Calin Juravle [Tue, 19 Aug 2014 17:48:50 +0000 (18:48 +0100)]
Pass isa features flag to dex2oat.

Bug: 16716262
Change-Id: Ifbc3a1520bc177aa87855edb60c36346f24c77cd

9 years agosurfaceflinger: Trace HW vsync enable
Jesse Hall [Mon, 25 Aug 2014 21:44:16 +0000 (14:44 -0700)]
surfaceflinger: Trace HW vsync enable

This makes it possible to tell whether two HW vsync signals are too
far apart because one was late, or because we turned HW vsync off
briefly between them.

Bug: 17259382
Change-Id: If4fba2a8a6013568349949ce87c5c36f0468d2a2

9 years agoMerge "Add native flag to reflect new density type" into lmp-dev
Adam Lesinski [Mon, 25 Aug 2014 21:42:35 +0000 (21:42 +0000)]
Merge "Add native flag to reflect new density type" into lmp-dev

9 years agoMerge "Fix deadlock when killing adb bugreport" into lmp-dev
Andres Morales [Mon, 25 Aug 2014 17:31:49 +0000 (17:31 +0000)]
Merge "Fix deadlock when killing adb bugreport" into lmp-dev

9 years agoAdd native flag to reflect new density type
Adam Lesinski [Sat, 23 Aug 2014 05:23:08 +0000 (22:23 -0700)]
Add native flag to reflect new density type

Bug:17007265
Change-Id: If0129c4ad222fe28628d6f7cd8ee78fc6424e177

9 years agoSensorService fixes
Aravind Akella [Fri, 22 Aug 2014 23:11:10 +0000 (16:11 -0700)]
SensorService fixes

     1) Limit maxEventsToWrite depending on the size of the socket
     buffer allocated (Fix for write failure on manta).
     2) Do not call flush() if the sensor is not activated (OEM issue).

Change-Id: I81ea78dbdef3a3773af505ca1c9a5e39492c0b48

9 years agoFix deadlock when killing adb bugreport
Andres Morales [Thu, 21 Aug 2014 19:38:22 +0000 (12:38 -0700)]
Fix deadlock when killing adb bugreport

Leave default signal handler (terminate) for parent process,
add SIG_IGN as signal handler for children and let them
go down when the parent gets SIGPIPE.

Bug: 17109154
Change-Id: Id33db3e97a32f289eb2a9a1a0ca8acbe3dcd285d

9 years agoMerge "Add Voice Assist key." into lmp-dev
Michael Wright [Fri, 22 Aug 2014 18:02:01 +0000 (18:02 +0000)]
Merge "Add Voice Assist key." into lmp-dev

9 years agoMerge "Update currentConfig variable when active display is changed." into lmp-dev
Michael Lentine [Fri, 22 Aug 2014 16:34:13 +0000 (16:34 +0000)]
Merge "Update currentConfig variable when active display is changed." into lmp-dev

9 years agoFix validation of system paths in installd.
Calin Juravle [Tue, 19 Aug 2014 16:43:05 +0000 (17:43 +0100)]
Fix validation of system paths in installd.

System apps are now installed under their own directory
(system_app_dir/app_dir/app.apk). The new path doesn't pass installd
validation because of obsolete checks which verify that the path does
not contain subdirectories past the system_app_dir.

The CL fixes the validation to accept at most on subdirectory.

Bug: 17109858
Change-Id: I13abb52c0016610ff436f6a26bb6b3b85dc4dfb0

9 years agoMerge "Allow apk path to contain one subdirectory." into lmp-dev
Calin Juravle [Fri, 22 Aug 2014 12:58:10 +0000 (12:58 +0000)]
Merge "Allow apk path to contain one subdirectory." into lmp-dev

9 years agoAdd Voice Assist key.
Michael Wright [Fri, 22 Aug 2014 02:09:49 +0000 (19:09 -0700)]
Add Voice Assist key.

Bug: 16292420
Change-Id: I607fadc2edf673079bfd9f7406e6e45603474957

9 years agoUpdate currentConfig variable when active display is changed.
Michael Lentine [Thu, 21 Aug 2014 21:43:13 +0000 (14:43 -0700)]
Update currentConfig variable when active display is changed.

Bug: 17182607
Change-Id: I8631c105a9e0fa402a7d9670717becc9857af935

9 years agoSensorService fixes.
Aravind Akella [Thu, 21 Aug 2014 19:28:35 +0000 (12:28 -0700)]
SensorService fixes.

   i) Add more debug stats (acks needed, acks received)
  ii) Comment out write failure message.

Change-Id: Iac892a66530849a2dd023d6f5628cd070a79537d

9 years agoam 514e30a9: am c3d1889e: Merge "surfaceflinger: skip composition for empty frames...
Jesse Hall [Wed, 20 Aug 2014 20:02:02 +0000 (20:02 +0000)]
am 514e30a9: am c3d1889e: Merge "surfaceflinger: skip composition for empty frames" into klp-modular-dev

* commit '514e30a96cefad109509ce01622fa7f82f3f318c':
  surfaceflinger: skip composition for empty frames

9 years agoam c3d1889e: Merge "surfaceflinger: skip composition for empty frames" into klp-modul...
Jesse Hall [Wed, 20 Aug 2014 19:52:40 +0000 (19:52 +0000)]
am c3d1889e: Merge "surfaceflinger: skip composition for empty frames" into klp-modular-dev

* commit 'c3d1889e508038efe240ed1974ed377a2e12835c':
  surfaceflinger: skip composition for empty frames

9 years agoam 1f1ca890: Adding an ECG hardware feature
Vinod Krishnan [Wed, 20 Aug 2014 18:18:32 +0000 (18:18 +0000)]
am 1f1ca890: Adding an ECG hardware feature

* commit '1f1ca890d4d82cd8d54d428c3120945a0a308975':
  Adding an ECG hardware feature

9 years agoAllow apk path to contain one subdirectory.
Calin Juravle [Fri, 15 Aug 2014 14:45:51 +0000 (15:45 +0100)]
Allow apk path to contain one subdirectory.

In the current directory layout this prevented rm_dex and move_dex
commands to validate the apk path and thus cleaning up resources.

Bug: 16888084
Change-Id: Iba579d075a9c6d7de047e7ffef95441498257086

9 years agoMerge "atrace: avoid unnecessary writes to trace_clock" into lmp-dev
Colin Cross [Thu, 21 Aug 2014 00:41:24 +0000 (00:41 +0000)]
Merge "atrace: avoid unnecessary writes to trace_clock" into lmp-dev

9 years agosf: Clear display configs when hot pluggable display is disconnected
Naseer Ahmed [Wed, 20 Aug 2014 20:31:58 +0000 (16:31 -0400)]
sf: Clear display configs when hot pluggable display is disconnected

Display configs for external displays are stored in the framework
everytime we receive a hot plug to connect. However, since the
configs are not cleared on disconnect, framework will just assume
that the configs are valid. This does not work for use cases when
you connect/disconnect external displays with different resolutions.

e.g. 1080p to 4K and vice-versa

With this change we clear the display configs and repopulate when
we receive a hot plug to connect.

Change-Id: I2eeab186a8d8668a53390a2413b2ce5e044a1845
Acked-by: Tatenda Chipeperekwa <tatendac@codeaurora.org>
9 years agoatrace: avoid unnecessary writes to trace_clock
Colin Cross [Wed, 20 Aug 2014 21:28:47 +0000 (14:28 -0700)]
atrace: avoid unnecessary writes to trace_clock

Writing to trace_clock erases the trace buffer, even if the value
hasn't changed.  This prevents use of --async_start and --async_dump
to leave background tracing running and dump after an even that
needs debugging, because --async_dump writes to trace_clock and
resets the buffer before it can read it.

Read and parse the current value from trace_clock before writing,
and skip the write if the value isn't changing.

Change-Id: Ia2ec5bb654fb0bd179771b511ff261731ba47dca

9 years agoAdding an ECG hardware feature
Vinod Krishnan [Tue, 19 Aug 2014 18:40:36 +0000 (11:40 -0700)]
Adding an ECG hardware feature

Change-Id: I368772d4cd6b2713fb5180bedc91bf2b5bc015b4

9 years agoMerge "Destroy eglSurface before recreating." into lmp-dev
Michael Lentine [Wed, 20 Aug 2014 19:38:19 +0000 (19:38 +0000)]
Merge "Destroy eglSurface before recreating." into lmp-dev

9 years agoam 2eaec5a8: am 1f1ca890: Adding an ECG hardware feature
Vinod Krishnan [Wed, 20 Aug 2014 18:29:27 +0000 (18:29 +0000)]
am 2eaec5a8: am 1f1ca890: Adding an ECG hardware feature

* commit '2eaec5a833f69b3c460386e38aa6affe5e4b1772':
  Adding an ECG hardware feature

9 years agoDestroy eglSurface before recreating.
Michael Lentine [Wed, 20 Aug 2014 17:51:23 +0000 (10:51 -0700)]
Destroy eglSurface before recreating.

Bug: 16856208

Change-Id: Ifb5c8997afab4bc922356a3542d1f899a2546855

9 years agoFix inverse orientation when original is not applied first.
Michael Lentine [Wed, 20 Aug 2014 01:14:06 +0000 (18:14 -0700)]
Fix inverse orientation when original is not applied first.

Change-Id: I6f1a11950c77c99800acbf08a672bc1b2310b0b5

9 years agoFix camera orientation by swapping horizontal and vertical flips when needed.
Michael Lentine [Tue, 19 Aug 2014 18:27:30 +0000 (11:27 -0700)]
Fix camera orientation by swapping horizontal and vertical flips when needed.

Bug: 16637957

Change-Id: I66de597546fdc19e0af9e6150ca20460ab36bf8b

9 years agoMerge "surfaceflinger: skip composition for empty frames" into klp-modular-dev
Jesse Hall [Wed, 20 Aug 2014 19:42:34 +0000 (19:42 +0000)]
Merge "surfaceflinger: skip composition for empty frames" into klp-modular-dev

9 years agosurfaceflinger: skip composition for empty frames
Jesse Hall [Thu, 14 Aug 2014 22:45:06 +0000 (15:45 -0700)]
surfaceflinger: skip composition for empty frames

By not committing the results of composition for empty frames, we
avoid spitting out series of black frames for virtual displays that
don't have visible layers. We still draw one black frame when going
from having layers to not having any. In particular, this avoids
having a series of empty frames due to re-compositing the primary
display in the period between creating the virtual display and adding
layers to it.

Bug: 16786752
Change-Id: I7e9b2ed2e407d8d49c7af736b447d4c6181b0ad8

9 years agoMerge "Fix camera orientation by swapping horizontal and vertical flips when needed...
Michael Lentine [Tue, 19 Aug 2014 23:34:23 +0000 (23:34 +0000)]
Merge "Fix camera orientation by swapping horizontal and vertical flips when needed." into lmp-dev

9 years agoMerge "Incorporate TransformToDisplayInverse into the crop calculation." into lmp-dev
Michael Lentine [Tue, 19 Aug 2014 20:56:48 +0000 (20:56 +0000)]
Merge "Incorporate TransformToDisplayInverse into the crop calculation." into lmp-dev

9 years agoIncorporate TransformToDisplayInverse into the crop calculation.
Michael Lentine [Mon, 18 Aug 2014 23:35:43 +0000 (16:35 -0700)]
Incorporate TransformToDisplayInverse into the crop calculation.

Change-Id: Ia9757b3a43d3b8f99df9fef2ed4d11c43b5abdd2

9 years agoMerge "Within CpuConsumer, use gralloc lockAsync/unlockAsync" into lmp-dev
Riley Andrews [Tue, 19 Aug 2014 20:41:18 +0000 (20:41 +0000)]
Merge "Within CpuConsumer, use gralloc lockAsync/unlockAsync" into lmp-dev

9 years agoWithin CpuConsumer, use gralloc lockAsync/unlockAsync
Riley Andrews [Mon, 18 Aug 2014 23:57:11 +0000 (16:57 -0700)]
Within CpuConsumer, use gralloc lockAsync/unlockAsync

Change-Id: I6b2cd195e111c3c7bf94c8052af4db92e09649a5

9 years agoTake advantage of sync points during screen cap.
Riley Andrews [Fri, 15 Aug 2014 19:27:24 +0000 (12:27 -0700)]
Take advantage of sync points during screen cap.

Do not wait for the screen capture to complete within surface flinger,
instead pass a sync point back with the captured gralloc buffer.

Change-Id: I7137c0e0fc710688d1d61f189159418fb27ea263

9 years agoMerge "SensorService fixes." into lmp-dev
Aravind Akella [Tue, 19 Aug 2014 20:21:24 +0000 (20:21 +0000)]
Merge "SensorService fixes." into lmp-dev

9 years agoSensorService fixes.
Aravind Akella [Wed, 13 Aug 2014 19:24:50 +0000 (12:24 -0700)]
SensorService fixes.

   1) Flush should only be received by the app calling flush(). Maintain
      a queue of all flush() calls and send flush_complete events in that
      order.
   2) Log warnings for older HALs. Remove batch() calls with DRY_RUN flag.
   3) Reallocate event cache when more sensors register and the desired
      maxCacheSize increases. Clear NEEDS_ACK flag in the buffer whenever
      there is a write() failure.
   4) More dump information. Add wake-up flag, maxDelay and timestamps for
      sensor events.

Bug: 16874778
Change-Id: I195646191059fd31f75f2f07886c0f98bf9b509a

9 years agoMerge "Don't try to capture the pointer when using PBOs for texture APIs" into lmp-dev
Ben Clayton [Wed, 20 Aug 2014 16:20:22 +0000 (16:20 +0000)]
Merge "Don't try to capture the pointer when using PBOs for texture APIs" into lmp-dev

9 years agoDon't try to capture the pointer when using PBOs for texture APIs
Ben Clayton [Mon, 18 Aug 2014 16:25:34 +0000 (17:25 +0100)]
Don't try to capture the pointer when using PBOs for texture APIs

If a PBO is bound, then the pointer argument is a relative offset from
the start of the PBO, not an absolute address.

Fixes b/17063439

Change-Id: I39629ce6c9bb3cb6bac5c9b0311287628306ddd4
(cherry picked from commit 0ad707f2f3d714af7d983d68330ed51dace815f5)

9 years agoMerge "Fix inverse orientation when original is not applied first." into lmp-dev
Michael Lentine [Wed, 20 Aug 2014 15:32:42 +0000 (15:32 +0000)]
Merge "Fix inverse orientation when original is not applied first." into lmp-dev

9 years agoMerge changes I4cfb3138,I45356c29 into lmp-dev
Colin Cross [Tue, 19 Aug 2014 01:26:00 +0000 (01:26 +0000)]
Merge changes I4cfb3138,I45356c29 into lmp-dev

* changes:
  atrace: add memory reclaim tracing
  atrace: Add IRQ events

9 years agoatrace: add memory reclaim tracing
Colin Cross [Mon, 18 Aug 2014 22:22:13 +0000 (15:22 -0700)]
atrace: add memory reclaim tracing

Add "memreclaim" to trace direct reclaim, shrink slab cycles, and
kswapd waking up and sleeping.

Change-Id: I4cfb313820a3a9aa5a9d07a39c42db41c24304a6

9 years agoatrace: Add IRQ events
Dan Willemsen [Fri, 11 Apr 2014 22:44:09 +0000 (15:44 -0700)]
atrace: Add IRQ events

Add "irq" to trace irq and softirq events.

Change-Id: I45356c2912a1fa130667ada7b21e9fb54ddcfba5

9 years agoShelve InputFlinger for another release. DO NOT MERGE
Michael Wright [Mon, 18 Aug 2014 03:01:12 +0000 (20:01 -0700)]
Shelve InputFlinger for another release. DO NOT MERGE

Change-Id: I0f034a2b8b1d9192f61f5001799bd3aa4b3964c7