Home
last modified time | relevance | path

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

/hardware/interfaces/automotive/vehicle/2.0/default/common/src/
DSubscriptionManager.cpp212 auto it = mClients.find(clientId); in getOrCreateHalClientLocked()
214 if (it == mClients.end()) { in getOrCreateHalClientLocked()
225 mClients.insert({clientId, client}); in getOrCreateHalClientLocked()
236 auto clientIter = mClients.find(clientId); in unsubscribe()
237 if (clientIter == mClients.end()) { in unsubscribe()
264 mClients.erase(clientIter); in unsubscribe()
281 const auto& it = mClients.find(clientId); in onCallbackDead()
282 if (it == mClients.end()) { in onCallbackDead()
/hardware/interfaces/soundtrigger/2.3/default/
DSoundTriggerHw.cpp141 mClients.add(client->getId(), client); in doLoadSoundModel()
181 client = mClients.valueFor(modelHandle); in unloadSoundModel()
190 mClients.removeItem(modelHandle); in unloadSoundModel()
210 client = mClients.valueFor(modelHandle); in startRecognition()
243 client = mClients.valueFor(modelHandle); in stopRecognition()
311 } while (mClients.valueFor(modelId) != 0 && modelId != 0); in nextUniqueModelId()
314 mClients.size()); in nextUniqueModelId()
758 client = mClients.valueFor(modelHandle); in getModelState()
805 client = mClients.valueFor(modelHandle); in startRecognition_2_3()
836 client = mClients.valueFor(modelHandle); in setParameter()
[all …]
DSoundTriggerHw.h188 DefaultKeyedVector<int32_t, sp<SoundModelClient>> mClients; member
/hardware/interfaces/soundtrigger/2.0/default/
DSoundTriggerHalImpl.cpp122 mClients.add(client->getId(), client); in doLoadSoundModel()
159 client = mClients.valueFor(modelHandle); in unloadSoundModel()
168 mClients.removeItem(modelHandle); in unloadSoundModel()
187 client = mClients.valueFor(modelHandle); in startRecognition()
219 client = mClients.valueFor(modelHandle); in stopRecognition()
293 } while (mClients.valueFor(modelId) != 0 && modelId != 0); in nextUniqueModelId()
296 mClients.size()); in nextUniqueModelId()
DSoundTriggerHalImpl.h172 DefaultKeyedVector<int32_t, sp<SoundModelClient> > mClients; variable
/hardware/interfaces/soundtrigger/2.2/default/
DSoundTriggerHw.cpp140 mClients.add(client->getId(), client); in doLoadSoundModel()
180 client = mClients.valueFor(modelHandle); in unloadSoundModel()
189 mClients.removeItem(modelHandle); in unloadSoundModel()
209 client = mClients.valueFor(modelHandle); in startRecognition()
242 client = mClients.valueFor(modelHandle); in stopRecognition()
315 } while (mClients.valueFor(modelId) != 0 && modelId != 0); in nextUniqueModelId()
318 mClients.size()); in nextUniqueModelId()
701 client = mClients.valueFor(modelHandle); in getModelState()
DSoundTriggerHw.h167 DefaultKeyedVector<int32_t, sp<SoundModelClient> > mClients; member
/hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
DSubscriptionManager.h163 std::map<ClientId, sp<HalClient>> mClients; variable