Home
last modified time | relevance | path

Searched refs:abortCode (Results 1 – 19 of 19) sorted by relevance

/aosp12/system/chre/apps/test/chqts/src/shared/
H A Dabort.cc26 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 Dcontainer_support.cc41 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 DContexthubCallbackBase.h49 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 DIContextHubCallbackWrapper.h64 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 DBackgroundDexOptService.java376 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 DIContextHubClientCallback.aidl36 void onNanoAppAborted(long nanoAppId, int abortCode); in onNanoAppAborted() argument
H A DContextHubClientCallback.java67 public void onNanoAppAborted(ContextHubClient client, long nanoAppId, int abortCode) {} in onNanoAppAborted() argument
H A DContextHubManager.java779 public void onNanoAppAborted(long nanoAppId, int abortCode) {
780 executor.execute(() -> callback.onNanoAppAborted(client, nanoAppId, abortCode));
/aosp12/hardware/interfaces/contexthub/1.0/
H A DIContexthubCallback.hal59 * @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 Dre.h286 void chreAbort(uint32_t abortCode);
/aosp12/system/chre/chre_api/legacy/v1_1/chre/
H A Dre.h346 void chreAbort(uint32_t abortCode);
/aosp12/system/chre/chre_api/legacy/v1_2/chre/
H A Dre.h352 void chreAbort(uint32_t abortCode);
/aosp12/system/chre/chre_api/legacy/v1_3/chre/
H A Dre.h352 void chreAbort(uint32_t abortCode);
/aosp12/system/chre/chre_api/include/chre_api/chre/
H A Dre.h366 void chreAbort(uint32_t abortCode);
/aosp12/system/chre/chre_api/legacy/v1_4/chre/
H A Dre.h366 void chreAbort(uint32_t abortCode);
/aosp12/frameworks/base/services/core/java/com/android/server/location/contexthub/
H A DContextHubService.java164 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 DContextHubClientManager.java317 /* package */ void onNanoAppAborted(int contextHubId, long nanoAppId, int abortCode) { in onNanoAppAborted() argument
318 forEachClientOfHub(contextHubId, client -> client.onNanoAppAborted(nanoAppId, abortCode)); in onNanoAppAborted()
H A DContextHubClientBroker.java563 /* 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 Dchre_api_core.cc35 DLL_EXPORT void chreAbort(uint32_t abortCode) { in chreAbort() argument