HomeSort by relevance Sort by last modified time
    Searched refs:findData (Results 1 - 25 of 28) sorted by null

1 2

  /external/qemu/android/utils/
dirscanner.c 31 struct _finddata_t findData;
50 ret = _findfirst(s->root, &s->findData);
74 ret = s->findData.name;
81 if (_findnext(s->findIndex1-1, &s->findData) < 0) {
  /frameworks/av/media/libstagefright/
MetaData.cpp 99 if (!findData(key, &type, &data, &size) || type != TYPE_C_STRING) {
112 if (!findData(key, &type, &data, &size) || type != TYPE_INT32) {
127 if (!findData(key, &type, &data, &size) || type != TYPE_INT64) {
142 if (!findData(key, &type, &data, &size) || type != TYPE_FLOAT) {
157 if (!findData(key, &type, &data, &size) || type != TYPE_POINTER) {
175 if (!findData(key, &type, &data, &size) || type != TYPE_RECT) {
209 bool MetaData::findData(uint32_t key, uint32_t *type,
Utils.cpp 141 if (meta->findData(kKeyAVCC, &type, &data, &size)) {
219 } else if (meta->findData(kKeyESDS, &type, &data, &size)) {
236 } else if (meta->findData(kKeyVorbisInfo, &type, &data, &size)) {
244 if (!meta->findData(kKeyVorbisBooks, &type, &data, &size)) {
DRMExtractor.cpp 89 CHECK(getFormat()->findData(kKeyAVCC, &type, &data, &size));
StagefrightMetadataRetriever.cpp 375 if (fileMeta->findData(kKeyAlbumArt, &type, &data, &dataSize)
480 if (meta->findData(kKeyAlbumArt, &type, &data, &dataSize)
MPEG2TSWriter.cpp 158 if (!meta->findData(kKeyESDS, &type, &data, &size)) {
188 if (!meta->findData(kKeyAVCC, &type, &data, &size)) {
MPEG4Extractor.cpp     [all...]
NuMediaExtractor.cpp 250 if (meta->findData(kKeyPssh, &type, &pssh, &psshsize)) {
AVIExtractor.cpp 1095 CHECK(meta->findData(kKeyAVCC, &type, &csd, &csdSize));
    [all...]
OMXCodec.cpp 460 if (meta->findData(kKeyESDS, &type, &data, &size)) {
471 } else if (meta->findData(kKeyAVCC, &type, &data, &size)) {
485 } else if (meta->findData(kKeyVorbisInfo, &type, &data, &size)) {
488 CHECK(meta->findData(kKeyVorbisBooks, &type, &data, &size));
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkMetaData.h 58 const void* findData(const char name[], size_t* byteCount = NULL) const;
83 const void* ptr = this->findData(name, &len);
  /external/chromium_org/third_party/skia/include/views/
SkEvent.h 141 const void* findData(const char name[], size_t* byteCount = NULL) const {
142 return fMeta.findData(name, byteCount);
  /external/skia/include/core/
SkMetaData.h 58 const void* findData(const char name[], size_t* byteCount = NULL) const;
83 const void* ptr = this->findData(name, &len);
  /external/skia/include/views/
SkEvent.h 141 const void* findData(const char name[], size_t* byteCount = NULL) const {
142 return fMeta.findData(name, byteCount);
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorUtils.cpp 86 if (meta->findData(kKeyESDS, &type, &data, &size)) {
89 if (meta->findData(kKeyAVCC, &type, &data, &size)) {
93 if (meta->findData(kKeyVorbisInfo, &type, &data, &size)) {
96 if (meta->findData(kKeyVorbisBooks, &type, &data, &size)) {
153 if (meta->findData(kKeyAlbumArt, &type, &data, &size)) {
VideoEditor3gpReader.cpp     [all...]
  /sdk/find_java/
find_java_lib.cpp 358 WIN32_FIND_DATAA findData;
359 HANDLE findH = FindFirstFileA(glob.cstr(), &findData);
362 if ((findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0) {
364 temp.addPath(findData.cFileName);
373 } while (!found && FindNextFileA(findH, &findData) != 0);
  /frameworks/av/media/libstagefright/timedtext/
TimedText3GPPSource.cpp 102 if (!mSource->getFormat()->findData(
  /frameworks/av/cmds/stagefright/
sf2.cpp 300 if (meta->findData(kKeyAVCC, &type, &data, &size)) {
377 } else if (meta->findData(kKeyESDS, &type, &data, &size)) {
393 } else if (meta->findData(kKeyVorbisInfo, &type, &data, &size)) {
400 CHECK(meta->findData(kKeyVorbisBooks, &type, &data, &size));
stagefright.cpp 121 if (meta->findData(kKeyAVCC, &type, &data, &size)) {
  /frameworks/av/include/media/stagefright/
MetaData.h 214 bool findData(uint32_t key, uint32_t *type,
  /frameworks/base/media/jni/
android_media_MediaExtractor.cpp 278 if (meta->findData(kKeyEncryptedSizes, &type, &data, &size)) {
555 if (!meta->findData(kKeyEncryptedSizes, &type, &data, &size)) {
576 if (meta->findData(kKeyPlainSizes, &type, &data, &size)) {
593 if (meta->findData(kKeyCryptoKey, &type, &data, &size)) {
608 if (meta->findData(kKeyCryptoIV, &type, &data, &size)) {
  /external/chromium_org/third_party/skia/src/core/
SkMetaData.cpp 221 const void* SkMetaData::findData(const char name[], size_t* length) const {
  /external/skia/src/core/
SkMetaData.cpp 221 const void* SkMetaData::findData(const char name[], size_t* length) const {
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 180 CHECK(meta->findData(

Completed in 1382 milliseconds

1 2