HomeSort by relevance Sort by last modified time
    Searched refs:findData (Results 1 - 25 of 29) 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 100 if (!findData(key, &type, &data, &size) || type != TYPE_C_STRING) {
113 if (!findData(key, &type, &data, &size) || type != TYPE_INT32) {
128 if (!findData(key, &type, &data, &size) || type != TYPE_INT64) {
143 if (!findData(key, &type, &data, &size) || type != TYPE_FLOAT) {
158 if (!findData(key, &type, &data, &size) || type != TYPE_POINTER) {
176 if (!findData(key, &type, &data, &size) || type != TYPE_RECT) {
210 bool MetaData::findData(uint32_t key, uint32_t *type,
Utils.cpp 177 if (meta->findData(kKeyAVCC, &type, &data, &size)) {
255 } else if (meta->findData(kKeyHVCC, &type, &data, &size)) {
305 } else if (meta->findData(kKeyESDS, &type, &data, &size)) {
322 } else if (meta->findData(kKeyVorbisInfo, &type, &data, &size)) {
330 if (!meta->findData(kKeyVorbisBooks, &type, &data, &size)) {
340 } else if (meta->findData(kKeyOpusHeader, &type, &data, &size)) {
DRMExtractor.cpp 89 CHECK(getFormat()->findData(kKeyAVCC, &type, &data, &size));
StagefrightMetadataRetriever.cpp 382 if (fileMeta->findData(kKeyAlbumArt, &type, &data, &dataSize)
510 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)) {
OMXCodec.cpp 524 if (meta->findData(kKeyESDS, &type, &data, &size)) {
535 } else if (meta->findData(kKeyAVCC, &type, &data, &size)) {
549 } else if (meta->findData(kKeyHVCC, &type, &data, &size)) {
563 } else if (meta->findData(kKeyVorbisInfo, &type, &data, &size)) {
566 CHECK(meta->findData(kKeyVorbisBooks, &type, &data, &size));
568 } else if (meta->findData(kKeyOpusHeader, &type, &data, &size)) {
571 CHECK(meta->findData(kKeyOpusCodecDelay, &type, &data, &size));
573 CHECK(meta->findData(kKeyOpusSeekPreRoll, &type, &data, &size));
    [all...]
MPEG4Extractor.cpp     [all...]
NuMediaExtractor.cpp 252 if (meta->findData(kKeyPssh, &type, &pssh, &psshsize)) {
AVIExtractor.cpp 1095 CHECK(meta->findData(kKeyAVCC, &type, &csd, &csdSize));
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
pageint.h 377 KeyType PDF_DocPageData_FindValue(const CFX_MapPtrTemplate<KeyType, CPDF_CountedObject<ValueType>*> &map, ValueType findValue, CPDF_CountedObject<ValueType>*& findData)
382 map.GetNextAssoc(pos, findKey, findData);
383 if (findData->m_Obj == findValue) {
387 findData = NULL;
396 CPDF_CountedObject<ValueType>* findData = NULL;
398 findKey = PDF_DocPageData_FindValue<KeyType, ValueType>(map, findValue, findData);
399 } else if (!map.Lookup(findKey, findData)) {
402 if (findData && ((-- findData->m_nCount) == 0 || bForce)) {
403 delete findData->m_Obj;
    [all...]
  /frameworks/av/media/ndk/
NdkMediaExtractor.cpp 192 if (meta->findData(kKeyEncryptedSizes, &type, &data, &size)) {
312 if (!meta->findData(kKeyEncryptedSizes, &type, &crypteddata, &cryptedsize)) {
319 if (meta->findData(kKeyPlainSizes, &type, &cleardata, &clearsize)) {
328 if (meta->findData(kKeyCryptoIV, &type, &key, &keysize)) {
337 if (meta->findData(kKeyCryptoIV, &type, &iv, &ivsize)) {
  /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);
  /sdk/find_java/src/source/
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 324 if (meta->findData(kKeyAVCC, &type, &data, &size)) {
401 } else if (meta->findData(kKeyESDS, &type, &data, &size)) {
417 } else if (meta->findData(kKeyVorbisInfo, &type, &data, &size)) {
424 CHECK(meta->findData(kKeyVorbisBooks, &type, &data, &size));
stagefright.cpp 121 if (meta->findData(kKeyAVCC, &type, &data, &size)) {
    [all...]
  /frameworks/av/include/media/stagefright/
MetaData.h 227 bool findData(uint32_t key, uint32_t *type,
  /frameworks/base/media/jni/
android_media_MediaExtractor.cpp 303 if (meta->findData(kKeyEncryptedSizes, &type, &data, &size)) {
580 if (!meta->findData(kKeyEncryptedSizes, &type, &data, &size)) {
601 if (meta->findData(kKeyPlainSizes, &type, &data, &size)) {
618 if (meta->findData(kKeyCryptoKey, &type, &data, &size)) {
633 if (meta->findData(kKeyCryptoIV, &type, &data, &size)) {
  /frameworks/av/media/libstagefright/webm/
WebmWriter.cpp 135 CHECK(md->findData(kKeyVorbisInfo, &type, &headerData1, &headerSize1));
136 CHECK(md->findData(kKeyVorbisBooks, &type, &headerData3, &headerSize3));
  /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 {

Completed in 349 milliseconds

1 2