/aosp12/system/chre/apps/test/chqts/src/shared/ |
H A D | abort.cc | 26 uint32_t abortCode = UINT32_C(0x10000) + static_cast<uint16_t>(reason); in abort() local 27 chreAbort(abortCode); in abort()
|
/aosp12/system/chre/util/ |
H A D | container_support.cc | 41 void chreAbort(uint32_t abortCode) { in chreAbort() argument 44 fprintf(stderr, "Aborting with code %" PRIu32 "\n", abortCode); in chreAbort()
|
/aosp12/hardware/interfaces/contexthub/common/vts/ |
H A D | ContexthubCallbackBase.h | 49 virtual Return<void> handleAppAbort(uint64_t appId, uint32_t abortCode) override { in handleAppAbort() argument 51 appId, abortCode); in handleAppAbort()
|
/aosp12/hardware/interfaces/contexthub/common/default/1.X/utils/ |
H A D | IContextHubCallbackWrapper.h | 64 virtual Return<void> handleAppAbort(uint64_t appId, uint32_t abortCode) = 0; 92 virtual Return<void> handleAppAbort(uint64_t appId, uint32_t abortCode) override { in handleAppAbort() argument 93 return mCallback->handleAppAbort(appId, abortCode); in handleAppAbort()
|
/aosp12/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | BackgroundDexOptService.java | 376 int abortCode = abortIdleOptimizations(/*lowStorageThreshold*/ -1); in idleOptimizePackages() local 377 if (abortCode != OPTIMIZE_CONTINUE) { in idleOptimizePackages() 379 return abortCode; in idleOptimizePackages() 420 int abortCode = abortIdleOptimizations(lowStorageThreshold); in optimizePackages() local 421 if (abortCode != OPTIMIZE_CONTINUE) { in optimizePackages() 423 return abortCode; in optimizePackages()
|
/aosp12/frameworks/base/core/java/android/hardware/location/ |
H A D | IContextHubClientCallback.aidl | 36 void onNanoAppAborted(long nanoAppId, int abortCode); in onNanoAppAborted() argument
|
H A D | ContextHubClientCallback.java | 67 public void onNanoAppAborted(ContextHubClient client, long nanoAppId, int abortCode) {} in onNanoAppAborted() argument
|
H A D | ContextHubManager.java | 779 public void onNanoAppAborted(long nanoAppId, int abortCode) { 780 executor.execute(() -> callback.onNanoAppAborted(client, nanoAppId, abortCode));
|
/aosp12/hardware/interfaces/contexthub/1.0/ |
H A D | IContexthubCallback.hal | 59 * @param abortCode code passed by the nanoApp. 64 handleAppAbort(uint64_t appId, uint32_t abortCode);
|
/aosp12/system/chre/chre_api/legacy/v1_0/chre/ |
H A D | re.h | 286 void chreAbort(uint32_t abortCode);
|
/aosp12/system/chre/chre_api/legacy/v1_1/chre/ |
H A D | re.h | 346 void chreAbort(uint32_t abortCode);
|
/aosp12/system/chre/chre_api/legacy/v1_2/chre/ |
H A D | re.h | 352 void chreAbort(uint32_t abortCode);
|
/aosp12/system/chre/chre_api/legacy/v1_3/chre/ |
H A D | re.h | 352 void chreAbort(uint32_t abortCode);
|
/aosp12/system/chre/chre_api/include/chre_api/chre/ |
H A D | re.h | 366 void chreAbort(uint32_t abortCode);
|
/aosp12/system/chre/chre_api/legacy/v1_4/chre/ |
H A D | re.h | 366 void chreAbort(uint32_t abortCode);
|
/aosp12/frameworks/base/services/core/java/com/android/server/location/contexthub/ |
H A D | ContextHubService.java | 164 public void handleAppAbort(long nanoAppId, int abortCode) { in handleAppAbort() argument 165 handleAppAbortCallback(mContextHubId, nanoAppId, abortCode); in handleAppAbort() 337 public void onNanoAppAborted(long nanoAppId, int abortCode) { in createDefaultClientCallback() argument 716 private void handleAppAbortCallback(int contextHubId, long nanoAppId, int abortCode) { 717 mClientManager.onNanoAppAborted(contextHubId, nanoAppId, abortCode);
|
H A D | ContextHubClientManager.java | 317 /* package */ void onNanoAppAborted(int contextHubId, long nanoAppId, int abortCode) { in onNanoAppAborted() argument 318 forEachClientOfHub(contextHubId, client -> client.onNanoAppAborted(nanoAppId, abortCode)); in onNanoAppAborted()
|
H A D | ContextHubClientBroker.java | 563 /* package */ void onNanoAppAborted(long nanoAppId, int abortCode) { in onNanoAppAborted() argument 564 invokeCallback(callback -> callback.onNanoAppAborted(nanoAppId, abortCode)); in onNanoAppAborted() 568 .putExtra(ContextHubManager.EXTRA_NANOAPP_ABORT_CODE, abortCode); in onNanoAppAborted()
|
/aosp12/system/chre/platform/shared/ |
H A D | chre_api_core.cc | 35 DLL_EXPORT void chreAbort(uint32_t abortCode) { in chreAbort() argument
|