Searched defs:dirent (Results 1 – 5 of 5) sorted by relevance
68 struct dirent { struct69 UINT64 Size; // (d_reclen) Size of this dirent structure instance, argument71 UINT64 FileSize; // The size of the file in bytes.72 UINT64 PhysicalSize; // The amount of physical space the file consumes74 EFI_TIME CreateTime; // The time the file was created.75 EFI_TIME LastAccessTime; // The time when the file was last accessed.76 EFI_TIME ModificationTime; // The time when the file's contents were last modified.77 UINT64 Attribute; // (d_type) The attribute bits for the file. See below.78 CHAR16 FileName[1]; // (d_name) The Null-terminated name of the file.
146 struct dirent { struct147 UINT32 d_fileno; /* file number of entry */148 UINT16 d_reclen; /* length of this record */149 UINT8 d_type; /* file type, see below */150 UINT8 d_namlen; /* length of string in d_name */151 char d_name[255 + 1]; /* name must be no longer than this */
95 #define NAMLEN(dirent) wcslen((dirent)->FileName) argument97 #define dirent direct macro98 #define NAMLEN(dirent) (dirent)->d_namlen argument
241 #define NAMLEN(dirent) strlen((dirent)->d_name) argument245 #define NAMLEN(dirent) strlen((dirent)->d_name) argument247 #define dirent direct macro248 #define NAMLEN(dirent) (dirent)->d_namlen argument
94 #define NAMLEN(dirent) wcslen((dirent)->FileName) argument96 #define dirent direct macro97 #define NAMLEN(dirent) (dirent)->d_namlen argument