Home
last modified time | relevance | path

Searched refs:slotId (Results 1 – 25 of 26) sorted by relevance

12

/hardware/ril/libril/
Dril_service.h26 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 …]
Dril_service.cpp521 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 …]
Dril_internal.h84 int(*responseFunction) (int slotId, int responseType, int token,
88 RequestInfo * addRequestToList(int serial, int slotId, int request);
Dsap_service.cpp46 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()
Dril.cpp88 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/
Dweaver-impl.cpp131 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()
Dweaver-parser-impl.cpp145 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/
DWeaver.cpp70 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()
DWeaver.h51 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/
DIWeaver.aidl38 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/
DIWeaver.aidl38 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/
DIWeaver.aidl38 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/
DIWeaver.aidl78 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/
Dweaver_interface.h52 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,
Dweaver-impl.h55 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,
Dweaver_parser.h56 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,
Dweaver_parser-impl.h59 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/
DVtsHalWeaverTargetTest.cpp282 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/
DIWeaver.hal47 * @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/
DIComponentListener.aidl64 int slotId;
/hardware/interfaces/media/c2/aidl/aidl_api/android.hardware.media.c2/1/android/hardware/media/c2/
DIComponentListener.aidl50 int slotId;
/hardware/interfaces/media/c2/aidl/aidl_api/android.hardware.media.c2/current/android/hardware/media/c2/
DIComponentListener.aidl50 int slotId;
/hardware/nxp/secure_element/pn8x/ls_client/inc/
DLsLib.h498 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/
DIComponentListener.hal55 int32_t slotId;
/hardware/interfaces/media/c2/1.0/
DIComponentListener.hal71 int32_t slotId;

12