Home
last modified time | relevance | path

Searched refs:stb (Results 26 – 50 of 78) sorted by relevance

1234

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Dexpand.c255 struct stat stb; local
261 if (!expany || stat(path, &stb) >= 0) {
291 struct stat stb; local
301 if (fstat(dirp->dd_fd, &stb) < 0)
303 if (!ISDIR(stb.st_mode)) {
454 struct stat stb; local
521 if (stat(path, &stb) == 0 && ISDIR(stb.st_mode))
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dmemmove.S60 stb %i3, [%i0] ! move a byte to align src
70 stb %i4, [%i0] ! have to do bytes,
71 stb %i3, [%i0 + 1] ! don't know dst alingment
H A Dmemset.S65 stb %o1, [%o5] ! clear a byte
83 stb %o1, [%o5 + -1] ! we've already incremented the address
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dmemmove.S60 stb %i3, [%i0] ! move a byte to align src
70 stb %i4, [%i0] ! have to do bytes,
71 stb %i3, [%i0 + 1] ! don't know dst alingment
H A Dmemset.S99 stb %o1, [%o5] ! clear a byte
119 stb %o1, [%o5] ! clear a byte
135 stb %o1, [%o5 + -1] ! we've already incremented the address
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dglob.c204 struct stat stb; in expand() local
228 else if (stat(gpath, &stb) >= 0) { in expand()
255 struct stat stb; in matchdir() local
272 if (fstat(dirp->dd_fd, &stb) < 0) in matchdir()
274 if (!S_ISDIR(stb.st_mode)) { in matchdir()
417 struct stat stb; in amatch() local
508 if (stat(gpath, &stb) == 0 && S_ISDIR(stb.st_mode)) in amatch()
/illumos-gate/usr/src/lib/libc/capabilities/sun4u-us3/common/
H A Dmemcpy.S97 stb %o3, [%o0-1] ! store last byte
117 stb %o3, [%o0] ! write byte
133 stb %o3, [%o0] ! store a byte
344 stb %o3, [%o0] ! write byte
369 stb %o3, [%o0] ! write byte
372 stb %o3, [%o0+1]
375 stb %o3, [%o0-2]
378 stb %o3, [%o0-1]
388 stb %o3, [%o0] ! store one byte
463 stb %o4, [%o0]
[all …]
H A Dmemset.S70 stb %o1, [%o5 + -1] ! we've already incremented the address
/illumos-gate/usr/src/cmd/csh/
H A Dsh.c678 struct stat stb; in srcunit() local
680 if (fstat(unit, &stb) < 0 || in srcunit()
681 (stb.st_uid != uid && stb.st_gid != getgid())) { in srcunit()
1097 struct stat stb; in mailchk() local
1112 if (stat_(*vp, &stb) < 0) in mailchk()
1114 new = stb.st_mtime > time0.tv_sec; in mailchk()
1115 if (stb.st_size == 0 || stb.st_atime >= stb.st_mtime || in mailchk()
1116 (stb.st_atime <= chktim && stb.st_mtime <= chktim) || in mailchk()
H A Dsh.glob.c177 struct stat stb; in expand() local
207 else if (lstat_(gpath, &stb) >= 0) { in expand()
234 struct stat stb; in matchdir_() local
256 if (fstat(dirp->dd_fd, &stb) < 0) in matchdir_()
258 if (!isdir(stb)) { in matchdir_()
391 struct stat stb; in amatch() local
483 if (stat_(gpath, &stb) == 0 && isdir(stb)) in amatch()
H A Dsh.exp.c514 struct stat stb; in exp6() local
527 if ((**vp == NULL) || isa(**vp, ANYOP) && stat_(**vp, &stb)) in exp6()
549 if (stat_(ep, &stb)) { in exp6()
556 i = (stb.st_mode & S_IFMT) == S_IFREG; in exp6()
560 i = (stb.st_mode & S_IFMT) == S_IFDIR; in exp6()
564 i = stb.st_size == 0; in exp6()
572 i = stb.st_uid == uid; in exp6()
H A Dsh.exec.c382 struct stat stb; in dohash() local
414 if (fstat(dirp->dd_fd, &stb) < 0 || !isdir(stb)) { in dohash()
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dalias.c396 struct stat stb; local
454 if (stat(map->map_file, &stb) < 0)
461 mtime = stb.st_mtime;
473 if (stat(buf, &stb) < 0 || stb.st_mtime < mtime || attimeout)
525 struct stat stb; local
543 fstat(sm_io_getinfo(af, SM_IO_WHAT_FD, NULL), &stb) < 0 ||
544 bitset(S_IWUSR|S_IWGRP|S_IWOTH, stb.st_mode))
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.rwhod.c363 struct stat stb; in onalrm() local
378 (void) stat(UTMPX_FILE, &stb); in onalrm()
379 entries = stb.st_size / sizeof (struct futmpx); in onalrm()
380 if ((stb.st_mtime != utmpxtime) || (entries > utmpxent)) { in onalrm()
381 utmpxtime = stb.st_mtime; in onalrm()
431 if (stat(we->we_utmp.out_line, &stb) >= 0) in onalrm()
432 we->we_idle = htonl(now - stb.st_atime); in onalrm()
/illumos-gate/usr/src/lib/libsocket/inet/
H A Druserpass.c154 struct stat64 stb; in rnetrc() local
204 if (fstat64(fileno(d->cfile), &stb) >= 0 && in rnetrc()
205 (stb.st_mode & 077) != 0) { in rnetrc()
/illumos-gate/usr/src/uts/sun4u/cpu/
H A Dcheetah_copy.S994 stb %o3, [%o1 + 1]
997 stb %o3, [%o1 - 2]
1008 stb %o3, [%o1]
1014 stb %o3, [%o1 + 2]
1049 stb %o3, [%o1]
1306 stb SRC, [DST]
1310 stb SRC, [DST + 1]
1313 stb SRC, [DST - 2]
2633 stb %o3, [%o1 + 1]
2692 stb %o3, [%o1]
[all …]
H A Dopl_olympus_copy.S951 stb %o3, [%o1 + 1]
954 stb %o3, [%o1 - 2]
965 stb %o3, [%o1]
1003 stb %o3, [%o1]
1260 stb SRC, [DST]
1264 stb SRC, [DST + 1]
1267 stb SRC, [DST - 2]
2558 stb %o3, [%o1 + 1]
2562 stb %o3, [%o1 - 2]
2617 stb %o3, [%o1]
[all …]
/illumos-gate/usr/src/lib/libc/capabilities/sun4v/common/
H A Dmemset.S99 1: stb %o1, [%o5] ! there is at least 1 byte to set
219 stb %o1, [%o5] ! clear a byte
239 stb %o1, [%o5]
H A Dmemcpy.S234 stb %g1, [%o5+%o4] ! store one byte into dest
281 stb %g1, [%o5+%o4] ! store one byte
310 stb %o4, [%o0]
790 stb %o3, [%o0] ! move a byte to align src
800 stb %o4, [%o0] ! have to do bytes,
801 stb %o3, [%o0 + 1] ! don't know dst alignment
2128 stb %o3, [%g5] ! move a byte to align src
2138 stb %o4, [%g5] ! have to do bytes,
2139 stb %o3, [%g5 + 1] ! don't know dst alingment
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dcrypt.c487 struct stat stb; in getalgbyname() local
512 if (fstat(configfd, &stb) < 0) { in getalgbyname()
521 if (stb.st_uid != (uid_t)0) { in getalgbyname()
530 if (stb.st_mode & S_IWGRP) { in getalgbyname()
535 if (stb.st_mode & S_IWOTH) { in getalgbyname()
/illumos-gate/usr/src/cmd/dtrace/test/tst/sparc/pid/
H A Dtst.embedded.S39 stb %g0, [%fp - 4]
H A Dtst.branch.S39 stb %g0, [%fp - 4]
/illumos-gate/usr/src/lib/libc/capabilities/sun4u/common/
H A Dmemset.S69 stb %o1, [%o5 + -1] ! we've already incremented the address
/illumos-gate/usr/src/uts/sun4/ml/
H A Dcopy.S79 stb %g1, [%o1] ! store byte
131 stb %g1, [%g4] ! store byte
/illumos-gate/usr/src/cmd/last/
H A Dlast.c131 struct stat stb; in main() local
249 (void) fstat(wtmp, &stb); in main()
250 bl = (stb.st_size + sizeof (buf)-1) / sizeof (buf); in main()

1234