Home
last modified time | relevance | path

Searched refs:DirEntry (Results 1 – 10 of 10) sorted by relevance

/external/jhead/
Dmakernote.c41 unsigned char * DirEntry; in ProcessCanonMakerNoteDir() local
42 DirEntry = DIR_ENTRY_ADDR(DirStart, de); in ProcessCanonMakerNoteDir()
44 Tag = Get16u(DirEntry); in ProcessCanonMakerNoteDir()
45 Format = Get16u(DirEntry+2); in ProcessCanonMakerNoteDir()
46 Components = Get32u(DirEntry+4); in ProcessCanonMakerNoteDir()
63 OffsetVal = Get32u(DirEntry+8); in ProcessCanonMakerNoteDir()
77 ValuePtr = DirEntry+8; in ProcessCanonMakerNoteDir()
Dgpsinfo.c147 unsigned char * DirEntry; in ProcessGpsInfo() local
148 DirEntry = DIR_ENTRY_ADDR(DirStart, de); in ProcessGpsInfo()
150 if (DirEntry+12 > OffsetBase+ExifLength){ in ProcessGpsInfo()
155 Tag = Get16u(DirEntry); in ProcessGpsInfo()
156 Format = Get16u(DirEntry+2); in ProcessGpsInfo()
157 Components = Get32u(DirEntry+4); in ProcessGpsInfo()
175 OffsetVal = Get32u(DirEntry+8); in ProcessGpsInfo()
185 ValuePtr = DirEntry+8; in ProcessGpsInfo()
Dexif.c593 unsigned char * DirEntry; in ProcessExifDir() local
594 DirEntry = DIR_ENTRY_ADDR(DirStart, de); in ProcessExifDir()
596 Tag = Get16u(DirEntry); in ProcessExifDir()
597 Format = Get16u(DirEntry+2); in ProcessExifDir()
598 Components = Get32u(DirEntry+4); in ProcessExifDir()
615 OffsetVal = Get32u(DirEntry+8); in ProcessExifDir()
633 ValuePtr = DirEntry+8; in ProcessExifDir()
1629 unsigned char * DirEntry; in RemoveThumbnail() local
1630 DirEntry = DIR_ENTRY_ADDR(DirWithThumbnailPtrs, de); in RemoveThumbnail()
1631 Tag = Get16u(DirEntry); in RemoveThumbnail()
[all …]
/external/chromium_org/ppapi/shared_impl/
Ddir_contents.h14 struct DirEntry { struct
19 typedef std::vector<DirEntry> DirContents; argument
/external/chromium_org/ppapi/tests/
Dtest_flash_file.cc82 bool DirEntryEqual(FileModuleLocal::DirEntry i, in DirEntryEqual()
83 FileModuleLocal::DirEntry j) { in DirEntryEqual()
87 bool DirEntryLessThan(FileModuleLocal::DirEntry i, in DirEntryLessThan()
88 FileModuleLocal::DirEntry j) { in DirEntryLessThan()
269 std::vector<FileModuleLocal::DirEntry> result; in TestGetDirContents()
290 FileModuleLocal::DirEntry expected[] = { { "..", true }, { filename, false }, in TestGetDirContents()
329 std::vector<FileModuleLocal::DirEntry> contents; in GetItemCountUnderModuleLocalRoot()
/external/chromium_org/ppapi/cpp/private/
Dflash_file.h43 struct DirEntry { struct
49 std::vector<DirEntry>* dir_contents); argument
Dflash_file.cc27 static FileModuleLocal::DirEntry ConvertDirEntry(const PP_DirEntry_Dev& entry) { in ConvertDirEntry()
28 FileModuleLocal::DirEntry rv = { entry.name, PP_ToBool(entry.is_dir) }; in ConvertDirEntry()
102 std::vector<DirEntry>* dir_contents) { in GetDirContents()
/external/chromium_org/ppapi/proxy/
Dflash_file_resource.cc120 const ppapi::DirEntry& source = entries[i]; in GetDirContents()
Dppapi_messages.h280 IPC_STRUCT_TRAITS_BEGIN(ppapi::DirEntry)
/external/chromium_org/content/browser/renderer_host/pepper/
Dpepper_flash_file_message_filter.cc225 ppapi::DirEntry entry = {info.GetName(), info.IsDirectory()}; in OnGetDirContents()