summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | | | | | | | | Merge "Fix issue #17609716: Frequent crash in system_server (RT restarts)" ↵Dianne Hackborn2014-09-221-3/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into lmp-dev
| * | | | | | | | | | | | | | | | Fix issue #17609716: Frequent crash in system_server (RT restarts)Dianne Hackborn2014-09-221-3/+3
| | |_|_|_|_|_|_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There was some code here locking on the lock object instead of the main activity manager lock...!!! Change-Id: Ic85151fbef915f6fb8fd5ce3c1a7e9b810412cb6
* | | | | | | | | | | | | | | | Merge "Loosen the constraint for releasing a shared file." into lmp-devSvetoslav2014-09-221-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Loosen the constraint for releasing a shared file.Svetoslav2014-09-221-1/+1
| | |_|_|_|_|_|_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the spooler we have the renderer reading a file to visualize content and the app writing a file to produce the content. Since we have to swap the file under the renderer we have a mutex file provider that both parties can request, use when released, and release when required. This enables us to request the file which closes the renderer and when the renderer is closed ask the app to write some more pages, then open the renderer, and so on. The mutex file provider was throwing of a thread that does not own the file thries to relase it which is not needed, this should be just a nop. bug:17607134 Change-Id: Id6a2ce92d70077f57978b95315648faf02c13c68
* | | | | | | | | | | | | | | | Merge "Fix a bug in parsing app widget state XML." into lmp-devSvetoslav2014-09-221-0/+16
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / / / / / / |/| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fix a bug in parsing app widget state XML.Svetoslav2014-09-221-0/+16
| |/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When restoring app widget state from XML we read all providers, hosts, and widgets and only after reading all hosts and providers for all members of the group we hookup the widgets as they may cross profile boundary. To esntablish the host-widget and provider- widget relation we use a tag for the host and the provider that are assigned before saving the state to XML. When restoring we are using the tags to match widgets with hosts and providers. The bug was that we were not clearing the tag of all hosts and providers before reading from XML as we want the only tags that are defined to be the ones we are reading. This resulted in wrong app widget restore for a secondary user. bug:17505027 Change-Id: I035d8f13142c6b9dbc9d658b82390f9cd8d75e0d
* | | | | | | | | | | | | | | Merge "Zen: Add events as a new config attribute." into lmp-devJohn Spurlock2014-09-222-4/+23
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | Zen: Add events as a new config attribute.John Spurlock2014-09-222-4/+23
| | |_|/ / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Decouple events from alarms in the zen interception function, and default the new allowEvents to true. Bug:17580878 Change-Id: Iff10df385206ad73c3423ff118c79e94a10918d9
* | | | | | | | | | | | | | | Merge "Remove trailing zeroes from vector drawable pathData" into lmp-devAlan Viverette2014-09-2214-15/+15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | Remove trailing zeroes from vector drawable pathDataAlan Viverette2014-09-2214-15/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Speeds up parseFloat. BUG: 17391797 Change-Id: I81cf824f6ba97e65ed9628a15ad762c4c9860630
* | | | | | | | | | | | | | | | Merge "Work on issue #17581375: Nexus 5 getting low on RAM" into lmp-devDianne Hackborn2014-09-222-4/+14
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Work on issue #17581375: Nexus 5 getting low on RAMDianne Hackborn2014-09-222-4/+14
| | |_|_|/ / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Try to catch any cases where we remove a ProcessRecord from the LRU list when it may still have a process associated with it, report that this happened, and try to make sure the process is killed. Change-Id: Icd74439caba5e1c283c01a49a46dae926a00ba71
* | | | | | | | | | | | | | | | Merge "Monitor MediaRouter for remote display connections." into lmp-devMichael Wright2014-09-221-0/+37
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Monitor MediaRouter for remote display connections.Michael Wright2014-09-191-0/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since we're reusing the cast tile for screen sharing we need to make sure there's only ever one mirroring presentation going on at a time. Bug: 9905068 Change-Id: I249932d0f8853880dd453eb57c2a258e6ae952b0
* | | | | | | | | | | | | | | | | Merge "Doze: Fix NPE found when pulsing and !dozing." into lmp-devJohn Spurlock2014-09-221-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | Doze: Fix NPE found when pulsing and !dozing.John Spurlock2014-09-221-1/+1
| | |_|_|/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug:17390492 Change-Id: Id6665c5bb8fa13ee08f68478c601b77a4f9e3f6a
* | | | | | | | | | | | | | | | | Merge "Zen: Add content description to settings icon." into lmp-devJohn Spurlock2014-09-221-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | Zen: Add content description to settings icon.John Spurlock2014-09-221-1/+1
| |/ / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug:17578039 Change-Id: I6c513200b2ac1d6abd6da0dd7412500a12fded28
* | | | | | | | | | | | | | | | | Merge "Pass explicit null theme when preloading drawables" into lmp-devAlan Viverette2014-09-221-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / / / / / / / |/| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Pass explicit null theme when preloading drawablesAlan Viverette2014-09-221-1/+1
| |/ / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prevents "unresolved theme attributes" warning. BUG: 17589490 Change-Id: I5217d85b1d5ce8b551315ee8b1ca79eccfac3f10
* | | | | | | | | | | | | | | | Merge "Work on issue #17506095: Plumb a new configuration to IMMS" into lmp-devYohei Yukawa2014-09-222-0/+37
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Work on issue #17506095: Plumb a new configuration to IMMSYohei Yukawa2014-09-212-0/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This CL makes a plumbing from SystemConfig to IMMS. Change-Id: Ia70b870723acf647e0c27f24aff91b40d6f85543
* | | | | | | | | | | | | | | | | Merge "AAPT: Continuation of public/private attribute fix" into lmp-devAdam Lesinski2014-09-229-36/+316
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / / / / / / / |/| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | AAPT: Continuation of public/private attribute fixAdam Lesinski2014-09-229-36/+316
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | XML files like layouts are now scanned and checked for v21 attributes. If those kinds of attributes are found, then we remove them in the original version and synthesize a new xml file under the v21 configuration. Bug:17520380 Change-Id: Icf984cb96134180a2e35349c1dbf2cef9a8f0bda
* | | | | | | | | | | | | | | | | Fix issues with new TTS APIPrzemyslaw Szczepaniak2014-09-224-20/+7
| |_|_|_|_|/ / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 17389935 Change-Id: I59234b3222f59dc89be7e40f7d4706b1f8c610ce
* | | | | | | | | | | | | | | | Merge "Announce title of QS detail views" into lmp-devJason Monk2014-09-221-1/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Announce title of QS detail viewsJason Monk2014-09-221-1/+3
| | |_|/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When entering a QS detail view announce the title of the view for accessibility. Bug: 17578404 Change-Id: I4cfd1bc85604af822b4f5fce852b39687f71cbae
* | | | | | | | | | | | | | | | Fix status bar cast icon not updatingJason Monk2014-09-221-6/+25
|/ / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change the listening in CastControllerImpl so that it will always at least passive discovery when callbacks are added. When discovering is set this will switch to request discovery. This allows the status bar to catch disconnect callbacks when QS is not discovering. Bug: 17555869 Change-Id: Id2a80b98f6c7ca7e6a4d0ff00315d10a109e8259
* | | | | | | | | | | | | | | Merge changes Iccd4d53d,Id449bc7a into lmp-devRuben Brunk2014-09-221-2/+8
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|/ / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changes: camera2: Avoid setting null metering regions in LEGACY. camera2: Fix JPEG orientation set by LEGACY request.
| * | | | | | | | | | | | | | camera2: Avoid setting null metering regions in LEGACY.Ruben Brunk2014-09-211-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 17587491 - If a single region with zero weight is set, revert to default metering region rather than attempting to set a null to avoid setParameters failure. Change-Id: Iccd4d53d5a2134a9d744eafb731f464b653a154d
| * | | | | | | | | | | | | | camera2: Fix JPEG orientation set by LEGACY request.Ruben Brunk2014-09-211-2/+3
| | |_|_|_|/ / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 17589231 Change-Id: Id449bc7a39a6550413e6c441b6dc204e11eacda9
* | | | | | | | | | | | | | Merge "Doze: Ensure a doze reset happens after leaving keyguard." into lmp-devJohn Spurlock2014-09-222-1/+5
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Doze: Ensure a doze reset happens after leaving keyguard.John Spurlock2014-09-212-1/+5
| |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug:17536133 Change-Id: Ibc88a7f2c1a51656676fe62d4de8ab3ec4dd4081
* | | | | | | | | | | | | | Merge "Allow fallback to Toolbar's default Navigation Icon" into lmp-devYigit Boyar2014-09-223-20/+53
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / |/| | | | | | | | | | | | |
| * | | | | | | | | | | | | Allow fallback to Toolbar's default Navigation IconYigit Boyar2014-09-193-20/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 17554486 Change-Id: Id9f2197820df42d81351540be5baa852f49bdf0a
* | | | | | | | | | | | | | Merge "Pass disconnect reason for failed remote connections" into lmp-devSailesh Nepal2014-09-211-1/+5
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Pass disconnect reason for failed remote connectionsSailesh Nepal2014-09-201-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a remote connection fails to create call setDisconnected instead of setState. This allows us to pass the disconnect reason. Note, this CL is very low risk since it only impacts remote connections. Bug: 17594857 Change-Id: Id296f3f5a4bb9168b358d3bfda94e04623a6b99c
* | | | | | | | | | | | | | | Merge "camera2: refactor LEGACY mode error handling." into lmp-devRuben Brunk2014-09-2111-130/+553
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | camera2: refactor LEGACY mode error handling.Ruben Brunk2014-09-2111-130/+553
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 17431462 Bug: 17407537 - Add Surface format/size validation during configure. - Update exception error codes used in binder calls. - Report dropped requests, frames, captures, and device errors in binder callback properly. - Fixes CameraDeviceTest errors for incorrect metering rectangle weight in template tests. - Fixes CameraDeviceTest errors for missing noiseReductionMode field in template tests. - Implement flush call. Change-Id: I0da803bccf2bfb9b4c0cf61208e160a86c577497
* | | | | | | | | | | | | | | | Merge "Import translations. DO NOT MERGE" into lmp-devBaligh Uddin2014-09-212-5/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Import translations. DO NOT MERGEBaligh Uddin2014-09-202-5/+2
| | |/ / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: If5c2ca9461d0d7846374fda66e3d091dfa8f05e7 Auto-generated-cl: translation import
* | | | | | | | | | | | | | | | Merge "Fix memory leak in accessibility cache." into lmp-devSvetoslav2014-09-211-21/+6
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Fix memory leak in accessibility cache.Svetoslav2014-09-191-21/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We were not clearing the cache if window state change event is fired which was the behavior before adding the window inspection APIs. As a result if no accessibility service cares about windows we get a leek. Also when the accessibiilty service cares about windows we were not clearing all windows nodes from the cache. Now if a windows change or a window state change event is recived we clear the cache. bug:17589257 Change-Id: I8c416fbcab623160c6f505128b9fca713fcc6623
* | | | | | | | | | | | | | | | | Merge "Import translations. DO NOT MERGE" into lmp-devBaligh Uddin2014-09-212-3/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | Import translations. DO NOT MERGEBaligh Uddin2014-09-202-3/+3
| | |/ / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ib08e8991a092d8404352d9709d837be2eb392b55 Auto-generated-cl: translation import
* | | | | | | | | | | | | | | | | Merge "Import translations. DO NOT MERGE" into lmp-devBaligh Uddin2014-09-215-348/+348
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | Import translations. DO NOT MERGEBaligh Uddin2014-09-205-348/+348
| |/ / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I71fe6c9dd2eb6f3999171885a3b33e979dd7595b Auto-generated-cl: translation import
* | | | | | | | | | | | | | | | | Merge "Import translations. DO NOT MERGE" into lmp-devBaligh Uddin2014-09-21119-22/+1385
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | Import translations. DO NOT MERGEBaligh Uddin2014-09-20119-22/+1385
| |/ / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I63ca0e486e5e1ad3c2a0b654ce5be5b1789d11b1 Auto-generated-cl: translation import
* | | | | | | | | | | | | | | | | Merge "Mark sysui config resource as untranslatable." into lmp-devJohn Spurlock2014-09-211-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | |