- Jan 13, 2011
-
-
Dan Morrill authored
Change-Id: I870133fc366507d95741f8aa234776de58ba60a9
-
Nick Pelly authored
-
daniel_tomas authored
Change-Id: Ie1bc056bd36eb999b4678c594a3edc801a0cf6a1
-
- Jan 12, 2011
-
-
Kenny Root authored
-
Jaikumar Ganesh authored
-
Eric Laurent authored
-
Jaikumar Ganesh authored
There is no need for this and causes problems with certian cars. Fixes bug: 3281016 Change-Id: Idb65bbd4c8573923ebf82195b828ae071cb20aef
-
Justin Ho authored
-
Justin Ho authored
Change-Id: Ia26da7982822d818f8416a110a21d17d316d7b3f
-
Kenny Root authored
-
Andreas Huber authored
Change-Id: I95c61ed83800db82e99c0023b942fb8ae05ed3cf related-to-bug: 3338518
-
Andreas Huber authored
related-to-bug: 3331623 Squashed commit of the following: commit 8484811f3784564ce962ec1b6311bac532d73ffc Author: Andreas Huber <andih@google.com> Date: Tue Jan 11 11:56:06 2011 -0800 Properly parse Matroska lacing flags and extract all frames contained in a block. related-to-bug: 3331623 commit 38f1f39381a01659577461b3d35bd22db45ba317 Author: Andreas Huber <andih@google.com> Date: Mon Nov 15 15:10:34 2010 -0800 Proper support for variable NALsize lengths of AVC content in .mkv files. related-to-bug: 3197442 Change-Id: I4b404f3c3d0a2a2fa336b9edff75eb25ffc66a2f
-
- Jan 11, 2011
-
-
Kenny Root authored
Previously any updated system apps would not be able to have a greater than 0 priority on an activity intent filter. Moving the priority check later in the package scanning allows it to apply to updated system packages as well. Bug: 2572398 Change-Id: I9fdf7906809518b28b49ffec31afec1442d85d3c
-
Andreas Huber authored
-
Kenny Root authored
In order not to clobber the internal system's settings, we duplicate it before putting it back into mPackages, but the PackageSetting has a couple extra pieces of information that weren't being copied. Bug: 3339279 Change-Id: I047087ac3477c7b2d5ce23e5e0a5e8c094bd0d3f
-
Andreas Huber authored
related-to-bug: 3340186 Squashed commit of the following: commit b61c36b7228aec9f5360883b1e1c1e0530488974 Author: Andreas Huber <andih@google.com> Date: Wed Oct 27 13:59:59 2010 -0700 Better support for MP4A-LATM RTP disassembly. This used to fail if mNumSubFrames > 1 and the sub frames did not align with RTP packet boundaries. commit b10f322c07e5bebcaf032e8624cb4a5d733dfc15 Author: Andreas Huber <andih@google.com> Date: Mon Oct 25 09:40:52 2010 -0700 We don't have access to the md5 implementation on the simulator, let's disable digest authentication in rtsp for simulator targets. commit 0aa83cf9e4637adf9501708fcdf7d0d6d4dc4fe1 Author: Andreas Huber <andih@google.com> Date: Wed Oct 20 15:00:34 2010 -0700 Support for BASIC and DIGEST authentication schemes in RTSP. Support for malformed packet descriptions that end lines in LF only, instead of CRLF. related-to-bug: 3084183 Change-Id: I6e512cb73cc8d5624a83f7154aa5699f7fef7534
-
Chung-yih Wang authored
-
- Jan 10, 2011
-
-
Nick Pelly authored
Change-Id: I151ee987fdae73fdf8f339dbb64f8fd27a0436b6
-
Martijn Coenen authored
The method is needed since makeReadOnly() only works on T1T/T2T. Also removed makeLowlevelReadonly(), since NFC forum does not allow setting the CC and the lock bits separately. Change-Id: I8e6d7c065b1f017ef07d878c41df05e1a8193f5a
-
James Dong authored
Merge "Avoid deadlock in OMX::freeNode by making sure OMXCodecObserver does not hold the last reference of OMXCodec object - do not merge" into gingerbread
-
Nick Pelly authored
-
Nick Pelly authored
Merge "Change Tag.getTechnology(NfcAdapter, int) to NfcAdapter.getTechnology(Tag, int)" into gingerbread
-
James Dong authored
Avoid deadlock in OMX::freeNode by making sure OMXCodecObserver does not hold the last reference of OMXCodec object - do not merge cherry-picked from: I4c79b66a900c527e3ae6a833f76d5da1b75c5a89 bug - 3336424 Change-Id: I2d8ecb79a5422342988c195c012c9e6327ac457a
-
Nick Pelly authored
attemptDeadServiceRecovery() is a hack to recover from NfcService dying. It should be a rare event, and is only needed in NfcAdapter which is a long-lived object. TagTechnology objects are transient, it is acceptable for them to go stale when NFC service dies. Lets not complicate the code with recovery for a rare event. Change-Id: I101350e920b075c680eb4f250683f0a2bb878553
-
Nick Pelly authored
The later feels less clumsy. Change-Id: I50f29aef23d2993dcfd25f4c4f2cb0d77bdc0610
-
- Jan 09, 2011
-
-
Dianne Hackborn authored
-
Kenny Root authored
Add getPackageObbPaths() and setPackageObbPaths() to the public API. Bug: 3214719 Change-Id: Icb9f2f92f8c59bb3d31317f609854e81abbd1449
-
Chris Tate authored
Some restore passes bring an ancestral dataset to the application, but others instead act to bring an app back into sync with its own most- recently-saved data. In the latter case the state file written by the app after the restore is a correct basis for generating future backup deltas, but in the former case it is not. The app should not be required to distinguish between these cases; the framework has all the information necessary to handle the saved state correctly following any flavor of restore operation. This patch makes the Backup Manager properly cause a full backup pass following an ancestral-dataset restore. After a current-set restore the saved state file is an accurate description for purposes of continued backup operations, so is preserved. (Cherrypick from master to gingerbread) Change-Id: I4bc4e8782a168ecc0795107a340bdbb35060730e
-
Chris Tate authored
The public API is not supposed to require the BACKUP permission in order for an application to restore its own last-known-good backup data. However, as currently implemented, BackupManager.requestRestore() [the public API in question] depends on private Backup Manager methods that *do* enforce that permission. The net result is that the method cannot be successfully used by third party applications: it will throw an exception if attempted. This CL restructures the permission checking involved. First, the underlying beginRestoreSession() operation can now be passed a 'null' transport name; if this is done, then the restore session is begun on whatever the currently-active transport is. Looking up the name of the active transport is one of the permission-guarded actions that was required with the initial implementation. Second, a package name can now be passed to beginRestoreSession(). If this is done, then the restore session can only be used to perform a single-package restore of that one application. The BACKUP permission is not required if the caller is tying the restore to its own package name. In combination, these changes permit BackupManager.requestRestore() to function without the calling app needing to hold any special permission. The no-permission case is intentionally quite narrow: the caller must hold the permission unless they both (a) pass 'null' for the transport name, thereby accepting whatever the currently active transport is, and (b) pass their own package name to restrict the restore session only to their own app. External bug http://code.google.com/p/android/issues/detail?id=10094 Internal bug 3197202 (Cherrypick from master to gingerbread) Change-Id: Ie20b0bd2420345ce6eda178f854680b558f6372a
-
lge-aosp authored
Change-Id: I625e45923a7fd9f4ac8eb434ed07d452f8e1e0b6
-
Dianne Hackborn authored
...an app is disabled! Ouch. Change-Id: I5788c5f8edfe2a0d6f4f0f3359e1742f8ed8d98e
-
Dianne Hackborn authored
-
- Jan 07, 2011
-
-
Scott Main authored
Change-Id: Id5d38a6d97323e082535e433ab64e89e8bd3d021
-
Scott Main authored
docs: update dashboard Change-Id: I2b91243b28cc831348d29fcf11e23f5018838396
-
Scott Main authored
Change-Id: I11eecd07ec8d49da4d2431f7e164555b84e8d8fc
-
Yu Shan Emily Lau authored
-
Chung-yih Wang authored
bug:3326867 Change-Id: I2a62c75fb3f5e9c6ec2e00b29396e93b0c183d9b
-
Gilles Debunne authored
-
Gilles Debunne authored
-
Marco Nelissen authored
It's not actually inserted into the database, but the media provider uses it for disambiguating albums. b/3311831 Change-Id: Idb630866e960338ce2795dcc128cafaf6c9c27f2
-