Home
last modified time | relevance | path

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

/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.cpp551 bool dispatchVoid(int serial, int slotId, int request) { in dispatchVoid() argument
552 RequestInfo *pRI = android::addRequestToList(serial, slotId, request); in dispatchVoid()
556 CALL_ONREQUEST(request, NULL, 0, pRI, slotId); in dispatchVoid()
560 bool dispatchString(int serial, int slotId, int request, const char * str) { in dispatchString() argument
561 RequestInfo *pRI = android::addRequestToList(serial, slotId, request); in dispatchString()
571 CALL_ONREQUEST(request, pString, sizeof(char *), pRI, slotId); in dispatchString()
577 bool dispatchStrings(int serial, int slotId, int request, bool allowEmpty, int countStrings, ...) { in dispatchStrings() argument
578 RequestInfo *pRI = android::addRequestToList(serial, slotId, request); in dispatchStrings()
605 CALL_ONREQUEST(request, pStrings, countStrings * sizeof(char *), pRI, slotId); in dispatchStrings()
620 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/interfaces/weaver/1.0/vts/functional/
DVtsHalWeaverV1_0TargetTest.cpp125 constexpr uint32_t slotId = 0; in TEST_P() local
126 const auto ret = weaver->write(slotId, KEY, VALUE); in TEST_P()
134 const auto readRet = weaver->read(slotId, KEY, [&](WeaverReadStatus s, WeaverReadResponse r) { in TEST_P()
153 constexpr uint32_t slotId = 0; in TEST_P() local
154 const auto initialWriteRet = weaver->write(slotId, WRONG_KEY, VALUE); in TEST_P()
158 const auto overwriteRet = weaver->write(slotId, KEY, OTHER_VALUE); in TEST_P()
166 const auto readRet = weaver->read(slotId, KEY, [&](WeaverReadStatus s, WeaverReadResponse r) { in TEST_P()
184 constexpr uint32_t slotId = 0; in TEST_P() local
185 const auto ret = weaver->write(slotId, KEY, VALUE); in TEST_P()
193 weaver->read(slotId, WRONG_KEY, [&](WeaverReadStatus s, WeaverReadResponse r) { in TEST_P()
[all …]
/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/google/av/codec2/hidl/client/include/codec2/hidl/
Dclient.h287 int32_t slotId; member
291 RenderedFrame(uint64_t bufferQueueId, int32_t slotId, in RenderedFrame()
294 slotId(slotId), in RenderedFrame()
/hardware/nxp/secure_element/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;
/hardware/google/av/codec2/hidl/client/
Dclient.cpp400 if (rf.slotId >= 0) { in onFramesRendered()
403 rf.slotId, in onFramesRendered()
411 size_t bufferIndex = static_cast<size_t>(~rf.slotId); in onFramesRendered()
/hardware/nxp/secure_element/ls_client/src/
DLsLib.cpp2018 LSCSTATUS LSC_ReadLsHash(uint8_t* hash, uint16_t* readHashLen, uint8_t slotId) { in LSC_ReadLsHash() argument
2036 cmdApdu.p_data[xx++] = slotId; // P1 in LSC_ReadLsHash()
2083 LSCSTATUS LSC_UpdateLsHash(uint8_t* hash, long hashLen, uint8_t slotId) { in LSC_UpdateLsHash() argument
2104 cmdApdu.p_data[xx++] = slotId; // P1 in LSC_UpdateLsHash()
/hardware/google/av/codec2/hidl/1.0/utils/
DComponent.cpp982 renderedFrame.slotId = ~bufferIndex; in processNotifications()