Searched defs:dirent (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A Ddirent.h43 @(#)dirent.h 8.3 (Berkeley) 8/10/94
44 NetBSD: dirent.h,v 1.23 2005/12/26 18:41:36 perry Exp
58 * The dirent structure defines the format of directory entries returned by
66 * as struct dirent.
68 struct dirent { struct
69 UINT64 Size; // (d_reclen) Size of this dirent structure instance,
103 * The _DIRENT_ALIGN macro returns the alignment of struct dirent.
104 * struct dirent uses 8.
110 * struct dirent
117 * a name of size "namlen". This requires the amount of space in struct dirent
[all...]
/vbox/src/VBox/Additions/x11/x11include/xproto-7.0.18/X11/
H A DXos_r.h29 * <dirent.h> for readdir()
522 /***** <dirent.h> wrappers *****/
525 * Effective prototypes for <dirent.h> wrappers:
533 * struct dirent *_XReaddir(DIR *dir_pointer, _Xreaddirparams);
539 # include <dirent.h>
542 # ifndef dirent
543 # define dirent direct macro
562 struct dirent *result;
563 struct dirent dir_entry;
584 struct dirent *resul
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/
H A DOpenSslSupport.h112 struct dirent { struct
198 struct dirent *readdir (DIR *);
/vbox/src/VBox/Additions/solaris/SharedFolders/
H A Dvboxfs_prov.c42 #include <sys/dirent.h>
915 * for each dirent, all fields except the d_ino will be set appropriately.
938 struct sffs_dirent *dirent; local
1023 /* create the dirent with the name, offset, and len */
1024 dirent = (struct sffs_dirent *)
1026 strncpy(&dirent->sf_entry.d_name[0], info->name.String.utf8, DIRENT64_NAMELEN(reclen));
1027 dirent->sf_entry.d_reclen = reclen;
1029 dirent->sf_entry.d_off = offset;
1032 sfprov_stat_from_info(mnt, &dirent->sf_stat, &info->Info);
H A Dvboxfs_vnode.c91 #include <sys/dirent.h>
715 struct sffs_dirent *dirent = NULL; local
770 dirent = &cur_buf->sf_entries[0];
773 if (dirent->sf_entry.d_off == uiop->uio_loffset)
775 step = sizeof(sffs_stat_t) + dirent->sf_entry.d_reclen;
776 dirent = (struct sffs_dirent *) (((char *) dirent) + step);
799 dirent = (struct sffs_dirent *)
801 if (dirent->sf_entry.d_reclen > uiop->uio_resid)
804 if (strcmp(dirent
[all...]

Completed in 41 milliseconds