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/include/soundtrigger/
DISoundTrigger.h41 const sp<IMemory>& dataMemory) = 0;
DSoundTrigger.h53 status_t startRecognition(sound_model_handle_t handle, const sp<IMemory>& dataMemory);
/frameworks/av/services/soundtrigger/
DSoundTriggerHwService.cpp674 const sp<IMemory>& dataMemory) in startRecognition() argument
680 if (dataMemory == 0 || dataMemory->pointer() == NULL) { in startRecognition()
687 (struct sound_trigger_recognition_config *)dataMemory->pointer(); in startRecognition()
691 dataMemory->size() < config->data_offset || in startRecognition()
692 config->data_size > (dataMemory->size() - config->data_offset)) { in startRecognition()
1017 const sp<IMemory>& dataMemory) in startRecognition() argument
1029 return module->startRecognition(handle, dataMemory); in startRecognition()
DSoundTriggerHwService.h123 const sp<IMemory>& dataMemory);
170 const sp<IMemory>& dataMemory);