- Sep 19, 2022
-
-
Chih-Hung Hsieh authored
Bug: 247585041 Test: presubmit Test: lunch aosp_cf_arm64_only_phone_hwasan-userdebug; Test: make tidy-frameworks-base-cmds-idmap2_subset Change-Id: I2cd78fddb330c3fda3bbb88c2470dfb8b51ea4cf
-
Dorin Drimus authored
-
- Sep 16, 2022
-
-
Helen Qin authored
-
Treehugger Robot authored
-
Chavi Weingarten authored
-
Treehugger Robot authored
-
Treehugger Robot authored
-
Dorin Drimus authored
When converting and filtering the list of audio profile from native to Java, if we reuse the global jStatus for the profiles loop, a wrong value for the last element can propagate as the global return value. Using a local status fixes the issue. Bug: 246759253 Change-Id: Ifd2bd3cb2b2252c08055c95375fe499e3f23ce02 Test: atest DirectAudioProfilesForAttributesTest
-
Treehugger Robot authored
-
Neil Fuller authored
Change LocationTime.getTime() -> getUnixEpochMillis() for clarity. Add LocationTime.toString() to improve log messages involving LocationTime. Test: build only Bug: 236611620 Change-Id: I6f33bec6288c67e18a2008a735e88a8981186183
-
Mårten Kongstad authored
-
Mårten Kongstad authored
dumpsys will pass -a to each service. Teach the overlay manager to silently ignore the argument. Test: adb shell dumpsys | grep --text -A1 -e 'DUMP OF SERVICE overlay:' # no "Unknown argument: -a" Change-Id: I00a786a8a3cd5996bfac95e05782b2f204f005c5
-
- Sep 15, 2022
-
-
Miguel Aranda authored
-
chaviw authored
Test: N/A Change-Id: Ibdaa1870fdd2aaf097948028228c73c1cd524264
-
Kweku Adams authored
-
Miguel authored
It seems like the last time I tried "fixing" this bug I deleted the wrong test, and the original failure had remained. This corrects my previous mistake and re-adds the mistakenly deleted test. Bug: 237633188 Test: atest ExpensiveObjectsPerfTest Change-Id: I7c6b929e6e1f018ea9100367d30e1d6d3cdc9d17
-
Lucas Lin authored
-
Treehugger Robot authored
-
- Sep 14, 2022
-
-
Ram Indani authored
Merge "Adds OWNERS file to TouchLatency Test: Presumits BUG: 241152647 Change-Id: I15e0c757472fffdb5f6b808a8d9a35657455c229"
-
Treehugger Robot authored
-
Treehugger Robot authored
-
Treehugger Robot authored
-
Neil Fuller authored
* changes: Add shell command to gnss_time_update_service Refactoring to ease cherry-pick
-
Mythri Alle authored
-
Prashant Patil authored
Included KM_TAG_RSA_OAEP_MGF_DIGEST for RSA keys generation and import if supported padding is defined as OAEP. All supported digest are added as KM_TAG_RSA_OAEP_MGF_DIGEST and also default MGF1-SHA1 digest is added because crypto operations could fail is MGF1ParameterSpec is not provided. Note this includes additional Attestation parameter in returned certificate and need to handle accordingly. Bug: 203688354 Test: run cts -m CtsKeystoreTestCases -t android.keystore.cts.CipherTest#testKatBasicWithDifferentProviders Change-Id: I2086f2520667ccac9116e04de39f6328a0d3fc5b
-
Neil Fuller authored
Add the shell command infrastructure and an initial shell command requested by a partner. The partner would like a way to kick the GnssTimeUpdateService out of "sleep" so that faked passive GNSS location times will be observed during tests. The new command requires SET_TIME permission. Manually tested / confirmed to work with: <Build with gnss_time_update_service enabled> adb shell dumpsys gnss_time_update_service adb shell cmd gnss_time_update_service start_gnss_listening adb shell dumpsys gnss_time_update_service adb shell cmd gnss_time_update_service start_gnss_listening adb shell dumpsys gnss_time_update_service [This cherry-pick involved some changes to account for aosp/master differences. The tests were repeated against aosp/master] Bug: 236611620 Test: Manual: see above Test: atest services/tests/servicestests/src/com/android/server/timedetector/GnssTimeUpdateServiceTest.java Change-Id: I1476a9381e797905d9b2456282cf0eb78d51a304 Merged-In: I1476a9381e797905d9b2456282cf0eb78d51a304 (cherry picked from commit aa771b56)
-
Neil Fuller authored
This change contains the parts of internal change I916cf878469280e6c9498baf2cf930e140c3a386 that affect GnssTimeUpdateService and its test. Pulling in these changes makes the following cherry-pick easier to apply and follow. The rest of I916cf8 will follow naturally as part of the usual publishing of changes. Bug: 236611620 Test: build / boot as part of the following cherry-pick Change-Id: I111189d10836906c67a8fedeb2c9ecee6ab83026 Merged-In: I916cf878469280e6c9498baf2cf930e140c3a386
-
Eran Messeri authored
Since Janis has left, it makes no sense to have him on the OWNERS file. Add myself as a reviewer in an EMEA-friendly timezone. Test: N/A, owners change only. BYPASS_INCLUSIVE_LANGUAGE_REASON=Janis used a he/him pronoun. Change-Id: Ieab9ab74c1d11013ffa915999bf37773659cdad0
-
Mythri Alle authored
This reverts commit 1b989de3. Reason for revert: Test failures: https://b.corp.google.com/issues/246707198 https://buganizer.corp.google.com/issues/246616689 Change-Id: Ibeb5a92bcfe129df01f94bec2a41fea57303e53e
-
Treehugger Robot authored
-
Yi Kong authored
The native service might have died, in which case, abort. Test: presubmit Bug: 246660820 Change-Id: I171a0031db104d2c008ee7ef9709f15f76d70b1a
-
Krzysztof Kosiński authored
Bug: 246670786 Test: presubmit Change-Id: I00df8c9ef86bbfc7f9c0dba6a59d574522bf0012
-
Treehugger Robot authored
-
Treehugger Robot authored
-
Ram Indani authored
Test: Presumits BUG: 241152647 Change-Id: I15e0c757472fffdb5f6b808a8d9a35657455c229
-
Helen Qin authored
Related service setup can be found at https://android-review.googlesource.com/c/2193497. Change-Id: Ie7f9f4d6bdcc2d3a490bda0905224bc56d65c93b
-
Chris Li authored
-
- Sep 13, 2022
-
-
Mikhail Naganov authored
The recommended practice is to use sp<>::make, sp<>::fromExisting, or making copies from other sp<>. This is to avoid various edge cases with RefBase. Set ANDROID_UTILS_REF_BASE_DISABLE_IMPLICIT_CONSTRUCTION for libaudioeffect_jni to catch non-recommended usages as compile time. Bug: 243364224 Test: m Change-Id: I697b33bd701b324da44ae4694ca7a1ec0e9afe77
-
Treehugger Robot authored
-
Mike Schneider authored
-