HomeSort by relevance Sort by last modified time
    Searched refs:dataMemory (Results 1 - 13 of 13) sorted by null

  /external/icu/icu4c/source/samples/udata/
reader.c 90 const void *dataMemory = NULL;
113 dataMemory = udata_getMemory(result);
115 intPointer = (uint16_t *)dataMemory;
  /frameworks/av/soundtrigger/
ISoundTrigger.cpp 86 const sp<IMemory>& dataMemory)
91 if (dataMemory == 0) {
94 data.writeInt32(dataMemory->size());
96 data.writeStrongBinder(IInterface::asBinder(dataMemory));
156 sp<IMemory> dataMemory;
158 dataMemory = interface_cast<IMemory>(data.readStrongBinder());
160 status_t status = startRecognition(handle, dataMemory);
SoundTrigger.cpp 173 const sp<IMemory>& dataMemory)
179 return mISoundTrigger->startRecognition(handle, dataMemory);
  /frameworks/av/include/soundtrigger/
ISoundTrigger.h 41 const sp<IMemory>& dataMemory) = 0;
SoundTrigger.h 53 status_t startRecognition(sound_model_handle_t handle, const sp<IMemory>& dataMemory);
  /external/icu/icu4c/source/common/
usprep.cpp 231 UDataMemory *dataMemory;
243 dataMemory=udata_openChoice(path, type, name, isSPrepAcceptable, NULL, errorCode);
248 p=(const int32_t *)udata_getMemory(dataMemory);
255 udata_close(dataMemory);
262 profile->sprepData=dataMemory;
263 dataMemory=NULL;
281 udata_close(dataMemory);
289 udata_close(dataMemory);
295 if(dataMemory!=NULL) {
296 udata_close(dataMemory); /* NULL if it was set correctly *
    [all...]
udata.cpp 875 UDataMemory dataMemory;
887 UDataMemory_init(&dataMemory);
888 UDataMemory_setData(&dataMemory, data);
889 udata_checkCommonData(&dataMemory, pErrorCode);
894 setCommonICUData(&dataMemory, TRUE, pErrorCode);
    [all...]
ucnv_bld.h 100 const void *dataMemory; /* from udata_openChoice() - for cleanup */
ucnv_bld.cpp 319 data->dataMemory = (void*)pData; /* for future use */
521 if(deadSharedData->dataMemory != NULL)
523 UDataMemory *data = (UDataMemory*)deadSharedData->dataMemory;
    [all...]
ucnvmbcs.cpp     [all...]
  /frameworks/av/services/soundtrigger/
SoundTriggerHwService.cpp 656 const sp<IMemory>& dataMemory)
662 if (dataMemory == 0 || dataMemory->pointer() == NULL) {
663 ALOGE("startRecognition() dataMemory is 0 or has NULL pointer()");
669 (struct sound_trigger_recognition_config *)dataMemory->pointer();
673 dataMemory->size() < config->data_offset ||
674 config->data_size > (dataMemory->size() - config->data_offset)) {
993 const sp<IMemory>& dataMemory)
    [all...]
SoundTriggerHwService.h 123 const sp<IMemory>& dataMemory);
170 const sp<IMemory>& dataMemory);
  /hardware/interfaces/cas/1.0/vts/functional/
VtsHalCasV1_0TargetTest.cpp 565 sp<IMemory> dataMemory;
567 ASSERT_TRUE(descrambleTestInputBuffer(descrambler, &descrambleStatus, &dataMemory));
570 ASSERT_NE(nullptr, dataMemory.get());
571 uint8_t* opBuffer = static_cast<uint8_t*>(static_cast<void*>(dataMemory->pointer()));
683 sp<IMemory> dataMemory;
685 ASSERT_TRUE(descrambleTestInputBuffer(descrambler, &descrambleStatus, &dataMemory));
693 ASSERT_TRUE(descrambleTestInputBuffer(descrambler, &descrambleStatus, &dataMemory));
    [all...]

Completed in 379 milliseconds