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

1234567891011>>

/illumos-gate/usr/src/uts/common/sys/
H A Dwait.h67 * macros for stat return from wait functions
77 #define WLOBYTE(stat) ((int)((stat)&0377))
78 #define WHIBYTE(stat) ((int)(((stat)>>8)&0377))
79 #define WWORD(stat) ((int)((stat))&0177777)
81 #define WIFCONTINUED(stat) (WWORD(stat) == WCONTFLG)
82 #define WCOREDUMP(stat) ((sta
[all...]
/illumos-gate/usr/src/lib/smbsrv/libfksmbsrv/common/
H A Dvncache.h23 struct stat;
24 vnode_t *vncache_lookup(struct stat *);
25 vnode_t *vncache_enter(struct stat *, vnode_t *, char *, int);
H A Dfksmb_idmap.c56 smb_idmap_check(const char *s, idmap_stat stat) argument
58 if (stat != IDMAP_SUCCESS) {
62 cmn_err(CE_NOTE, "%s: %d", s, (int)stat);
76 idmap_stat stat; local
78 stat = smb_idmap_batch_create(&sib, 1, SMB_IDMAP_ID2SID);
79 if (stat != IDMAP_SUCCESS)
80 return (stat);
82 stat = smb_idmap_batch_getsid(sib.sib_idmaph, &sib.sib_maps[0],
85 if (stat != IDMAP_SUCCESS) {
87 return (stat);
114 idmap_stat stat; local
149 idmap_stat stat; local
225 idmap_stat stat; local
281 idmap_stat stat; local
342 idmap_stat stat = IDMAP_SUCCESS; local
[all...]
/illumos-gate/usr/src/tools/codesign/
H A Dsignproto.sh45 stat=$?
47 if [ $stat != 0 ]; then
49 exit $stat
/illumos-gate/usr/src/ucbhead/sys/
H A Dwait.h123 * macros for stat return from wait functions
133 #define WLOBYTE(stat) ((int)((stat)&0377))
134 #define WHIBYTE(stat) ((int)(((stat)>>8)&0377))
135 #define WWORD(stat) ((int)((stat))&0177777)
137 #define WIFEXITED(stat) (WLOBYTE(stat) == 0)
138 #define WIFSIGNALED(stat) (WLOBYT
[all...]
/illumos-gate/usr/src/lib/libbc/libc/sys/4.2/
H A Dstat.c28 #include <sys/stat.h>
32 int stat(path, buf) function
34 struct stat *buf;
42 struct stat *buf;
48 if ((buf == (struct stat*)0) || (buf == (struct stat*)-1)) {
58 struct stat *buf;
65 struct stat *buf;
/illumos-gate/usr/src/cmd/mdb/intel/libstand/
H A Dstat.c30 * We've cleverly designed things such that an #include of <sys/stat.h>
32 * the stat, lstat, and fstat functions, all of which call _xstat. It
37 #include <sys/stat.h>
42 _fxstat(const int ver, int fd, struct stat *st)
49 _xstat(const int ver, const char *path, struct stat *st)
56 _lxstat(const int ver, const char *path, struct stat *st)
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dlstat.c34 lstat(const char* path, struct stat* st)
36 return(stat(path, st));
/illumos-gate/usr/src/cmd/make/lib/vroot/
H A Dstat.cc28 #include <sys/stat.h>
30 extern int stat(const char *path, struct stat *buf);
37 vroot_result= stat(path, vroot_args.stat.buffer);
41 int stat_vroot(char *path, struct stat *buffer, pathpt vroot_path, pathpt vroot_vroot)
43 vroot_args.stat.buffer= buffer;
/illumos-gate/usr/src/test/libc-tests/tests/
H A Dquick_exit.ksh43 typeset stat=$1
44 $qe_status32 $stat
45 if [[ $? -ne $stat ]]; then
46 fatal "Test failed: Expected $qestatus32 to exit $stat " \
50 $qe_status64 $stat
51 if [[ $? -ne $stat ]]; then
52 fatal "Test failed: Expected $qestatus64 to exit $stat " \
/illumos-gate/usr/src/uts/intel/sys/
H A Dstat_impl.h38 * The implementation specific header for <sys/stat.h>
45 extern int fstat(int, struct stat *);
46 extern int stat(const char *_RESTRICT_KYWD, struct stat *_RESTRICT_KYWD);
50 extern int fstatat(int, const char *, struct stat *, int);
54 extern int lstat(const char *_RESTRICT_KYWD, struct stat *_RESTRICT_KYWD);
61 extern int stat();
84 extern int _fxstat(const int, int, struct stat *);
85 extern int _xstat(const int, const char *, struct stat *);
86 extern int _lxstat(const int, const char *, struct stat *);
[all...]
/illumos-gate/usr/src/uts/sparc/sys/
H A Dstat_impl.h40 * The implementation specific header for <sys/stat.h>
47 extern int fstat(int, struct stat *);
48 extern int stat(const char *_RESTRICT_KYWD, struct stat *_RESTRICT_KYWD);
51 extern int fstatat(int, const char *, struct stat *, int);
55 extern int lstat(const char *_RESTRICT_KYWD, struct stat *_RESTRICT_KYWD);
61 extern int fstat(), stat();
/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_idmap.c53 smb_idmap_check(const char *s, idmap_stat stat) argument
55 if (stat != IDMAP_SUCCESS) {
59 syslog(LOG_ERR, "%s: %s", s, idmap_stat2string(stat));
73 idmap_stat stat; local
75 stat = smb_idmap_batch_create(&sib, 1, SMB_IDMAP_ID2SID);
76 if (stat != IDMAP_SUCCESS)
77 return (stat);
79 stat = smb_idmap_batch_getsid(sib.sib_idmaph, &sib.sib_maps[0],
82 if (stat != IDMAP_SUCCESS) {
84 return (stat);
111 idmap_stat stat; local
146 idmap_stat stat; local
224 idmap_stat stat; local
280 idmap_stat stat; local
341 idmap_stat stat = IDMAP_SUCCESS; local
[all...]
/illumos-gate/usr/src/lib/libbc/libc/sys/sys5/
H A Dstat.c29 #include <sys/stat.h>
34 int stat(path, buf) function
36 struct stat *buf;
43 struct stat *buf;
49 if ((buf == (struct stat*)0) || (buf == (struct stat*)-1)) {
59 struct stat *buf;
66 struct stat *buf;
/illumos-gate/usr/src/lib/libc/inc/
H A Dnlspath_checks.h32 #include <sys/stat.h>
/illumos-gate/usr/src/tools/cscope-fast/
H A Dvpstat.c33 /* vpstat - view path version of the stat system call */
36 #include <sys/stat.h>
41 vpstat(char *path, struct stat *statp)
47 if ((returncode = stat(path, statp)) == -1 && path[0] != '/') {
51 if ((returncode = stat(buf, statp)) != -1) {
/illumos-gate/usr/src/lib/libast/amd64/include/ast/
H A Dast_param.h28 #include <sys/stat.h>
/illumos-gate/usr/src/lib/libast/amd64/src/lib/libast/
H A Dast_param.h7 #include <sys/stat.h>
/illumos-gate/usr/src/lib/libast/i386/include/ast/
H A Dast_param.h28 #include <sys/stat.h>
/illumos-gate/usr/src/lib/libast/i386/src/lib/libast/
H A Dast_param.h7 #include <sys/stat.h>
/illumos-gate/usr/src/lib/libast/sparc/include/ast/
H A Dast_param.h28 #include <sys/stat.h>
/illumos-gate/usr/src/lib/libast/sparc/src/lib/libast/
H A Dast_param.h7 #include <sys/stat.h>
/illumos-gate/usr/src/lib/libast/sparcv9/include/ast/
H A Dast_param.h28 #include <sys/stat.h>
/illumos-gate/usr/src/lib/libast/sparcv9/src/lib/libast/
H A Dast_param.h7 #include <sys/stat.h>
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dftok.c28 #include <sys/stat.h>
36 struct stat st;
38 return(stat(path, &st) < 0 ? (key_t)-1 :

Completed in 132 milliseconds

1234567891011>>