HomeSort by relevance Sort by last modified time
    Searched refs:stat (Results 1 - 25 of 2986) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/File/
stat.t 12 eval { my @n = stat "TEST" };
14 unless ($hasst) { plan skip_all => "no stat"; exit 0 }
17 unless ($hasst) { plan skip_all => "no sys/stat.h"; exit 0 }
18 our @stat = stat "TEST"; # This is the function stat.
19 unless (@stat) { plan skip_all => "1..0 # Skip: no file TEST"; exit 0 }
24 use_ok( 'File::stat' );
26 my $stat = File::stat::stat( "TEST" ); # This is the OO stat
    [all...]
  /onnv/onnv-gate/usr/src/ucbhead/sys/
wait.h 123 * 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) (WLOBYTE(stat) > 0 && WHIBYTE(stat) == 0
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
wait.h 68 * macros for stat return from wait functions
78 #define WLOBYTE(stat) ((int)((stat)&0377))
79 #define WHIBYTE(stat) ((int)(((stat)>>8)&0377))
80 #define WWORD(stat) ((int)((stat))&0177777)
82 #define WIFCONTINUED(stat) (WWORD(stat) == WCONTFLG)
83 #define WCOREDUMP(stat) ((stat)&WCOREFLG
    [all...]
  /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/4.2/
stat.c 30 #include <sys/stat.h>
34 int stat(path, buf) function
36 struct stat *buf;
44 struct stat *buf;
50 if ((buf == (struct stat*)0) || (buf == (struct stat*)-1)) {
60 struct stat *buf;
67 struct stat *buf;
  /onnv/onnv-gate/usr/src/cmd/mdb/intel/libstand/
stat.c 30 * 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)
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
lstat.c 34 lstat(const char* path, struct stat* st)
36 return(stat(path, st));
  /onnv/onnv-gate/usr/src/uts/intel/sys/
stat_impl.h 43 * The implementation specific header for <sys/stat.h>
44 * When compiling outside of the large file environment, the *stat source
45 * symbols must lead to calls to corresponding _x*stat functions that supply
46 * an initial version number argument identifying which binary stat structure
48 * intermediate _x*stat functions and version numbers are unnecessary.
57 extern int fstatat(int, const char *, struct stat *, int);
61 static int fstat(int, struct stat *);
62 static int stat(const char *_RESTRICT_KYWD, struct stat *_RESTRICT_KYWD);
63 int _fxstat(const int, int, struct stat *);
135 stat(const char *_RESTRICT_KYWD _path, struct stat *_RESTRICT_KYWD _buf) function
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/common/sys/
stat.s 30 .file "stat.s"
32 /* C library -- stat */
33 /* int stat (const char *path, struct stat *buf); */
38 ANSI_PRAGMA_WEAK(stat,function)
47 SYSCALL_RVAL1(stat)
49 SET_SIZE(stat)
  /onnv/onnv-gate/usr/src/uts/sparc/sys/
stat_impl.h 40 * 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();
  /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/sys5/
stat.c 31 #include <sys/stat.h>
36 int stat(path, buf) function
38 struct stat *buf;
45 struct stat *buf;
51 if ((buf == (struct stat*)0) || (buf == (struct stat*)-1)) {
61 struct stat *buf;
68 struct stat *buf;
  /onnv/onnv-gate/usr/src/lib/libc/inc/
nlspath_checks.h 32 #include <sys/stat.h>
  /onnv/onnv-gate/usr/src/tools/cscope-fast/
vpstat.c 33 /* 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) {
mygetwd.c 33 #include <sys/types.h> /* needed by stat.h */
34 #include <sys/stat.h> /* stat */
48 struct stat d_sb; /* current directory status */
49 struct stat tmp_sb; /* temporary stat buffer */
53 if (stat(".", &d_sb) < 0) {
58 stat(pwd, &tmp_sb) == 0 &&
  /onnv/onnv-gate/usr/src/lib/libast/amd64/include/ast/
ast_param.h 28 #include <sys/stat.h>
  /onnv/onnv-gate/usr/src/lib/libast/amd64/src/lib/libast/
ast_param.h 7 #include <sys/stat.h>
  /onnv/onnv-gate/usr/src/lib/libast/i386/include/ast/
ast_param.h 28 #include <sys/stat.h>
  /onnv/onnv-gate/usr/src/lib/libast/i386/src/lib/libast/
ast_param.h 7 #include <sys/stat.h>
  /onnv/onnv-gate/usr/src/lib/libast/sparc/include/ast/
ast_param.h 28 #include <sys/stat.h>
  /onnv/onnv-gate/usr/src/lib/libast/sparc/src/lib/libast/
ast_param.h 7 #include <sys/stat.h>
  /onnv/onnv-gate/usr/src/lib/libast/sparcv9/include/ast/
ast_param.h 28 #include <sys/stat.h>
  /onnv/onnv-gate/usr/src/lib/libast/sparcv9/src/lib/libast/
ast_param.h 7 #include <sys/stat.h>
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
ftok.c 28 #include <sys/stat.h>
36 struct stat st;
38 return(stat(path, &st) < 0 ? (key_t)-1 :
  /onnv/onnv-gate/usr/src/lib/libast/common/path/
pathstat.c 29 * physical stat if logical fails
33 pathstat(const char* path, struct stat* st)
39 if (!stat(path, st)) return(0);
43 return(stat(path, st));
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
pname_to_uid.c 64 krb5_error_code stat; local
72 stat = krb5_init_context(&context);
73 if (stat) {
74 *minor = stat;
78 stat = krb5_aname_to_localname(context, (krb5_principal) pname,
82 if (stat)
  /onnv/onnv-gate/usr/src/cmd/acct/lib/
lintodev.c 34 #include <sys/stat.h>
43 struct stat sb;
45 if (stat(devtty, &sb) != -1 && (sb.st_mode&S_IFMT) == S_IFCHR)

Completed in 6529 milliseconds

1 2 3 4 5 6 7 8 91011>>