/hardware/ril/libril/ |
D | ril_service.h | 26 int getIccCardStatusResponse(int slotId, int responseType, 29 int supplyIccPinForAppResponse(int slotId, 33 int supplyIccPukForAppResponse(int slotId, 37 int supplyIccPin2ForAppResponse(int slotId, 41 int supplyIccPuk2ForAppResponse(int slotId, 45 int changeIccPinForAppResponse(int slotId, 49 int changeIccPin2ForAppResponse(int slotId, 53 int supplyNetworkDepersonalizationResponse(int slotId, 57 int getCurrentCallsResponse(int slotId, 61 int dialResponse(int slotId, [all …]
|
D | ril_service.cpp | 521 bool dispatchVoid(int serial, int slotId, int request) { in dispatchVoid() argument 522 RequestInfo *pRI = android::addRequestToList(serial, slotId, request); in dispatchVoid() 526 CALL_ONREQUEST(request, NULL, 0, pRI, slotId); in dispatchVoid() 530 bool dispatchString(int serial, int slotId, int request, const char * str) { in dispatchString() argument 531 RequestInfo *pRI = android::addRequestToList(serial, slotId, request); in dispatchString() 541 CALL_ONREQUEST(request, pString, sizeof(char *), pRI, slotId); in dispatchString() 547 bool dispatchStrings(int serial, int slotId, int request, bool allowEmpty, int countStrings, ...) { in dispatchStrings() argument 548 RequestInfo *pRI = android::addRequestToList(serial, slotId, request); in dispatchStrings() 575 CALL_ONREQUEST(request, pStrings, countStrings * sizeof(char *), pRI, slotId); in dispatchStrings() 590 bool dispatchStrings(int serial, int slotId, int request, const hidl_vec<hidl_string>& data) { in dispatchStrings() argument [all …]
|
D | ril_internal.h | 84 int(*responseFunction) (int slotId, int responseType, int token, 88 RequestInfo * addRequestToList(int serial, int slotId, int request);
|
D | sap_service.cpp | 46 int32_t slotId; member 89 RLOGD("SapImpl::setCallback for slotId %d", slotId); in setCallback() 184 sapService[slotId]->checkReturnStatus(retStatus); in sendFailedResponse() 960 sapService[i]->slotId = i; in registerService()
|
D | ril.cpp | 88 int (*responseFunction) (int slotId, int responseType, int token, 197 addRequestToList(int serial, int slotId, int request) { in addRequestToList() argument 200 RIL_SOCKET_ID socket_id = (RIL_SOCKET_ID) slotId; in addRequestToList()
|
/hardware/nxp/weaver/libese_weaver/src/ |
D | weaver-impl.cpp | 131 Status_Weaver WeaverImpl::Read(uint32_t slotId, const std::vector<uint8_t> &key, in Read() argument 142 LOG_D(TAG, "Read from Slot (%u)", slotId); in Read() 143 if (mParser->FrameReadCmd(slotId, key, cmd) && in Read() 153 if (mParser->FrameGetDataCmd(WeaverParserImpl::sThrottleGetDataP1, (uint8_t)slotId, cmd) && in Read() 166 LOG_E(TAG, "Failed to perform Read Request for slot (%u)", slotId); in Read() 187 Status_Weaver WeaverImpl::Write(uint32_t slotId, in Write() argument 199 LOG_D(TAG, "Write to Slot (%u)", slotId); in Write() 200 if (mParser->FrameWriteCmd(slotId, key, value, readCmd) && in Write()
|
D | weaver-parser-impl.cpp | 145 bool WeaverParserImpl::FrameReadCmd(uint32_t slotId, in FrameReadCmd() argument 156 request.push_back(SHIFT_MASK & (slotId >> BYTE1_MSB_POS)); in FrameReadCmd() 157 request.push_back(SHIFT_MASK & (slotId >> BYTE2_MSB_POS)); in FrameReadCmd() 158 request.push_back(SHIFT_MASK & (slotId >> BYTE3_MSB_POS)); in FrameReadCmd() 159 request.push_back(SHIFT_MASK & slotId); in FrameReadCmd() 177 bool WeaverParserImpl::FrameWriteCmd(uint32_t slotId, in FrameWriteCmd() argument 189 request.push_back(SHIFT_MASK & (slotId >> BYTE1_MSB_POS)); in FrameWriteCmd() 190 request.push_back(SHIFT_MASK & (slotId >> BYTE2_MSB_POS)); in FrameWriteCmd() 191 request.push_back(SHIFT_MASK & (slotId >> BYTE3_MSB_POS)); in FrameWriteCmd() 192 request.push_back(SHIFT_MASK & slotId); in FrameWriteCmd()
|
/hardware/nxp/weaver/1.0/ |
D | Weaver.cpp | 70 Weaver::write(uint32_t slotId, const hidl_vec<uint8_t>& key, const hidl_vec<uint8_t>& value) { in write() argument 74 && (pInterface->Write(slotId, key, value) == WEAVER_STATUS_OK)) { in write() 81 Weaver::read(uint32_t slotId, const hidl_vec<uint8_t>& key, read_cb _hidl_cb) { in read() argument 91 Status_Weaver status = pInterface->Read(slotId, key, readInfo); in read()
|
D | Weaver.h | 51 write(uint32_t slotId, const hidl_vec<uint8_t>& key, const hidl_vec<uint8_t>& value) override; 53 read(uint32_t slotId, const hidl_vec<uint8_t>& key, read_cb _hidl_cb) override;
|
/hardware/interfaces/weaver/aidl/aidl_api/android.hardware.weaver/1/android/hardware/weaver/ |
D | IWeaver.aidl | 38 android.hardware.weaver.WeaverReadResponse read(in int slotId, in byte[] key); in read() argument 39 void write(in int slotId, in byte[] key, in byte[] value); in write() argument
|
/hardware/interfaces/weaver/aidl/aidl_api/android.hardware.weaver/2/android/hardware/weaver/ |
D | IWeaver.aidl | 38 android.hardware.weaver.WeaverReadResponse read(in int slotId, in byte[] key); in read() argument 39 void write(in int slotId, in byte[] key, in byte[] value); in write() argument
|
/hardware/interfaces/weaver/aidl/aidl_api/android.hardware.weaver/current/android/hardware/weaver/ |
D | IWeaver.aidl | 38 android.hardware.weaver.WeaverReadResponse read(in int slotId, in byte[] key); in read() argument 39 void write(in int slotId, in byte[] key, in byte[] value); in write() argument
|
/hardware/interfaces/weaver/aidl/android/hardware/weaver/ |
D | IWeaver.aidl | 78 WeaverReadResponse read(in int slotId, in byte[] key); in read() argument 96 void write(in int slotId, in byte[] key, in byte[] value); in write() argument
|
/hardware/nxp/weaver/libese_weaver/inc/ |
D | weaver_interface.h | 52 virtual Status_Weaver Read(uint32_t slotId, const std::vector<uint8_t> &key, 64 virtual Status_Weaver Write(uint32_t slotId, const std::vector<uint8_t> &key,
|
D | weaver-impl.h | 55 Status_Weaver Read(uint32_t slotId, const std::vector<uint8_t> &key, 67 Status_Weaver Write(uint32_t slotId, const std::vector<uint8_t> &key,
|
D | weaver_parser.h | 56 virtual bool FrameReadCmd(uint32_t slotId, const std::vector<uint8_t> &key, 70 virtual bool FrameWriteCmd(uint32_t slotId, const std::vector<uint8_t> &key,
|
D | weaver_parser-impl.h | 59 bool FrameReadCmd(uint32_t slotId, const std::vector<uint8_t> &key, 73 bool FrameWriteCmd(uint32_t slotId, const std::vector<uint8_t> &key,
|
/hardware/interfaces/weaver/vts/ |
D | VtsHalWeaverTargetTest.cpp | 282 const uint32_t slotId = first_free_slot_; in TEST_P() local 283 const auto ret = weaver_->write(slotId, KEY, VALUE); in TEST_P() 287 const auto readRet = weaver_->read(slotId, KEY, &response); in TEST_P() 300 const uint32_t slotId = first_free_slot_; in TEST_P() local 301 const auto initialWriteRet = weaver_->write(slotId, WRONG_KEY, VALUE); in TEST_P() 304 const auto overwriteRet = weaver_->write(slotId, KEY, OTHER_VALUE); in TEST_P() 308 const auto readRet = weaver_->read(slotId, KEY, &response); in TEST_P() 320 const uint32_t slotId = first_free_slot_; in TEST_P() local 321 const auto writeRet = weaver_->write(slotId, KEY, VALUE); in TEST_P() 325 const auto readRet = weaver_->read(slotId, WRONG_KEY, &response); in TEST_P()
|
/hardware/interfaces/weaver/1.0/ |
D | IWeaver.hal | 47 * @param slotId of the slot to write to. 52 write(uint32_t slotId, vec<uint8_t> key, vec<uint8_t> value) 66 * @param slotId of the slot to read from. 77 read(uint32_t slotId, vec<uint8_t> key)
|
/hardware/interfaces/media/c2/aidl/android/hardware/media/c2/ |
D | IComponentListener.aidl | 64 int slotId;
|
/hardware/interfaces/media/c2/aidl/aidl_api/android.hardware.media.c2/1/android/hardware/media/c2/ |
D | IComponentListener.aidl | 50 int slotId;
|
/hardware/interfaces/media/c2/aidl/aidl_api/android.hardware.media.c2/current/android/hardware/media/c2/ |
D | IComponentListener.aidl | 50 int slotId;
|
/hardware/nxp/secure_element/pn8x/ls_client/inc/ |
D | LsLib.h | 498 LSCSTATUS LSC_ReadLsHash(uint8_t* hash, uint16_t* readHashLen, uint8_t slotId); 509 LSCSTATUS LSC_UpdateLsHash(uint8_t* hash, long hashLen, uint8_t slotId);
|
/hardware/google/interfaces/media/c2/1.0/ |
D | IComponentListener.hal | 55 int32_t slotId;
|
/hardware/interfaces/media/c2/1.0/ |
D | IComponentListener.hal | 71 int32_t slotId;
|