Home
last modified time | relevance | path

Searched refs:appId (Results 1 – 25 of 36) sorted by relevance

12

/hardware/interfaces/contexthub/aidl/aidl_api/android.hardware.contexthub/1/android/hardware/contexthub/
DIContextHub.aidl39 void unloadNanoapp(in int contextHubId, in long appId, in int transactionId); in unloadNanoapp() argument
40 void disableNanoapp(in int contextHubId, in long appId, in int transactionId); in disableNanoapp() argument
41 void enableNanoapp(in int contextHubId, in long appId, in int transactionId); in enableNanoapp() argument
/hardware/interfaces/contexthub/aidl/aidl_api/android.hardware.contexthub/2/android/hardware/contexthub/
DIContextHub.aidl39 void unloadNanoapp(in int contextHubId, in long appId, in int transactionId); in unloadNanoapp() argument
40 void disableNanoapp(in int contextHubId, in long appId, in int transactionId); in disableNanoapp() argument
41 void enableNanoapp(in int contextHubId, in long appId, in int transactionId); in enableNanoapp() argument
/hardware/interfaces/contexthub/aidl/aidl_api/android.hardware.contexthub/3/android/hardware/contexthub/
DIContextHub.aidl39 void unloadNanoapp(in int contextHubId, in long appId, in int transactionId); in unloadNanoapp() argument
40 void disableNanoapp(in int contextHubId, in long appId, in int transactionId); in disableNanoapp() argument
41 void enableNanoapp(in int contextHubId, in long appId, in int transactionId); in enableNanoapp() argument
/hardware/interfaces/contexthub/aidl/aidl_api/android.hardware.contexthub/current/android/hardware/contexthub/
DIContextHub.aidl39 void unloadNanoapp(in int contextHubId, in long appId, in int transactionId); in unloadNanoapp() argument
40 void disableNanoapp(in int contextHubId, in long appId, in int transactionId); in disableNanoapp() argument
41 void enableNanoapp(in int contextHubId, in long appId, in int transactionId); in enableNanoapp() argument
/hardware/interfaces/contexthub/aidl/android/hardware/contexthub/
DIContextHub.aidl83 void unloadNanoapp(in int contextHubId, in long appId, in int transactionId); in unloadNanoapp() argument
104 void disableNanoapp(in int contextHubId, in long appId, in int transactionId); in disableNanoapp() argument
124 void enableNanoapp(in int contextHubId, in long appId, in int transactionId); in enableNanoapp() argument
/hardware/interfaces/contexthub/1.0/default/
DContexthub.h48 uint64_t appId,
52 uint64_t appId,
56 uint64_t appId,
DContexthub.cpp302 app.appId = query_info.app_name.id; in handleOsMessage()
398 uint64_t appId, in unloadNanoApp() argument
419 req.app_name.id = appId; in unloadNanoApp()
453 .app_id.id = htole64(appBinary.appId), in loadNanoApp()
481 uint64_t appId, in enableNanoApp() argument
501 req.app_name.id = appId; in enableNanoApp()
514 uint64_t appId, in disableNanoApp() argument
534 req.app_name.id = appId; in disableNanoApp()
/hardware/interfaces/contexthub/common/vts/
DContexthubCallbackBase.h49 virtual Return<void> handleAppAbort(uint64_t appId, uint32_t abortCode) override { in handleAppAbort() argument
51 appId, abortCode); in handleAppAbort()
/hardware/interfaces/contexthub/common/default/1.X/utils/
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()
/hardware/interfaces/radio/1.0/vts/functional/
Dradio_hidl_hal_ims.cpp65 std::string appId = ""; in TEST_P() local
67 radio->getFacilityLockForApp(serial, facility, password, serviceClass, appId); in TEST_P()
89 std::string appId = ""; in TEST_P() local
91 radio->setFacilityLockForApp(serial, facility, lockState, password, serviceClass, appId); in TEST_P()
/hardware/interfaces/contexthub/1.0/
DIContexthub.hal104 * @param appId appIdentifier returned by the HAL
114 unloadNanoApp(uint32_t hubId, uint64_t appId, uint32_t transactionId)
125 * @param appId appIdentifier returned by the HAL
135 enableNanoApp(uint32_t hubId, uint64_t appId, uint32_t transactionId)
146 * @param appId appIdentifier returned by the HAL
156 disableNanoApp(uint32_t hubId, uint64_t appId, uint32_t transactionId)
DIContexthubCallback.hal58 * @param appId app identifier
64 handleAppAbort(uint64_t appId, uint32_t abortCode);
/hardware/interfaces/radio/aidl/compat/libradiocompat/data/
Dstructs.h46 ::aidl::android::hardware::radio::data::OsAppId toAidl(const V1_6::OsAppId& appId);
47 V1_6::OsAppId toHidl(const ::aidl::android::hardware::radio::data::OsAppId& appId);
Dstructs.cpp95 aidl::OsAppId toAidl(const V1_6::OsAppId& appId) { in toAidl() argument
97 .osAppId = appId.osAppId, in toAidl()
101 V1_6::OsAppId toHidl(const aidl::OsAppId& appId) { in toHidl() argument
103 .osAppId = appId.osAppId, in toHidl()
/hardware/interfaces/radio/aidl/compat/libradiocompat/sim/
DRadioSim.cpp83 int32_t serviceClass, const std::string& appId) { in getFacilityLockForApp() argument
85 mHal1_5->getFacilityLockForApp(serial, facility, password, serviceClass, appId); in getFacilityLockForApp()
225 int32_t serviceClass, const std::string& appId) { in setFacilityLockForApp() argument
227 mHal1_5->setFacilityLockForApp(serial, facility, lockState, password, serviceClass, appId); in setFacilityLockForApp()
/hardware/interfaces/contexthub/1.0/vts/functional/
DVtsHalContexthubV1_0TargetTest.cpp124 EXPECT_NE(appInfo.appId, UINT64_C(0)); in TEST_P()
125 EXPECT_NE(appInfo.appId, kNonExistentAppId); in TEST_P()
207 emptyApp.appId = kNonExistentAppId; in TEST_P()
/hardware/interfaces/radio/aidl/aidl_api/android.hardware.radio.sim/1/android/hardware/radio/sim/
DIRadioSim.aidl44 …orApp(in int serial, in String facility, in String password, in int serviceClass, in String appId); in getFacilityLockForApp() argument
63 …n String facility, in boolean lockState, in String password, in int serviceClass, in String appId); in setFacilityLockForApp() argument
/hardware/interfaces/radio/aidl/android/hardware/radio/sim/
DIRadioSim.aidl156 in int serviceClass, in String appId); in getFacilityLockForApp() argument
429 in String password, in int serviceClass, in String appId); in setFacilityLockForApp() argument
/hardware/interfaces/radio/aidl/aidl_api/android.hardware.radio.sim/3/android/hardware/radio/sim/
DIRadioSim.aidl45 …orApp(in int serial, in String facility, in String password, in int serviceClass, in String appId); in getFacilityLockForApp() argument
67 …n String facility, in boolean lockState, in String password, in int serviceClass, in String appId); in setFacilityLockForApp() argument
/hardware/interfaces/radio/aidl/aidl_api/android.hardware.radio.sim/current/android/hardware/radio/sim/
DIRadioSim.aidl45 …orApp(in int serial, in String facility, in String password, in int serviceClass, in String appId); in getFacilityLockForApp() argument
67 …n String facility, in boolean lockState, in String password, in int serviceClass, in String appId); in setFacilityLockForApp() argument
/hardware/interfaces/radio/aidl/aidl_api/android.hardware.radio.sim/2/android/hardware/radio/sim/
DIRadioSim.aidl44 …orApp(in int serial, in String facility, in String password, in int serviceClass, in String appId); in getFacilityLockForApp() argument
66 …n String facility, in boolean lockState, in String password, in int serviceClass, in String appId); in setFacilityLockForApp() argument
/hardware/interfaces/contexthub/1.2/vts/functional/
DVtsHalContexthubV1_2TargetTest.cpp173 EXPECT_NE(appInfo.info_1_0.appId, UINT64_C(0)); in TEST_P()
174 EXPECT_NE(appInfo.info_1_0.appId, kNonExistentAppId); in TEST_P()
/hardware/interfaces/security/keymint/aidl/android/hardware/security/keymint/
DIKeyMintDevice.aidl883 in byte[] keyBlob, in byte[] appId, in byte[] appData); in getKeyCharacteristics() argument
/hardware/interfaces/security/keymint/aidl/aidl_api/android.hardware.security.keymint/1/android/hardware/security/keymint/
DIKeyMintDevice.aidl51 …t.KeyCharacteristics[] getKeyCharacteristics(in byte[] keyBlob, in byte[] appId, in byte[] appData… in getKeyCharacteristics() argument
/hardware/interfaces/radio/aidl/compat/libradiocompat/include/libradiocompat/
DRadioSim.h38 const std::string& appId) override;
76 int32_t serviceClass, const std::string& appId) override;

12