Lines Matching refs:physicalId
102 const ACaptureRequest* req, const char* physicalId, in ACaptureRequest_getConstEntry_physicalCamera() argument
105 if (req == nullptr || entry == nullptr || physicalId == nullptr) { in ACaptureRequest_getConstEntry_physicalCamera()
107 __FUNCTION__, req, tag, entry, physicalId); in ACaptureRequest_getConstEntry_physicalCamera()
111 const auto& physicalSettings = req->physicalSettings.find(physicalId); in ACaptureRequest_getConstEntry_physicalCamera()
114 __FUNCTION__, physicalId); in ACaptureRequest_getConstEntry_physicalCamera()
158 ACaptureRequest* req, const char* physicalId, uint32_t tag, \ in SET_ENTRY()
161 if (req == nullptr || (count > 0 && data == nullptr) || physicalId == nullptr) { \ in SET_ENTRY()
163 __FUNCTION__, req, tag, count, data, physicalId); \ in SET_ENTRY()
166 if (req->physicalSettings.find(physicalId) == req->physicalSettings.end()) { \ in SET_ENTRY()
168 __FUNCTION__, physicalId); \ in SET_ENTRY()
171 return req->physicalSettings[physicalId]->update(tag, count, data); \ in SET_ENTRY()