Jack Yu
3cfa510779
Merge "Expose getters for RSRP, RSRQ, RSSNR, and CQI in CellSignalStrengthLte. Regenerate api accordingly. BUG: 32609966 Test: CTS Testing new API"
...
am: 4469e48d5c
Change-Id: Id92b8eaeec12885af3748d1e839da1a5560e2619
2016-11-11 19:51:23 +00:00
Jack Yu
4469e48d5c
Merge "Expose getters for RSRP, RSRQ, RSSNR, and CQI in CellSignalStrengthLte. Regenerate api accordingly. BUG: 32609966 Test: CTS Testing new API"
2016-11-11 19:41:46 +00:00
Ta-wei Yen
969a6eb2b8
Merge "Add createForPhoneAccountHandle() and getServicetate() Respect TelephonyManager's subId when listening to phone state"
...
am: 0a3b6b70dd
Change-Id: I512e68bccda115ad7c58ec1f1fbfbb2c69c86578
2016-11-10 22:02:17 +00:00
Ta-wei Yen
05f9112d15
Add createForPhoneAccountHandle() and getServicetate()
...
Respect TelephonyManager's subId when listening to phone state
TelecomManager perfers to use a PhoneAccountHandle to represent a
account but TelephonyManager prefers subscription IDs.
This CL added createForPhoneAccountHandle() in TelephonyManager so
telephony values can be queried from it.
Currently the ServiceState can be retrieved through registering a
PhoneStatelistener, but it is a callback which the handler cannot be
specified.
getServiceState() is added to allow the ServiceState to be polled.
While TelphonyManager has createForSubscriptionId(), listen() does not
respect the subId on the manager created from it, and will always use
the hidden subId on the listener, which is always the default subId
through public API.
After this CL, the default subId on the listener will null.
TelephonyManager use its' own subId if the listener does not set the
subId to something else.
Bug: 32637799
Bug: 32414216
Test: cts-tradefed run cts-dev --module CtsTelephonyTestCases
Change-Id: I9995e4da1573cf1f6b6e4acf2daf7a538fb60d5f
2016-11-10 12:11:56 -08:00
Kevin Su
211c1c2ca8
Expose getters for RSRP, RSRQ, RSSNR, and CQI in CellSignalStrengthLte.
...
Regenerate api accordingly.
BUG: 32609966
Test: CTS Testing new API
Change-Id: I2603fc0001f31ff23f02f4fdf2a72b33f2750a4c
2016-11-09 13:27:20 -08:00
Przemyslaw Szczepaniak
29d6af7fe7
Merge "Track libcore change 16fa17012b56e990ced91cd023dee33f96deedf9"
...
am: ec3e884e88
Change-Id: Ibf708f685bf8cb8e5f88423b48ed05986c223651
2016-10-28 12:05:56 +00:00
Przemyslaw Szczepaniak
5753515d3d
Track libcore change 16fa17012b56e990ced91cd023dee33f96deedf9
...
Test: cts run of CtsLibcoreTestCases
Bug: 29935305
Change-Id: I01465dd11d8ef13d6d47f2dec73100af988edfa1
2016-10-26 17:57:33 +01:00
Nick Kralevich
34547a8dc2
Delete "Show CPU usage" am: fc4a5c2d85
...
am: f0c0188a8a
Change-Id: If33e6687d3ec83904ab6ddbeb008c7b9c8130e7a
2016-10-11 18:15:23 +00:00
Nick Kralevich
fc4a5c2d85
Delete "Show CPU usage"
...
This functionality hasn't worked since Lollipop.
Bug: 21388590
Change-Id: Ie4388d88f6e06f3e2d2e84e9c4515b3ebc6a0ea5
2016-10-11 09:01:38 -07:00
Tobias Thierer
041bb95132
Merge "API changes for Locale to OpenJDK8u60 (part 1/2)" am: 01614e4e7f am: abc432fd09
...
am: 19e46f91fa
Change-Id: I55ae235e9f1aa0e1442549408206fb9dcc0b6d91
2016-10-03 14:05:33 +00:00
Tobias Thierer
01614e4e7f
Merge "API changes for Locale to OpenJDK8u60 (part 1/2)"
2016-10-03 13:41:48 +00:00
Przemyslaw Szczepaniak
0053ff7e01
Merge "Add new StrictMode thread policy - DETECT_UNBUFFERED_IO" am: c60c70dcf9 am: 8297d74de5
...
am: 61eb1615a6
Change-Id: I00de82b6e9d12b7f6bd602515c21f6922d8d1983
2016-09-30 09:01:52 +00:00
Przemyslaw Szczepaniak
c60c70dcf9
Merge "Add new StrictMode thread policy - DETECT_UNBUFFERED_IO"
2016-09-30 08:43:17 +00:00
Neil Fuller
ff2f0dae1b
Merge "Fix AnnotatedElement.getDeclaredAnnotation() generic signature" am: bd32321b4f am: 125a273e8a
...
am: cc1cf38749
Change-Id: I9bd88a090617a9570197e7e7416cbfe2f86444d1
2016-09-29 23:45:04 +00:00
Neil Fuller
9a33f3408e
Merge "Unhide constants related to type annotations" am: 8ac0f45384 am: 505b90ad5c
...
am: de1db61758
Change-Id: I435010db7eda813b36221090cc1e10a27e79480e
2016-09-29 23:43:45 +00:00
Shubham Ajmera
c95b2c85f3
Add new StrictMode thread policy - DETECT_UNBUFFERED_IO
...
This will enable the developers to check if they could replace an unbuffered
I/O operation with a corresponding buffered I/O operation.
The policy can be set as follow:
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
.detectUnbufferedIO().build());
Test: vogar BlockGuardTest
Bug: 3018772
Change-Id: Ib804a8e9980ae40abfd216f8b87c250fd413bd5c
(cherry picked from commit 9b7184a8fd )w
2016-09-29 16:36:12 +01:00
Neil Fuller
bd32321b4f
Merge "Fix AnnotatedElement.getDeclaredAnnotation() generic signature"
2016-09-29 13:08:30 +00:00
Neil Fuller
4c1d37b2a0
Unhide constants related to type annotations
...
Type annotations are supported in the compiler, but not the
Android runtime. Unhiding these is therefore still
reasonable.
Bug: 30391692
Test: make droid
Change-Id: I39db1099918fe3bd6321f2d755a988cb73f657c6
2016-09-28 16:57:59 +01:00
Neil Fuller
0543f71b82
Fix AnnotatedElement.getDeclaredAnnotation() generic signature
...
To match upstream OpenJDK 8.
Bug: 31108290
Test: make droid
Change-Id: Icdf54eb65b8d89ee474ec51eab552ceb3fc6d8ec
2016-09-28 16:56:49 +01:00
Neil Fuller
b36fad8a5f
Rerun of update-api with no changes
...
Picks up a small change to Parameter.
Looks like it was caused by a mid-air collision between
commit 3ead539c01 , which
introduced Parameter, and commit
b4fcc6136e which
introduced improvements to generics in the .txt file.
Test: make droid
Change-Id: If1c11e9303d17854ab1e5559c9a412cc6de54685
2016-09-28 16:51:03 +01:00
Tobias Thierer
e44534ddc8
Merge "API: Update ResourceBundle to OpenJDK8u60" am: 9d16a441a6 am: 29319829fb
...
am: 49d903dac4
Change-Id: Iaeab7c7c8d24b68d2be75ddd3f6055ba78be906d
2016-09-27 14:22:08 +00:00
Tobias Thierer
49d903dac4
Merge "API: Update ResourceBundle to OpenJDK8u60" am: 9d16a441a6
...
am: 29319829fb
Change-Id: I02fba9b316fed6ee248c69f97570da8d1f1ac531
2016-09-27 14:16:28 +00:00
Tobias Thierer
29319829fb
Merge "API: Update ResourceBundle to OpenJDK8u60"
...
am: 9d16a441a6
Change-Id: I90e0bb992f002718c5f509c226fdc0d57e651aff
2016-09-27 14:11:45 +00:00
Tobias Thierer
9d16a441a6
Merge "API: Update ResourceBundle to OpenJDK8u60"
2016-09-27 14:03:45 +00:00
Tobias Thierer
45716d6539
API changes for Locale to OpenJDK8u60 (part 1/2)
...
Bug: 29935305
Test: make update-api
Change-Id: I11f22dba5c795f7016c6dac950166ab749a7423d
2016-09-26 22:16:51 +01:00
Michael Wright
091ffac018
DO NOT MERGE Actually track generics in API definition.
...
Bug: 24265043
Test: make
Change-Id: Id5544c0f0cf32655f9c00a5cc3eca1cabb70170f
2016-09-26 19:38:14 +01:00
TreeHugger Robot
6f1b29ef67
Merge "DO NOT MERGE Track generics in API definition." into nyc-mr1-dev
2016-09-26 15:29:17 +00:00
Treehugger Robot
fe9357f6e7
Merge changes from topic 'aosp-generics-api'
...
* changes:
DO NOT MERGE Track generics in API definition.
DO NOT MERGE Fix issue #29871385 : Need JobScheduler.scheduleAsPackage to be system API
2016-09-26 14:04:57 +00:00
Alan Viverette
6e37f8a077
Allow developer to override Material-style modes in picker dialogs am: 8817aa9339
...
am: 010ab618af
Change-Id: I0d68842adb7097f4d32977f31d80a10bc166c045
2016-09-23 19:43:39 +00:00
Alan Viverette
8817aa9339
Allow developer to override Material-style modes in picker dialogs
...
A recent fix prevented developers from specifying Holo-style mode when
displaying a date or time picker dialog. This CL also cleans up unused
code in TimePickerDialog and documents how themeResId will be used.
Adds hidden @TestApi methods for use in CTS tests. These may be made
public later, but it's too late in MR1 for API changes.
Bug: 31586821
Test: Ice2e203983769f1ea1cfa93105eb97b6fa5176b9
Change-Id: I1b7512b7647ddd7ab987beac2c0aef4fe7cc16bc
2016-09-22 11:16:22 -04:00
Neil Fuller
025813ad65
Merge "Track API changes associated with AbstractMethod refactoring" am: 117ef7eb9d am: 3fa8bc066b
...
am: 8ed37211bd
Change-Id: I4771be30b206c9f36e5127608c0f27d5bfb6b0ae
2016-09-21 16:46:25 +00:00
Neil Fuller
8ed37211bd
Merge "Track API changes associated with AbstractMethod refactoring" am: 117ef7eb9d
...
am: 3fa8bc066b
Change-Id: I4931c55a7390f2d186821f1f734af1f42a0a9798
2016-09-21 16:28:46 +00:00
Neil Fuller
f2fb7521ab
Merge "Tracking unhiding of java.lang.reflect.Parameter APIs" am: 0acc91e4fc am: 2d7008a71c
...
am: a70325bced
Change-Id: If4fbdf31e9b6c2cf418acb67866fb4096f1a0049
2016-09-21 12:03:29 +00:00
Neil Fuller
a70325bced
Merge "Tracking unhiding of java.lang.reflect.Parameter APIs" am: 0acc91e4fc
...
am: 2d7008a71c
Change-Id: I931f4f0f5d9be7b11725ab42f5eefcb2770d70b6
2016-09-21 11:58:27 +00:00
Neil Fuller
3243958460
Track API changes associated with AbstractMethod refactoring
...
No actual API change.
Bug: 28666126
Bug: 31052885
Test: make test-art-host and cts run of CtsLibcoreTestCases
Change-Id: I8755509f9b6e5387e071a3550b197167bab6ae04
2016-09-21 12:57:41 +01:00
Neil Fuller
3ead539c01
Tracking unhiding of java.lang.reflect.Parameter APIs
...
Bug: 28666126
Change-Id: I37926f8f221dca7e99ffd233a0990fcfa4d56040
2016-09-21 09:21:10 +00:00
Michael Wright
62b7f8bf7c
DO NOT MERGE Track generics in API definition.
...
Bug: 24265043
Change-Id: I2f51d5b914ef4aa66a973db4765da117385e3bfb
2016-09-12 19:24:47 +01:00
Michael Wright
b4fcc6136e
DO NOT MERGE Track generics in API definition.
...
Bug: 24265043
Change-Id: Icd810adbfe93d542beeb00eeb9c3fb13cb97c0a5
2016-09-12 17:16:49 +01:00
Dianne Hackborn
a0e55c43c2
DO NOT MERGE Fix issue #29871385 : Need JobScheduler.scheduleAsPackage to be system API
...
Change-Id: I0034b1681158b9a010d01fb0fcbe7990d9038c1f
2016-09-12 17:16:44 +01:00
Tobias Thierer
91ca970dfc
API: Update ResourceBundle to OpenJDK8u60
...
Test: make update-api
Change-Id: I1a7acbb02c633e46b237493b22d9d4d470945dd0
2016-09-12 17:07:20 +01:00
Tobias Thierer
e1edfb3008
Merge "Add Base64 from OpenJDK 8u60" am: 63a07e80d6 am: 24bd141ce0
...
am: 8cdc25b4b3
Change-Id: I83723322bfd4db3290fd831210ba1fc03c51e22a
2016-09-08 13:31:09 +00:00
Tobias Thierer
8cdc25b4b3
Merge "Add Base64 from OpenJDK 8u60" am: 63a07e80d6
...
am: 24bd141ce0
Change-Id: I15b2aaaf8d6791d4a561fa935c7ab960ac22c4d8
2016-09-08 13:26:11 +00:00
Tobias Thierer
63a07e80d6
Merge "Add Base64 from OpenJDK 8u60"
2016-09-08 13:10:15 +00:00
Sergio Giro
374edfe1f7
Merge "java.security.Provider: port to jdk8u60 (second part)" am: 8445702920 am: 81749ef47f
...
am: fc0ee229bb
Change-Id: I6b998e9a89c75f4869fcae144a8ce8b7ea40bb34
2016-09-08 12:37:44 +00:00
Sergio Giro
fc0ee229bb
Merge "java.security.Provider: port to jdk8u60 (second part)" am: 8445702920
...
am: 81749ef47f
Change-Id: I6c3b6601f061ee644a9cbcc3f1bb2b8aefcd103d
2016-09-08 12:32:42 +00:00
Sergio Giro
8445702920
Merge "java.security.Provider: port to jdk8u60 (second part)"
2016-09-08 12:18:43 +00:00
Yi Kong
c0579c5fb7
Merge "Track libcore change 76fa41aa4ac891670446592243b654fac7deb53f" am: 3bc37e9cf7 am: b2d6acaa2b
...
am: 541b91fe64
Change-Id: I34d1dbc11268b935cd61204954ce56248346f888
2016-09-08 10:17:57 +00:00
Yi Kong
541b91fe64
Merge "Track libcore change 76fa41aa4ac891670446592243b654fac7deb53f" am: 3bc37e9cf7
...
am: b2d6acaa2b
Change-Id: I756b0c2366737f22447ead5f26435ffb4b0425cb
2016-09-08 10:12:54 +00:00
Yi Kong
a4cc9028bf
Track libcore change 76fa41aa4ac891670446592243b654fac7deb53f
...
Bug: 30992227
Change-Id: I33c25562468f5803e211910f50116b501b66fe56
2016-09-07 16:17:55 +00:00
Sergio Giro
ff14a693b9
Merge "java.security.cert.X509CRL: add new method verify(PublicKey, Provider)" am: 12d3d4bbba am: 6c753ca336
...
am: c0f7d4c65b
Change-Id: I02abf258533fe1b5f86d60f24d0bb2810cc5efc7
2016-09-07 12:34:04 +00:00