OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dataMemory
(Results
1 - 12
of
12
) sorted by null
/external/icu/icu4c/source/samples/udata/
reader.c
84
const void *
dataMemory
= NULL;
107
dataMemory
= udata_getMemory(result);
109
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
229
UDataMemory *
dataMemory
;
241
dataMemory
=udata_openChoice(path, type, name, isSPrepAcceptable, NULL, errorCode);
246
p=(const int32_t *)udata_getMemory(
dataMemory
);
253
udata_close(
dataMemory
);
260
profile->sprepData=
dataMemory
;
261
dataMemory
=NULL;
279
udata_close(
dataMemory
);
287
udata_close(
dataMemory
);
293
if(
dataMemory
!=NULL) {
294
udata_close(
dataMemory
); /* NULL if it was set correctly *
[
all
...]
udata.cpp
858
UDataMemory
dataMemory
;
870
UDataMemory_init(&
dataMemory
);
871
UDataMemory_setData(&
dataMemory
, data);
872
udata_checkCommonData(&
dataMemory
, pErrorCode);
877
setCommonICUData(&
dataMemory
, TRUE, pErrorCode);
[
all
...]
ucnv_bld.h
98
const void *
dataMemory
; /* from udata_openChoice() - for cleanup */
ucnv_bld.cpp
317
data->
dataMemory
= (void*)pData; /* for future use */
519
if(deadSharedData->
dataMemory
!= NULL)
521
UDataMemory *data = (UDataMemory*)deadSharedData->
dataMemory
;
[
all
...]
ucnvmbcs.cpp
[
all
...]
/frameworks/av/services/soundtrigger/
SoundTriggerHwService.cpp
619
const sp<IMemory>&
dataMemory
)
626
if (
dataMemory
== 0 ||
dataMemory
->pointer() == NULL) {
627
ALOGE("startRecognition()
dataMemory
is 0 or has NULL pointer()");
633
(struct sound_trigger_recognition_config *)
dataMemory
->pointer();
637
dataMemory
->size() < config->data_offset ||
638
config->data_size > (
dataMemory
->size() - config->data_offset)) {
SoundTriggerHwService.h
120
const sp<IMemory>&
dataMemory
);
Completed in 254 milliseconds