| Commit message (Collapse) | Author | Age | Files | Lines |
| |\
| |
| |
| |
| |
| |
| | |
Merge commit 'b26ab4635555dee35b620ffef2aa53cf242b4b02'
* commit 'b26ab4635555dee35b620ffef2aa53cf242b4b02':
add boundary patch
|
| | | |
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit 'fb324e706e487738b3edbaca67bdf459fafcd4ea'
* commit 'fb324e706e487738b3edbaca67bdf459fafcd4ea':
Patching in hidden API to allow app managed preview frame buffers.
|
| | |\
| | |
| | |
| | |
| | |
| | |
| | | |
Merge commit '78a50aa1db6572ba7d9f9d91c6eb16f993c09f40' into eclair-mr2
* commit '78a50aa1db6572ba7d9f9d91c6eb16f993c09f40':
Patching in hidden API to allow app managed preview frame buffers.
|
| | | |\
| | | |
| | | |
| | | |
| | | | |
* changes:
Patching in hidden API to allow app managed preview frame buffers.
|
| | | | |
| | | |
| | | |
| | | | |
Commit-Id: If3c30fc932697afa966cc97b17749e9996de92ee
|
| |\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
Merge commit 'a904672996c60c4ec50439a8d2be04fd9bd6444c'
* commit 'a904672996c60c4ec50439a8d2be04fd9bd6444c':
Add size checks for glBufferData and glBufferSubData
|
| | |\ \ \
| | |/ /
| | | |
| | | |
| | | |
| | | |
| | | | |
Merge commit '8f89a1a360465e08e81ceca3cb3042606a98668b' into eclair-mr2
* commit '8f89a1a360465e08e81ceca3cb3042606a98668b':
Add size checks for glBufferData and glBufferSubData
|
| | | |/
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Without the size checks it's possible for calls to glBufferData
and glBufferSubData to read off the end of the Buffer object's
data, which can cause page faults.
Fix end-of-line characters for the "spec" files. (That's why
every line of these files is changed.)
Enhance our code emitter to properly handle bounds checks for
possibly-null pointers.
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
Merge commit 'aeed585d19f4db006ca765eed37d629831e4b563'
* commit 'aeed585d19f4db006ca765eed37d629831e4b563':
Revert "Remove STOPSHIP comment."
|
| | |\ \
| | |/
| | |
| | |
| | |
| | |
| | | |
Merge commit '53f33d84776a0bad668e361365a7049b16f8a929' into eclair-mr2
* commit '53f33d84776a0bad668e361365a7049b16f8a929':
Revert "Remove STOPSHIP comment."
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
This reverts commit 3d0726b4d8a30e57852b70f1dcf4d8d20508cd1e
Change-Id: Ie1ce5d09cc0b799ef0799f30eedc95f0ca5d3fad
DrNo: jerrryw
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
Merge commit 'b355695a093df11387828b3c588fd05c04b8907b'
* commit 'b355695a093df11387828b3c588fd05c04b8907b':
Remove STOPSHIP comment.
|
| | |\ \
| | |/
| | |
| | |
| | |
| | |
| | | |
Merge commit 'a04ca9b489ce0e92fa156f8ce26459a463b3e085' into eclair-mr2
* commit 'a04ca9b489ce0e92fa156f8ce26459a463b3e085':
Remove STOPSHIP comment.
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
Change-Id: I2492bffe57bded65fdbef5cf98e22cef3937e537
DrNo: eastham
Bug: 2089423
Joke: Why don't anteaters get sick? Because they're full of anty-bodies!
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
Merge commit '360f21cdfccb5039cabb3c519b6b9b598aec1dca'
* commit '360f21cdfccb5039cabb3c519b6b9b598aec1dca':
Wifi: Fix runtime crash in when scan results contain KSC 5601 SSID
|
| | |/
| |
| |
| |
| |
| |
| | |
bug b/2178462
Change-Id: I409d9b4a163299c3383ec092cd2368a9d24236cb
Signed-off-by: Mike Lockwood <lockwood@android.com>
|
| |\ \
| |/
| |
| |
| |
| |
| |
| |
| | |
ssh://android-git.corp.google.com:29418/platform/frameworks/base into eclair-mr2-plus-aosp
Merge commit '4c220bd0f32b93314c4c1bff328bd815265ef117'
* commit '4c220bd0f32b93314c4c1bff328bd815265ef117':
Encourage developers to connect RFCOMM by UUID instead of Channel.
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Hide createRfcommSocket(int channel)
Add createRfcommSocketWithServiceRecord(UUID uuid)
Rename listenUsingRfcomm(String,UUID) -> listenUsingRfcommWithServiceRecord(..)
Now we have a complete API for developers to make peer-peer RFCOMM connections
with hard-coding the limited (30) RFCOMM channels, instead using SDP lookup
of an UUID.
This commit addresses two serious bugs:
- Do not throw IOException on accepting an incoming RFCOMM connection with
BluetoothSocket. This was a regression from commit 24bb9b8af4ff6915
- Workaround failure of bluez to update SDP cache when channel changes by
trying to use the same RFCOMM channel on the server every time, instead
of picking server channels randomly. This is a pretty ugly workaround,
and we are still trying to fix the caching issue - but with this
workaround we are at least shippable and apps will work at least until
they start colliding on the 30 RFCOMM channels.
DrNo: eastham
Bug: 2158900
Joke: What did the digital watch say to his mom? "Look mom no hands."
Change-Id: Ia4879943b83afac06b6f1a3f2391cf1628afce7d
|
| |\ \
| |/
| |
| |
| |
| |
| |
| |
| | |
ssh://android-git.corp.google.com:29418/platform/frameworks/base into eclair-mr2-plus-aosp
Merge commit '254d7ecd06aabc54fb1d2b9afd53b6e78045c6a9'
* commit '254d7ecd06aabc54fb1d2b9afd53b6e78045c6a9':
add (hidden) setHasAlpha() to allow clients like the view's cache to hint that a bitmap is opaque.
|
| | |
| |
| |
| |
| |
| | |
that a bitmap is opaque.
Knowing that a 32bit bitmap is opaque is a performance boost for some blits.
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '3616d15451734bd3b563d73f9c2f25c19d7df75c'
* commit '3616d15451734bd3b563d73f9c2f25c19d7df75c':
Add zoom functions and sendCommand.
|
| | |
| |
| |
| | |
b2060030
|
| |\ \
| |/
| |
| |
| |
| |
| |
| |
| | |
dynamic RFCOMM channel and SDP record.
Merge commit 'a1cb6a64c6710d46cc8673bc17db3bdb5c7bbc09'
* commit 'a1cb6a64c6710d46cc8673bc17db3bdb5c7bbc09':
Provide an API for apps to use a dynamic RFCOMM channel and SDP record.
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Hide listenUsingRfcommOn(int channel)
Add listenUsingRfcomm(String name, ParcelUuid uuid)
The new API automatically finds a free RFCOMM channel and registers an SDP
record with the given uuid and name. The SDP record is automatically
removed when the socket is closed, or if the application dies.
Apps are prevented from registering SDP records with the uuid of system
Bluetooth profiles, such as A2DP, HFP and OPP.
Apps are prevented from removing SDP records that they did not create. This is
tracked by pid.
TODO: Provide an API for the connecting app to look up an SDP record.
Bug: 2158900
DrNo: eastham
Joke: "What did the dog say to the tree? bark."
Change-Id: Ia92f51c34615a7270a403255ad2b8faa98c4a3f5
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit 'f2b80d8ccc9b8d775eb0171bd8f170f251a7314e'
* commit 'f2b80d8ccc9b8d775eb0171bd8f170f251a7314e':
Fix rfcomm socket connect return code.
|
| | |
| |
| |
| |
| |
| |
| |
| | |
The phone would say connected even when powered off.
Bug id: 2161890
DrNo: Hiroshi
Change-Id: I5dbd19941a80e86c7462670fb844a29cf4eb0908
|
| |\ \
| | |
| | |
| | |
| | | |
* changes:
Remove unused #includes.
|
| | | |
| | |
| | |
| | |
| | |
| | | |
(Part of removing adb networking support.)
Bug: 1122968
|
| |\ \ \
| | |/
| |/|
| | |
| | |
| | |
| | | |
Merge commit 'eff77e9a92c40d501f42b1774752b07d4e5141a7'
* commit 'eff77e9a92c40d501f42b1774752b07d4e5141a7':
Try to reconnect twice when the rfcomm error code is Connection Refused.
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
This happens when the the remote headset is in a bad state or is
not accepting connections. Try twice before giving up.
Change-Id: I55e15bad6b72904b8e4ccbca89e17e9bd3ddb61e
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
Merge commit 'ba61cff482a048131937d82f0d9652c799383314'
* commit 'ba61cff482a048131937d82f0d9652c799383314':
Bluetooth A2DP suspend/resume functionality
|
| | | |
| | |
| | |
| | | |
Change-Id: I8366852fa9b6ff9dacf18db00ea1c2be0c00ff34
|
| |\ \ \
| |/ /
| | /
| |/
|/|
| |
| | |
Merge commit '0b03fa8b6f1bda3dd3fa7544dd16f88441ea6fad'
* commit '0b03fa8b6f1bda3dd3fa7544dd16f88441ea6fad':
Hack to fix issue #2125365: Sports Trivia compatability with Eclair
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
Adds a mechanism to tell Paint the scaling factor its target
canvas will have, for it to compute font metrics based on the
correct font size. Only TextView uses this, but that is enough
for the large majority of apps.
Change-Id: I6cacaa0dd26d40ee3ad959bed0028678d6e9016e
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '3ecb11e099e8c0c84381c38775103cc7d42234d6'
* commit '3ecb11e099e8c0c84381c38775103cc7d42234d6':
Bounds check read and write path in native code.
|
| | |
| |
| |
| |
| |
| | |
Already checked in Java, but requested by security review.
Change-Id: I5314dbc32546278b977236a154fba03f38610b1a
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit 'b2209a35af672c086c28fbcf3a5101bbb10eb523'
* commit 'b2209a35af672c086c28fbcf3a5101bbb10eb523':
Use LM_SECURE when auth && encrypt.
|
| | |
| |
| |
| |
| |
| | |
LM_SECURE enforces man in the middle (MITM) protection.
Change-Id: Ia800bb657b429f8872d72072f7c9450a74028af0
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '5e367bfe0726d7d7108279721179dcd6de326ee5'
* commit '5e367bfe0726d7d7108279721179dcd6de326ee5':
Fix 2101425: Camera crashes spontaneously in preview.
|
| | |\
| | |
| | |
| | |
| | | |
* changes:
Fix 2101425: Camera crashes spontaneously in preview.
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The problem is we missed an "obj" parameter while calling
postEventFromNative (which put it in a field of a Message object),
so a garbage value on stack is used.
When the GC tries to follow that "obj" field, expecting to find
another object, it crashes.
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | | |
Merge commit 'e493bf7985ad4cac7bafcfa788eb281b694967aa'
* commit 'e493bf7985ad4cac7bafcfa788eb281b694967aa':
use new setDither on ImageRef to retain that setting for purgeable images
|
| | |\ \
| | |/
| |/|
| | |
| | | |
* changes:
use new setDither on ImageRef to retain that setting for purgeable images
|
| | | | |
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
graphics do not scale
Merge commit '5ddbc0d59d8143d50a19950624c38fdb8102156b'
* commit '5ddbc0d59d8143d50a19950624c38fdb8102156b':
Fix issue #2125720 Weather Forecast Widget - graphics do not scale
|
| | |/
| |
| |
| |
| |
| | |
I forgot to add the new density field to the Bitmaps' parcelable data.
Change-Id: I77cf3e93e356297e0caed6fc71b62b5cd8f79124
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit 'cd3a02425179ea881f3534d687c143a2ce683684'
* commit 'cd3a02425179ea881f3534d687c143a2ce683684':
Unhide Camera lock and unlock API.
|
| | | |
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '1781edd28639b23443f9d319d1e5cea41acab8e9'
* commit '1781edd28639b23443f9d319d1e5cea41acab8e9':
Make removeBond() call async.
|