Searched refs:modelHandle (Results 1 – 6 of 6) sorted by relevance
/hardware/interfaces/soundtrigger/2.1/default/ |
D | SoundTriggerHw.h | 51 Return<int32_t> startRecognition_2_1(int32_t modelHandle, 73 Return<int32_t> unloadSoundModel(V2_0::SoundModelHandle modelHandle) override { in unloadSoundModel() 74 return mImpl->unloadSoundModel(modelHandle); in unloadSoundModel() 76 Return<int32_t> startRecognition(int32_t modelHandle, in startRecognition() 80 return mImpl->startRecognition(modelHandle, config); in startRecognition() 82 Return<int32_t> stopRecognition(V2_0::SoundModelHandle modelHandle) override { in stopRecognition() 83 return mImpl->stopRecognition(modelHandle); in stopRecognition() 99 Return<int32_t> startRecognition_2_1(int32_t modelHandle, in startRecognition_2_1() 103 return mImpl->startRecognition_2_1(modelHandle, config); in startRecognition_2_1()
|
D | SoundTriggerHw.cpp | 141 int32_t modelHandle, const V2_1::ISoundTriggerHw::RecognitionConfig& config) { in startRecognition_2_1() argument 145 return result.first ? startRecognition(modelHandle, config_2_0) : Return<int32_t>(-ENOMEM); in startRecognition_2_1()
|
/hardware/interfaces/soundtrigger/2.0/default/ |
D | SoundTriggerHalImpl.h | 83 Return<int32_t> unloadSoundModel(SoundModelHandle modelHandle); 84 Return<int32_t> startRecognition(SoundModelHandle modelHandle, 86 Return<int32_t> stopRecognition(SoundModelHandle modelHandle); 116 Return<int32_t> unloadSoundModel(SoundModelHandle modelHandle) override { in unloadSoundModel() 117 return mImpl->unloadSoundModel(modelHandle); in unloadSoundModel() 120 SoundModelHandle modelHandle, const ISoundTriggerHw::RecognitionConfig& config, in startRecognition() 123 return mImpl->startRecognition(modelHandle, config); in startRecognition() 125 Return<int32_t> stopRecognition(SoundModelHandle modelHandle) override { in stopRecognition() 126 return mImpl->stopRecognition(modelHandle); in stopRecognition()
|
D | SoundTriggerHalImpl.cpp | 148 Return<int32_t> SoundTriggerHalImpl::unloadSoundModel(SoundModelHandle modelHandle) { in unloadSoundModel() argument 159 client = mClients.valueFor(modelHandle); in unloadSoundModel() 168 mClients.removeItem(modelHandle); in unloadSoundModel() 175 SoundModelHandle modelHandle, const ISoundTriggerHw::RecognitionConfig& config) { in startRecognition() argument 187 client = mClients.valueFor(modelHandle); in startRecognition() 209 Return<int32_t> SoundTriggerHalImpl::stopRecognition(SoundModelHandle modelHandle) { in stopRecognition() argument 219 client = mClients.valueFor(modelHandle); in stopRecognition()
|
/hardware/interfaces/soundtrigger/2.0/ |
D | ISoundTriggerHw.hal | 157 * @return modelHandle A unique handle assigned by the HAL for use by the 163 generates (int32_t retval, SoundModelHandle modelHandle); 185 * @return modelHandle A unique handle assigned by the HAL for use by the 191 generates (int32_t retval, SoundModelHandle modelHandle); 196 * @param modelHandle the handle of the sound model to unload 201 unloadSoundModel(SoundModelHandle modelHandle) 208 * @param modelHandle the handle of the sound model to use for recognition 222 startRecognition(SoundModelHandle modelHandle, 232 * @param modelHandle The handle of the sound model to use for recognition 237 stopRecognition(SoundModelHandle modelHandle)
|
/hardware/interfaces/soundtrigger/2.1/ |
D | ISoundTriggerHw.hal | 92 * @return modelHandle A unique handle assigned by the HAL for use by the 99 generates (int32_t retval, SoundModelHandle modelHandle); 126 * @return modelHandle A unique handle assigned by the HAL for use by the 133 generates (int32_t retval, SoundModelHandle modelHandle); 144 * @param modelHandle the handle of the sound model to use for recognition 159 startRecognition_2_1(SoundModelHandle modelHandle,
|