HomeSort by: relevance | last modified time | path
    Searched defs:stat (Results 1 - 25 of 463) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/lib/libsa/
stat.c 1 /* $NetBSD: stat.c,v 1.7 2007/11/24 13:20:57 isaki Exp $ */
31 * @(#)stat.c 8.1 (Berkeley) 6/11/93
37 stat(const char *str, struct stat *sb) function
  /src/external/bsd/byacc/dist/test/
calc.y 28 | list stat '\n'
33 stat : expr label
calc2.y 35 | list stat '\n'
40 stat : expr label
calc3.y 38 | list stat '\n'
43 stat : expr label
calc_code_all.y 35 | list stat '\n'
40 stat : expr label
calc_code_default.y 31 | list stat '\n'
36 stat : expr label
calc_code_imports.y 31 | list stat '\n'
36 stat : expr label
calc_code_provides.y 31 | list stat '\n'
36 stat : expr label
calc_code_requires.y 31 | list stat '\n'
36 stat : expr label
calc_code_top.y 31 | list stat '\n'
36 stat : expr label
code_calc.y 32 | list stat '\n'
37 stat : expr label
err_syntax27.y 38 | list stat '\n'
43 stat : expr label
ok_syntax1.y 66 | list stat '\n'
71 stat : expr label
pure_calc.y 34 | list stat '\n'
39 stat : expr label
quote_calc.y 35 | list stat '\n'
40 stat : expr label
quote_calc2.y 35 | list stat '\n'
40 stat : expr label
quote_calc3.y 35 | list stat '\n'
40 stat : expr label
quote_calc4.y 35 | list stat '\n'
40 stat : expr label
  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
system.c 36 int stat; local
41 stat = system (cmd);
44 *status = stat;
54 GFC_INTEGER_4 stat; local
55 system_sub (fcmd, &stat, cmd_len);
56 return stat;
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
system.c 36 int stat; local
41 stat = system (cmd);
44 *status = stat;
54 GFC_INTEGER_4 stat; local
55 system_sub (fcmd, &stat, cmd_len);
56 return stat;
  /src/external/ibm-public/postfix/dist/src/master/
master_proto.c 70 MASTER_STATUS stat; local
78 stat.pid = pid;
79 stat.gen = generation;
80 stat.avail = status;
82 if (write(MASTER_STATUS_FD, (void *) &stat, sizeof(stat)) != sizeof(stat)) {
  /src/external/ibm-public/postfix/dist/src/util/
warn_stat.h 10 /* baby-sit stat() error returns
20 #define stat(p, s) warn_stat((p), (s)) macro
25 extern int warn_stat(const char *path, struct stat *);
26 extern int warn_lstat(const char *path, struct stat *);
27 extern int warn_fstat(int, struct stat *);
wrap_stat.c 7 /* mockable stat/lstat wrappers
13 /* struct stat *st)
17 /* struct stat *st)
22 /* By default this module redirects stat() and lstat() calls to
24 /* mocks. This arrangement prevents mock stat() or lstat() functions
25 /* from interfering with stat() or lstat() calls made by system
40 #include <sys/stat.h>
49 int wrap_stat(const char *path, struct stat *st)
51 #undef stat macro
52 return (stat (path, st))
    [all...]
wrap_stat.h 10 /* mockable stat/lstat wrappers
19 #include <sys/stat.h>
25 extern int wrap_stat(const char *, struct stat *);
26 extern int wrap_lstat(const char *, struct stat *);
28 #define stat(path, st) wrap_stat(path, st) macro
  /src/lib/libc/compat/gen/
compat_glob.c 11 #include <sys/stat.h>
13 #include <compat/sys/stat.h>
31 #define stat __compat_stat macro

Completed in 68 milliseconds

1 2 3 4 5 6 7 8 91011>>