HomeSort by relevance Sort by last modified time
    Searched defs:findData (Results 1 - 3 of 3) sorted by null

  /external/qemu/android/utils/
dirscanner.c 30 struct _finddata_t findData;
49 ret = _findfirst(s->root, &s->findData);
73 ret = s->findData.name;
80 if (_findnext(s->findIndex1-1, &s->findData) < 0) {
  /external/webkit/WebCore/platform/wince/
FileSystemWince.cpp 267 WIN32_FIND_DATA findData;
268 HANDLE hFind = FindFirstFile(pattern.data(), &findData);
274 if (!(findData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))
275 entries.append(root + findData.cFileName);
276 } while (FindNextFile(hFind, &findData));
  /frameworks/base/media/libstagefright/
MetaData.cpp 77 if (!findData(key, &type, &data, &size) || type != TYPE_C_STRING) {
90 if (!findData(key, &type, &data, &size) || type != TYPE_INT32) {
105 if (!findData(key, &type, &data, &size) || type != TYPE_INT64) {
120 if (!findData(key, &type, &data, &size) || type != TYPE_FLOAT) {
135 if (!findData(key, &type, &data, &size) || type != TYPE_POINTER) {
165 bool MetaData::findData(uint32_t key, uint32_t *type,

Completed in 51 milliseconds