Home
last modified time | relevance | path

Searched refs:slotInfo (Results 1 – 8 of 8) sorted by relevance

/hardware/nxp/weaver/1.0/
DWeaver.cpp55 SlotInfo slotInfo; in getConfig() local
56 Status_Weaver status = pInterface->GetSlots(slotInfo); in getConfig()
58 configResp.slots = slotInfo.slots; in getConfig()
59 configResp.keySize = slotInfo.keySize; in getConfig()
60 configResp.valueSize = slotInfo.valueSize; in getConfig()
/hardware/nxp/weaver/aidl_impl/
DWeaver.cpp55 SlotInfo slotInfo; in getConfig() local
56 Status_Weaver status = pInterface->GetSlots(slotInfo); in getConfig()
58 out_config->slots = slotInfo.slots; in getConfig()
59 out_config->keySize = slotInfo.keySize; in getConfig()
60 out_config->valueSize = slotInfo.valueSize; in getConfig()
/hardware/nxp/weaver/libese_weaver/src/
Dweaver-parser-impl.cpp234 SlotInfo &slotInfo) { in ParseSlotInfo() argument
237 slotInfo.slots = 0; in ParseSlotInfo()
243 slotInfo.slots = slots; in ParseSlotInfo()
244 slotInfo.keySize = KEY_SIZE; in ParseSlotInfo()
245 slotInfo.valueSize = VALUE_SIZE; in ParseSlotInfo()
Dweaver-impl.cpp79 Status_Weaver WeaverImpl::GetSlots(SlotInfo &slotInfo) { in GetSlots() argument
101 status = mParser->ParseSlotInfo(std::move(resp), slotInfo); in GetSlots()
102 LOG_D(TAG, "Total Slots (%u) ", slotInfo.slots); in GetSlots()
/hardware/nxp/weaver/libese_weaver/inc/
Dweaver_interface.h41 virtual Status_Weaver GetSlots(SlotInfo &slotInfo) = 0;
Dweaver-impl.h44 Status_Weaver GetSlots(SlotInfo &slotInfo) override;
Dweaver_parser.h98 SlotInfo &slotInfo) = 0;
Dweaver_parser-impl.h101 SlotInfo &slotInfo);