Home
last modified time | relevance | path

Searched refs:dataMemory (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/soundtrigger/
DISoundTrigger.cpp86 const sp<IMemory>& dataMemory) in startRecognition() argument
91 if (dataMemory == 0) { in startRecognition()
94 data.writeInt32(dataMemory->size()); in startRecognition()
96 data.writeStrongBinder(IInterface::asBinder(dataMemory)); in startRecognition()
156 sp<IMemory> dataMemory; in onTransact() local
158 dataMemory = interface_cast<IMemory>(data.readStrongBinder()); in onTransact()
160 status_t status = startRecognition(handle, dataMemory); in onTransact()
DSoundTrigger.cpp173 const sp<IMemory>& dataMemory) in startRecognition() argument
179 return mISoundTrigger->startRecognition(handle, dataMemory); in startRecognition()
/frameworks/av/services/soundtrigger/
DSoundTriggerHwService.cpp603 const sp<IMemory>& dataMemory) in startRecognition() argument
610 if (dataMemory != 0 && dataMemory->pointer() == NULL) { in startRecognition()
623 if ((dataMemory == 0) || in startRecognition()
624 (dataMemory->size() < sizeof(struct sound_trigger_recognition_config))) { in startRecognition()
633 (struct sound_trigger_recognition_config *)dataMemory->pointer(); in startRecognition()
DSoundTriggerHwService.h120 const sp<IMemory>& dataMemory);
/frameworks/av/include/soundtrigger/
DISoundTrigger.h41 const sp<IMemory>& dataMemory) = 0;
DSoundTrigger.h53 status_t startRecognition(sound_model_handle_t handle, const sp<IMemory>& dataMemory);