summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* DO NOT MERGE: Remove Device Bluez-Dbus interface watch.Jaikumar Ganesh2010-09-091-1/+1
| | | | Change-Id: I6bc04efd1292784bae5fc4786949d9da79e4aa22
* Fix to get A2DP to connect after unpairingHenrik Backlund2010-09-091-1/+7
| | | | | | | | | | | | | In this fix, A2DP profile will be connected when pairing with a previously paired headset. The reason for this error was that the connection of the A2DP profile was sent before the callback onCreatePairedDeviceResult was receied in BluetoothEventLoop.java. By not going to the state BOND_BONDED until after this callback has been received, the problem is fixed. However the use case is different if the pairing is initiated by the remote device. In these cases state BOND_BONDED will be set when onDevicePropertyChanged instead. Change-Id: I5dedca87d0a6872705ff3a933a99cce6eb37618a
* Update current.xml for touch filtering feature.Jeff Brown2010-09-081-60/+38
| | | | Change-Id: I4a6f971ad84e13ed8f81e7b00c727e94eb2d8765
* Add support for secure views.Jeff Brown2010-09-0821-73/+467
| | | | | | | | | | | | Added the MotionEvent.FLAG_WINDOW_IS_OBSCURED flag which is set by the input manager whenever another visible window is partly or wholly obscured the target of a touch event so that applications can filter touches accordingly. Added a "filterTouchesWhenObscured" attribute to View which can be used to enable filtering of touches when the view's window is obscured. Change-Id: I936d9c85013fd2d77fb296a600528d30a29027d2
* Merge "Adds a time zone parameter to formatDateRange" into gingerbreadErik2010-09-082-9/+77
|\
| * Adds a time zone parameter to formatDateRangeErik2010-09-082-9/+77
| | | | | | | | | | | | | | | | | | | | For a critical feature request in Calendar we need the ability to format a date range in a time zone other than the local tz. This adds a new method signature to formatDateRange to allow for a tz to be specified and maintains the old behavior if the parameter is not used. Also deprecates the FORMAT_UTC flag. Change-Id: I16b3e939760ec86c954b51a318d01b7bbf86acc9
* | Text Selection: smart word detection. DO NOT MERGE.Gilles Debunne2010-09-081-11/+87
|/ | | | | | | | | | | | Selecting between words selects the spaces instead of the closest word, facilitating paste insertion vs word replacement. Pasting adds/removes space before and after if needed so that pasted text is not appended to existing text. Cut and copy not available when selection is empty. Change-Id: I331413bdef341a4eceffe76fa2957f388d540b6e
* Merge "Remove dead code: NIOBuffer." into gingerbreadElliott Hughes2010-09-084-174/+0
|\
| * Remove dead code: NIOBuffer.Elliott Hughes2010-09-074-174/+0
| | | | | | | | | | | | | | | | Working on speeding up our NIO implementation, I came across this suboptimal code. Happily, it turns out to be unused. Bug: 2935622 Change-Id: I07ae6e573d63e439f496d55af215b34598d8258a
* | Merge "Fix the dialing from contact for internet address." into gingerbreadChung-yih Wang2010-09-081-1/+1
|\ \
| * | Fix the dialing from contact for internet address.Chung-yih Wang2010-09-082-1/+2
| | | | | | | | | | | | | | | | | | the bug is http://b/issue?id=2982290 +Log outbound proxy address if exists for debugging.
* | | Log outbound proxy address if exists for debugging.Chung-yih Wang2010-09-081-0/+1
|/ / | | | | | | Change-Id: I2d2dffe3536e674b6956164c400e397c2f00f212
* | Merge "Adding Download Manager Integration, stress, and hosts-based tests." ↵Neal Nguyen2010-09-0715-6/+3052
|\ \ | | | | | | | | | into gingerbread
| * | Adding Download Manager Integration, stress, and hosts-based tests.Neal Nguyen2010-09-0715-6/+3052
| | | | | | | | | | | | Change-Id: If75021380f4aee9c650f6e34093779e85cc4e5d8
* | | Merge "Revert "Rename LargeBitmap to BitmapRegionDecoder for having a better ↵Wei-Ta Chen2010-09-0710-693/+347
|\ \ \ | | | | | | | | | | | | API."" into gingerbread
| * | | Revert "Rename LargeBitmap to BitmapRegionDecoder for having a better API."Wei-Ta Chen2010-09-0810-693/+347
| | | | | | | | | | | | | | | | This reverts commit 50ba3d2c09a9131f3578d271adf2bc8258ca1742.
* | | | update-api step missing from 64963.Gilles Debunne2010-09-071-10/+0
| | | | | | | | | | | | | | | | Change-Id: I7e91aa9830c19bbb4115ae3a236345b220dc9eb0
* | | | Merge "Fix a race between requesting/loading/writing SharedPreferences." ↵Brad Fitzpatrick2010-09-071-41/+63
|\ \ \ \ | |/ / / |/| | | | | | | into gingerbread
| * | | Fix a race between requesting/loading/writing SharedPreferences.Brad Fitzpatrick2010-09-071-41/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Part of the race existed before, but it was made much worse with apply(). Corresponding CTS test is Icc6e638a6a Change-Id: Ic5cfa467fb7f1859cb7b44d417412219c0621965
* | | | Merge "SipPhone: switch to its own phone type PHONE_TYPE_SIP." into gingerbreadHung-ying Tyan2010-09-071-2/+1
|\ \ \ \
| * | | | SipPhone: switch to its own phone type PHONE_TYPE_SIP.Hung-ying Tyan2010-09-071-2/+1
| | | | | | | | | | | | | | | | | | | | Change-Id: Ie33cfe92e59665864dbebbb38895e8e85f6db2e6
* | | | | Revert "Free created FileMap when uncompressing files"Kenny Root2010-09-071-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 52b8235238fb4d8cf141020cc1ae33880929dc3f. munmap() on a region that overlaps something else (e.g, the ZIP Central Directory in this case) unmaps those other regions as well making the ZipFileRO class unhappy. Revert this for now until we can have FileMap deal with this craziness.
* | | | | Merge "Hide mCursorController field in ArrowKeyMovementMethod." into gingerbreadGilles Debunne2010-09-071-2/+12
|\ \ \ \ \
| * | | | | Hide mCursorController field in ArrowKeyMovementMethod.Gilles Debunne2010-09-071-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Made the field private and added a description of its use. Bug http://b/issue?id=2975284 Change-Id: Id8acf756218915cb2ae756789b62cfe7201a5c67
* | | | | | Made text selection work in ExtractEditText. DO NOT MERGEGilles Debunne2010-09-073-102/+119
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change insertion point on tap is no longer handled by the CommitSelectionReceiver (as it is not called by ExtractEditText). Fixed a bug to handle drawing positions when the internal TextView scroller is used. Change-Id: I87398c7109c5527d21dee6abbdb925848244d594
* | | | | Merge "Rename SETSUSPEND to SETSUSPENDOPT DO NOT MERGE" into gingerbreadDmitry Shmidt2010-09-071-1/+1
|\ \ \ \ \
| * | | | | Rename SETSUSPEND to SETSUSPENDOPT DO NOT MERGEIrfan Sheriff2010-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 2973101 Change-Id: I874381eeb12bb796382717285750d700e9b181ce
* | | | | | Merge "Rename LargeBitmap to BitmapRegionDecoder for having a better API." ↵Wei-Ta Chen2010-09-0710-347/+693
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | into gingerbread
| * | | | | | Rename LargeBitmap to BitmapRegionDecoder for having a better API.Wei-Ta Chen2010-09-0710-347/+693
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move AssetStreamAdaptor, AutoFDSeek and nullObjectReturn to Utils.h because BitmapFactory.cpp and BitmapRegionDecoder.cpp both need to use these utility functions. Change-Id: I3e60c7fe4abd0289e1384e69a08fd20fe6fb0e10
* | | | | | Merge "Modify native ALooper to take an explicit ident." into gingerbreadDianne Hackborn2010-09-0711-30/+48
|\ \ \ \ \ \
| * | | | | | Modify native ALooper to take an explicit ident.Dianne Hackborn2010-09-0711-30/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The ALooper API now uses an explicit "identifier" for the integer that is returned rather than implicitly using the fd. This allows the APIs that had the fd to be a little more sane. Change-Id: I8507f535ad484c0bdc4a1bd016d87bb09acd7ff0
* | | | | | | Merge "Allow installd to handle large partitions" into gingerbreadKenny Root2010-09-073-21/+27
|\ \ \ \ \ \ \
| * | | | | | | Allow installd to handle large partitionsKenny Root2010-09-073-21/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use int64_t because we're RPCing over to Java which uses a Long to represent the filesystem space. Change-Id: I842b2cf9f2ff8f980ff5895c1c8eb9ebefa1ea31
* | | | | | | | Merge "Be brief." into gingerbreadElliott Hughes2010-09-071-182/+41
|\ \ \ \ \ \ \ \
| * | | | | | | | Be brief.Elliott Hughes2010-07-281-182/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Excise much of the non-Android blurb so we don't distract from our primary messages of "allocate less stuff" and "do less work". Change-Id: Ifc2c12bc953dbfbaf4078d4f7b77aa75d1d942d7
* | | | | | | | | Merge "Expose the TextAppearance.StatusBar.* styles." into gingerbreadJoe Onorato2010-09-072-44/+50
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Expose the TextAppearance.StatusBar.* styles.Joe Onorato2010-09-072-44/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I6e1e68ab26495290d480f4fb75facedd6cd62908
* | | | | | | | | | Merge "Don't fall through from TOKEN_EMAIL_LOOKUP" into gingerbreadMakoto Onuki2010-09-071-0/+3
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / |/| | | | | | | | |
| * | | | | | | | | Don't fall through from TOKEN_EMAIL_LOOKUPMakoto Onuki2010-09-071-0/+3
| | |_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ifc08f26ba93496cfa53cd83c7df0e986ea4ece4b
* | | | | | | | | Merge "Fixes to battery stats debug output." into gingerbreadDianne Hackborn2010-09-073-84/+158
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / |/| | | | | | | |
| * | | | | | | | Fixes to battery stats debug output.Dianne Hackborn2010-09-073-84/+158
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | Change-Id: I32e7cad9633b8c517a74573069e426d9f835a83d
* | | | | | | | Hopefully fix the build.Dianne Hackborn2010-09-071-0/+2
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | Change-Id: Id8cd92c0895c9939e1386ef488bd1309a3be3568
* | | | | | | Merge "Add system property to turn off scheduling groups." into gingerbreadDianne Hackborn2010-09-072-10/+30
|\ \ \ \ \ \ \
| * | | | | | | Add system property to turn off scheduling groups.Dianne Hackborn2010-09-072-10/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Do this: adb shell setprop debug.sys.noschedgroups 1 Change-Id: I6e06a74205fd45ee1526ce71fe33944465d39984
* | | | | | | | Merge "When notifications are updated, don't re-show the ticker unless the ↵Joe Onorato2010-09-071-1/+6
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | text has changed." into gingerbread
| * | | | | | | | When notifications are updated, don't re-show the ticker unless the text has ↵Joe Onorato2010-09-071-1/+6
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changed. Bug: 2963867 Change-Id: I24b5bc958fb6eb0d753c88178a385232c75ea438
* | | | | | | | Merge "Make SharedPreferencesBackupHelper wait for async SharedPreference ↵Brad Fitzpatrick2010-09-071-2/+6
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | writes" into gingerbread
| * | | | | | | | Make SharedPreferencesBackupHelper wait for async SharedPreference writesBrad Fitzpatrick2010-09-061-2/+6
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes a potential race with backups. Change-Id: I73492c0384091cedd7802109257312387fcd43f9
* | | | | | | | Merge "Preserve old translations for changed strings. DO NOT MERGE" into ↵Eric Fischer2010-09-0720-40/+20
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | | | | | | | | | | gingerbread
| * | | | | | | Preserve old translations for changed strings. DO NOT MERGEEric Fischer2010-09-0320-40/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I64023ad34cba22133fd355ed4d885b3f831c5aa1