HomeSort by relevance Sort by last modified time
    Searched defs:stbuf (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /onnv/onnv-gate/usr/src/cmd/mail/
cksaved.c 51 struct stat stbuf; local
61 if ((stat(save, &stbuf) != 0) || (stbuf.st_size == 0))
70 if (stat(mail, &stbuf) != 0) {
copyback.c 47 struct stat stbuf; local
54 stat(mailfile, &stbuf);
55 mailmode = stbuf.st_mode;
60 if (stbuf.st_size != let[nlet].adr) {
80 let[++nlet].adr = stbuf.st_size;
92 if ((stbuf.st_uid != my_euid) && (stbuf.st_uid != my_uid)) {
170 delempty(stbuf.st_mode, mailfile);
printmail.c 45 struct stat stbuf; local
52 stbufp = &stbuf;
136 else if ((malf == NULL) || (stbuf.st_size == 0)) {
  /onnv/onnv-gate/usr/src/cmd/acct/
accton.c 80 struct stat stbuf; local
81 struct stat *s = &stbuf;
  /onnv/onnv-gate/usr/src/cmd/lp/lib/msgs/
mconnect.c 69 struct stat stbuf; local
88 Again: if (stat(path, &stbuf) == -1)
90 if ((stbuf.st_mode & S_IFMT) != S_IFIFO) {
  /onnv/onnv-gate/usr/src/lib/libc/port/stdio/
_findbuf.c 60 struct stat64 stbuf; /* used to get file system block size */ local
85 if (fstat64(fd, &stbuf) == 0 && stbuf.st_blksize > 0)
86 size = stbuf.st_blksize;
  /onnv/onnv-gate/usr/src/lib/libgen/common/
copylist.c 83 struct stat64 stbuf; local
86 if (stat64(filenm, &stbuf) == -1) {
89 *szptr = stbuf.st_size;
91 return (common_copylist(filenm, stbuf.st_size));
99 struct stat64 stbuf; local
102 if (stat64(filenm, &stbuf) == -1) {
106 if (stbuf.st_size > LONG_MAX) {
111 *szptr = (off_t)stbuf.st_size;
113 return (common_copylist(filenm, stbuf.st_size));
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.talkd/
process.c 187 struct stat stbuf; local
215 if (fstat(tfd, &stbuf) < 0 ||
216 (stbuf.st_mode&020) == 0) {
  /onnv/onnv-gate/usr/src/uts/i86pc/os/
smb_dev.c 68 caddr_t stbuf, bios, p, q; local
104 stbuf = smb_alloc(ep->smbe_stlen);
105 bcopy(bios, stbuf, ep->smbe_stlen);
107 shp = smbios_bufopen(ep, stbuf, ep->smbe_stlen, version, flags, &err);
110 smb_free(stbuf, ep->smbe_stlen);
  /onnv/onnv-gate/usr/src/cmd/boot/fiocompress/
fiocompress.c 130 struct stat stbuf; local
141 if (fstat(fd, &stbuf) == -1) {
146 srclen = stbuf.st_size;
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.lib/in.ripngd/
trace.c 85 struct stat stbuf; local
89 if (stat(file, &stbuf) >= 0 && (stbuf.st_mode & S_IFMT) != S_IFREG)
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
ftprestart.c 107 struct stat stbuf; local
112 if (stat(path, &stbuf) == 0) {
  /onnv/onnv-gate/usr/src/cmd/lp/cmd/lpsched/
lpfsck.c 57 struct stat stbuf; local
126 if (Lstat(Lp_Temp, &stbuf) == 0)
127 switch (stbuf.st_mode & S_IFMT) {
233 struct stat stbuf; local
241 exist = (stat(path, &stbuf) == 0);
256 if (exist && !S_ISDIR(stbuf.st_mode)) {
269 if (exist && !S_ISREG(stbuf.st_mode)) {
286 !S_ISREG(stbuf.st_mode) && !S_ISFIFO(stbuf.st_mode)) {
  /onnv/onnv-gate/usr/src/cmd/picl/plugins/common/piclevent/
piclevent.c 184 struct stat stbuf; local
195 if (stat(PICLEVENT_DOOR, &stbuf) < 0) {
  /onnv/onnv-gate/usr/src/cmd/streams/log/
strclean.c 60 struct stat stbuf; local
102 if ((stat(logname, &stbuf) < 0) || !(stbuf.st_mode & DIRECTORY)) {
  /onnv/onnv-gate/usr/src/cmd/tcpd/
scaffold.c 195 struct stat stbuf; local
210 (void) check_path(buf[0] ? buf : "/", &stbuf);
  /onnv/onnv-gate/usr/src/lib/cfgadm_plugins/fp/common/
cfga_rep.c 228 struct stat stbuf; local
266 if (fstat(fd, &stbuf) == -1) {
272 filesize = size = stbuf.st_size;
  /onnv/onnv-gate/usr/src/lib/libgss/
g_utils.c 66 struct stat stbuf; local
70 if (stat(QOP_NUM_FILE, &stbuf) != 0 || stbuf.st_mtime < last) {
76 last = stbuf.st_mtime;
  /onnv/onnv-gate/usr/src/lib/libnsl/nis/cache/
client_cache.cc 340 struct stat stbuf; local
343 fstat(curFd, &stbuf) == -1) {
347 curRdev = stbuf.st_rdev;
357 struct stat stbuf; local
362 if (fstat(curFd, &stbuf) == -1) {
371 if (curRdev != stbuf.st_rdev) {
374 curFd, curRdev, stbuf.st_rdev);
  /onnv/onnv-gate/usr/src/lib/libsmbios/common/
smb_lib.c 57 void *stbuf; local
70 if ((stbuf = smb_alloc(ep->smbe_stlen)) == NULL)
73 if ((n = pread64(fd, stbuf, ep->smbe_stlen,
75 smb_free(stbuf, ep->smbe_stlen);
79 shp = smbios_bufopen(ep, stbuf, ep->smbe_stlen, version, flags, errp);
84 smb_free(stbuf, ep->smbe_stlen);
95 void *stbuf, *bios, *p, *q; local
130 if ((stbuf = smb_alloc(ep->smbe_stlen)) == NULL) {
135 bcopy((char *)bios + pgoff, stbuf, ep->smbe_stlen);
137 shp = smbios_bufopen(ep, stbuf, ep->smbe_stlen, version, flags, errp)
    [all...]
  /onnv/onnv-gate/usr/src/ucbcmd/chown/
chown.c 57 struct stat stbuf; variable in typeref:struct:stat
139 if (lstat(argv[c], &stbuf) < 0) {
143 if (rflag && ((stbuf.st_mode&S_IFMT) == S_IFDIR)) {
  /onnv/onnv-gate/usr/src/cmd/bnu/
anlwrk.c 85 struct stat stbuf; local
108 (void) fstat(fileno(fp), &stbuf); local
109 Nstat.t_qtime = stbuf.st_mtime;
  /onnv/onnv-gate/usr/src/cmd/chgrp/
chgrp.c 66 static struct stat stbuf; variable in typeref:struct:stat
236 if (lstat(argv[c], &stbuf) < 0) {
240 if (rflag && ((stbuf.st_mode & S_IFMT) == S_IFLNK)) {
318 } else if (rflag && ((stbuf.st_mode & S_IFMT) == S_IFDIR)) {
323 if (add_tnode(&tree, stbuf.st_dev,
324 stbuf.st_ino) == 1) {
329 stbuf.st_mode & ~S_IFMT);
348 if ((stbuf.st_mode & S_IFMT) == S_IFDIR) {
350 stbuf.st_mode & ~S_IFMT);
  /onnv/onnv-gate/usr/src/cmd/chown/
chown.c 61 static struct stat stbuf; variable in typeref:struct:stat
267 if (lstat(argv[c], &stbuf) < 0) {
271 if (rflag && ((stbuf.st_mode & S_IFMT) == S_IFLNK)) {
336 } else if (rflag && ((stbuf.st_mode & S_IFMT) == S_IFDIR)) {
341 if (add_tnode(&tree, stbuf.st_dev,
342 stbuf.st_ino) == 1) {
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
auth.c 88 char stbuf[FTPBUFSIZ]; local
123 (void) snprintf(stbuf, FTPBUFSIZ, "%s@%s",
127 "Trying to authenticate to <%s>\n", stbuf);
129 send_tok.value = stbuf;
130 send_tok.length = strlen(stbuf) + 1;
136 (void) fprintf(stderr, "name parsed <%s>\n", stbuf);

Completed in 4079 milliseconds

1 2 3 4 5 6