HomeSort by relevance Sort by last modified time
    Searched defs:stat (Results 1 - 25 of 285) 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.pm 1 package File::stat;
13 @EXPORT = qw(stat lstat);
28 struct 'File::stat' => [
47 sub stat ($) { subroutine
49 my $st = populate(CORE::stat $arg);
59 return populate(CORE::stat $fh);
67 File::stat - by-name interface to Perl's built-in stat() functions
71 use File::stat;
72 $st = stat($file) or die "No $file: $!"
    [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/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/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)
copy_ccache.c 11 OM_uint32 stat; local
19 stat = krb5_gss_validate_cred(minor_status, cred_handle);
20 if (stat)
21 return(stat);
  /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/libnsl/rpc/
xdr_refer.c 69 bool_t stat; local
85 stat = (*proc)(xdrs, loc, LASTUNSIGNED);
91 return (stat);
xdr_array.c 73 bool_t stat = TRUE; local
109 for (i = 0; (i < c) && stat; i++) {
110 stat = (*elproc)(xdrs, target);
121 return (stat);
svc_auth_loopb.c 47 enum auth_stat stat; local
75 stat = AUTH_BADCRED;
86 stat = AUTH_BADCRED;
101 stat = AUTH_BADCRED;
107 stat = AUTH_BADCRED;
112 stat = AUTH_OK;
115 return (stat);
svc_auth_sys.c 61 enum auth_stat stat; local
89 stat = AUTH_BADCRED;
100 stat = AUTH_BADCRED;
115 stat = AUTH_BADCRED;
121 stat = AUTH_BADCRED;
126 stat = AUTH_OK;
129 return (stat);
xdr_sizeof.c 129 bool_t stat; local
156 stat = func(&x, data);
159 return (stat == TRUE ? (uint_t)x.x_handy : 0);
  /onnv/onnv-gate/usr/src/uts/common/rpc/
xdr_array.c 64 bool_t stat = TRUE; local
101 for (i = 0; (i < c) && stat; i++) {
102 stat = (*elproc)(xdrs, target, LASTUNSIGNED);
113 return (stat);
xdr_refer.c 71 bool_t stat; local
88 stat = (*proc)(xdrs, loc, LASTUNSIGNED);
94 return (stat);
xdr_sizeof.c 113 bool_t stat; local
140 stat = func(&x, data);
144 return (stat == TRUE ? (unsigned int)x.x_handy: 0);
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
gross.c 35 extern int fstat(int fd, struct stat* st)
44 extern int lstat(const char* path, struct stat* st)
53 extern int stat(const char* path, struct stat* st) function
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/IPC/SysV/
Msg.pm 18 package IPC::Msg::stat;
22 struct 'IPC::Msg::stat' => [
54 sub stat { subroutine
59 IPC::Msg::stat->new->unpack($data);
72 $ds = $self->stat
124 $ds = $msg->stat;
170 =item set ( STAT )
174 C<set> will set the following values of the C<stat> structure associated
182 C<set> accepts either a stat object, as returned by the C<stat> method
    [all...]
Semaphore.pm 19 package IPC::Semaphore::stat;
23 struct 'IPC::Semaphore::stat' => [
96 sub stat { subroutine
101 IPC::Semaphore::stat->new->unpack($data);
114 $ds = $self->stat
170 $ds = $sem->stat;
246 =item set ( STAT )
250 C<set> will set the following values of the C<stat> structure associated
257 C<set> accepts either a stat object, as returned by the C<stat> method
    [all...]
  /onnv/onnv-gate/usr/src/cmd/csh/
wait3.c 113 int stat = (status & 0377); local
117 stat <<= 8;
120 stat |= WCOREFLG;
126 stat <<= 8;
127 stat |= WSTOPFLG;
130 stat = WCONTFLG;
133 return (stat);
  /onnv/onnv-gate/usr/src/cmd/fs.d/cachefs/common/
stats_stats.c 38 #include <sys/stat.h>
46 kstat_t *stat; local
51 if (((stat = kstat_lookup(st->st_kstat_cookie,
53 (kstat_read(st->st_kstat_cookie, stat, NULL) < 0)) {
60 return (stat);
  /onnv/onnv-gate/usr/src/cmd/tip/
remote.c 35 int stat; local
41 if ((stat = rgetent(tbuf, host, sizeof (tbuf))) <= 0) {
64 (void) fprintf(stderr, stat == 0 ?
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_dh/backend/mech/
MICwrap.c 133 OM_uint32 stat; local
179 stat = __dh_seq_detection(cntx, mic->seqnum);
192 stat |= GSS_S_DUPLICATE_TOKEN;
194 return (stat);
319 OM_uint32 stat; local
386 stat = __dh_seq_detection(cntx, wrap->mic.seqnum);
396 stat |= GSS_S_DUPLICATE_TOKEN;
401 return (stat);
  /onnv/onnv-gate/usr/src/lib/libnsl/yp/
yp_update.c 73 enum clnt_stat stat; local
132 stat = clnt_call(client, proc,
136 if (stat != RPC_SUCCESS) {
  /onnv/onnv-gate/usr/src/lib/nsswitch/ad/common/
getspent.c 79 nss_status_t stat; local
119 stat = _nss_ad_marshall_data(be, argp);
120 return (_nss_ad_sanitize_status(be, argp, stat));
  /onnv/onnv-gate/usr/src/ucblib/libucb/port/sys/
wait4.c 145 int stat = (status & 0377); local
149 stat <<= 8;
152 stat |= WCOREFLG;
158 stat <<= 8;
159 stat |= WSTOPFLG;
162 stat = WCONTFLG;
165 return (stat);
  /onnv/onnv-gate/usr/src/uts/common/rpc/sec/
svc_authu.c 74 enum auth_stat stat; local
100 stat = AUTH_BADCRED;
111 stat = AUTH_BADCRED;
125 stat = AUTH_BADCRED;
131 stat = AUTH_BADCRED;
136 stat = AUTH_OK;
139 return (stat);

Completed in 480 milliseconds

1 2 3 4 5 6 7 8 91011>>