Searched refs:stat (Results 1 - 25 of 283) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dremove.c49 #include <sys/stat.h>
59 struct stat sb;
H A Dfseek.c49 #include <sys/stat.h>
H A Dgettemp.c54 #include <sys/stat.h>
80 struct stat sbuf;
132 if (stat(path, &sbuf))
H A Dfopen.c50 #include <sys/stat.h>
74 struct stat st;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A DEfiSysCall.h19 struct stat; Structure declared in <sys/stat.h>
38 ############### System Calls which are also declared in stat.h.
40 int fstat (int, struct stat *);
41 int lstat (const char *, struct stat *);
42 int stat (const char *, void *);
71 struct stat; /* Structure declared in <sys/stat.h> */
278 /* These system calls are also declared in stat.h */
283 int fstat (int, struct stat *);
[all...]
H A Dstat.h44 stat.h 8.12 (Berkeley) 8/17/94
45 NetBSD: stat.h,v 1.54 2006/02/24 22:01:30 thorpej Exp
54 struct stat { struct
149 #define S_BLKSIZE 512 ///< block size used in the stat struct
186 int fstat (int, struct stat *);
190 int lstat (const char *, struct stat *);
194 int stat (const char *, struct stat *);
/vbox/src/libs/libxml2-2.6.31/
H A Ddepcomp109 stat=$?
110 if test $stat -eq 0; then :
113 exit $stat
132 stat=$?
133 if test $stat -eq 0; then :
136 exit $stat
174 stat=$?
175 if test $stat -eq 0; then :
178 exit $stat
225 stat
[all...]
/vbox/src/VBox/Runtime/r3/posix/
H A DRTPathUserHome-posix.cpp36 #include <sys/stat.h>
84 struct stat st;
87 || stat(pPasswd->pw_dir, &st)
117 struct stat st;
118 if ( !stat(pszHome, &st)
H A Dsymlink-posix.cpp34 #include <sys/stat.h>
55 struct stat s;
74 struct stat s;
80 fRc = stat(pszNativeSymlink, &s) != 0
138 struct stat s;
184 struct stat s;
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Diccfix.c10 #include <sys/stat.h>
84 struct stat stat; local
97 if ( fstat ( fd, &stat ) < 0 ) {
103 elf = mmap ( NULL, stat.st_size, ( PROT_READ | PROT_WRITE ),
128 munmap ( elf, stat.st_size );
H A Deinfo.c26 #include <sys/stat.h>
56 struct stat stat; local
69 if ( fstat ( fd, &stat ) < 0 ) {
70 eprintf ( "Cannot stat \"%s\": %s\n",
74 len = stat.st_size;
/vbox/src/VBox/Runtime/include/internal/
H A Dfs.h32 # include <sys/stat.h>
44 void rtFsConvertStatToObjInfo(PRTFSOBJINFO pObjInfo, const struct stat *pStat, const char *pszName, unsigned cbName);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/
H A Daccess.c18 #include <sys/stat.h>
51 struct stat FileStat;
66 retval = stat(Path, &FileStat);
/vbox/src/VBox/Main/src-helper-apps/
H A DVBoxVolInfo.cpp31 #include <sys/stat.h>
85 struct stat st;
87 if (!stat(path, &st))
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/obsolete/
H A Dprobslet.h176 #include <stat.h>
178 #include <sys/stat.h>
181 NSPR_API(PRInt32) PR_Stat(const char *path, struct stat *buf);
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dstat.c54 #include <sys/stat.h>
63 char *filename = "..\\stat.c";
78 struct stat finfo;
82 stat(filename, &finfo);
116 Measure(statStat, "time to call stat()");
/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsFileSpecBeOS.cpp41 #include <sys/stat.h>
95 struct stat st;
96 return !mPath.IsEmpty() && 0 == stat(mPath, &st);
103 struct stat st;
104 if (!mPath.IsEmpty() && stat(mPath, &st) == 0)
114 struct stat st;
115 if (!mPath.IsEmpty() && stat(mPath, &st) == 0)
124 struct stat st;
125 return !mPath.IsEmpty() && stat(mPath, &st) == 0 && S_ISREG(st.st_mode);
132 struct stat s
[all...]
H A DnsFileSpecUnix.cpp42 #include <sys/stat.h>
160 struct stat st;
161 return !mPath.IsEmpty() && 0 == stat(mPath, &st);
168 struct stat st;
169 if (!mPath.IsEmpty() && stat(mPath, &st) == 0)
179 struct stat st;
180 if (!mPath.IsEmpty() && stat(mPath, &st) == 0)
189 struct stat st;
190 return !mPath.IsEmpty() && stat(mPath, &st) == 0 && S_ISREG(st.st_mode);
197 struct stat s
[all...]
H A DnsFileSpecOS2.cpp63 #include <sys/stat.h>
260 struct stat st;
261 return !mPath.IsEmpty() && 0 == stat(nsNSPRPath(*this), &st);
268 struct stat st;
269 if (!mPath.IsEmpty() && stat(nsNSPRPath(*this), &st) == 0)
279 struct stat st;
280 if (!mPath.IsEmpty() && stat(nsNSPRPath(*this), &st) == 0)
289 struct stat st;
291 return !mPath.IsEmpty() && 0 == stat(nsNSPRPath(*this), &st) && ( S_IFREG & st.st_mode);
293 return !mPath.IsEmpty() && 0 == stat(nsNSPRPat
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/md/
H A Dsunos4.h58 struct stat;
155 extern int lstat(const char *, struct stat *);
156 extern int fstat(int, struct stat *);
H A D_pcos.h75 #include <sys/stat.h>
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/sys/
H A Dstat.h82 struct stat { struct
157 static inline int fstat(int fd, struct stat* ptr) { return _fstat(fd, (struct _stat*)ptr); }
158 static inline int stat(const char* path, struct stat* ptr) { return _stat(path, (struct _stat*)ptr); } function
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dglob.h43 #include <sys/stat.h>
49 #define __gl_stat_t struct stat
63 * versions of closedir(3), readdir(3), opendir(3), stat(2)
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/misc/
H A Dtst.schrock.ksh42 '/usr/ccs/bin/nm /bin/ls' stat <<EOF
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsLocalFileUnix.h47 #include <sys/stat.h>
110 struct stat mCachedStat;

Completed in 141 milliseconds

1234567891011>>