| /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/synaptics/ |
| Makefile | 4 dtb-$(CONFIG_ARCH_BERLIN) += berlin4ct-stb.dtb
|
| /src/bin/rcp/ |
| util.c | 90 struct stat stb; local in function:verifydir 92 if (!stat(cp, &stb)) { 93 if (S_ISDIR(stb.st_mode)) 151 struct stat stb; local in function:allocbuf 155 if (fstat(fd, &stb) < 0) { 159 size = roundup(stb.st_blksize, blksize);
|
| rcp.c | 333 struct stat stb; local in function:source 347 if (fstat(fd, &stb)) { 351 switch (stb.st_mode & S_IFMT) { 356 rsource(name, &stb); 374 (long long)stb.st_mtimespec.tv_sec, 375 (long)stb.st_mtimespec.tv_nsec / 1000, 376 (long long)stb.st_atimespec.tv_sec, 377 (long)stb.st_atimespec.tv_nsec / 1000); 384 stb.st_mode & RCPMODEMASK, (long long)stb.st_size, last) 486 struct stat stb; local in function:sink [all...] |
| /src/sys/uvm/pmap/ |
| pmap_segtab.c | 196 * This is used when allocating or freeing a pmap_segtab_t. The stb 205 pmap_check_stb(pmap_segtab_t *stb, const char *caller, const char *why) 209 if (stb->seg_ppg[i] != NULL) { 213 UVMHIST_CALLARGS(pmapxtabhist, "stb=%#jx", 214 (uintptr_t)stb, 0, 0, 0); 216 if (stb->seg_ppg[j] != NULL) 217 printf("%s: stb->seg_ppg[%zu] = %p\n", 218 caller, j, stb->seg_ppg[j]); 221 caller, i, stb->seg_ppg[i], why); 302 pmap_segtab_t *stb = pmap->pm_segtab 644 pmap_segtab_t *stb; local in function:pmap_segtab_alloc 820 pmap_segtab_t *stb = *stb_p; local in function:pmap_segtab_release 1085 pmap_segtab_t *stb = pmap->pm_segtab; local in function:pmap_pdetab_reserve [all...] |
| /src/lib/libc/gen/ |
| scandir.c | 65 struct stat stb; local in function:dirsize 68 if (fstat(fd, &stb) == -1) 74 nlen = (size_t)(stb.st_size / _DIRENT_MINSIZE((struct dirent *)0)); 81 nlen = (size_t)(stb.st_size ? stb.st_size : 10);
|
| /src/usr.sbin/videomode/ |
| videomode.c | 93 struct stat stb; local in function:get_grf 98 if (fstat(0, &stb) == -1) 100 if (!S_ISCHR(stb.st_mode) || !isatty(0)) 102 if (major(stb.st_rdev) != 13) 105 (u_int)minor(stb.st_rdev) & 0x7);
|
| /src/usr.bin/rdist/ |
| server.c | 333 struct stat stb; local in function:sendf 347 if ((opts & FOLLOW ? stat(target, &stb) : lstat(target, &stb)) < 0) { 351 if ((u = update(rname, opts, &stb)) == 0) { 352 if (S_ISREG(stb.st_mode) && stb.st_nlink > 1) 353 (void) savelink(&stb); 357 if (pw == NULL || pw->pw_uid != stb.st_uid) 358 if ((pw = getpwuid(stb.st_uid)) == NULL) { 360 target, stb.st_uid) 710 struct stat stb; local in function:query 756 struct stat stb; local in function:recvf 996 struct stat stb; local in function:hardlink 1052 struct stat stb; local in function:chkparent 1147 struct stat stb; local in function:rmchk 1230 struct stat stb; local in function:clean 1304 struct stat stb; local in function:removeit [all...] |
| docmd.c | 381 struct stat stb; local in function:dodcolon 390 if (stat(stamp, &stb) < 0) { 395 printf("%s: %lu\n", stamp, (u_long)stb.st_mtime); 398 lastmod = stb.st_mtime; 436 struct stat stb; local in function:cmptime 459 if (access(name, 4) < 0 || stat(name, &stb) < 0) { 464 switch (stb.st_mode & S_IFMT) { 469 rcmptime(&stb); 477 if (stb.st_mtime > lastmod) 528 struct stat stb; local in function:notify [all...] |
| expand.c | 269 struct stat stb; local in function:expsh 275 if (!expany || stat(path, &stb) >= 0) { 304 struct stat stb; local in function:matchdir 314 if (fstat(dirp->dd_fd, &stb) < 0) 316 if (!S_ISDIR(stb.st_mode)) { 443 struct stat stb; local in function:amatch 510 if (stat(path, &stb) == 0 && S_ISDIR(stb.st_mode)) {
|
| /src/sys/arch/amigappc/amigappc/ |
| locore.S | 120 stb 9,P5_REG_RESET(5) 129 stb 8,0xd00(7) /* CIAB icr */ 130 stb 8,0x1d01(7) /* CIAA icr */ 145 stb 0,P5_INT_LVL(5) 148 stb 9,P5_REG_INT(5) /* PPC is master CPU */ 151 stb 8,P5_IPL_EMU(5) /* enable interrupts */ 154 stb 7,P5_IPL_EMU(5) /* all levels */
|
| /src/sys/arch/atari/stand/libsa/ |
| diskio.c | 96 daddr_t stb = dd->rst + dblk; local in function:rootstrategy 99 if ((flag == F_READ) && !(size & 511) && (stb + nb <= dd->rend)) { 100 if (!dd->rds(buf, stb, nb)) {
|
| /src/sys/miscfs/fdesc/ |
| fdesc_vnops.c | 331 struct stat stb; local in function:fdesc_attr 352 memset(&stb, 0, sizeof(stb)); 353 error = (*fp->f_ops->fo_stat)(fp, &stb); 370 vap->va_mode = stb.st_mode; 371 vap->va_nlink = stb.st_nlink; 372 vap->va_uid = stb.st_uid; 373 vap->va_gid = stb.st_gid; 374 vap->va_fsid = stb.st_dev; 375 vap->va_fileid = stb.st_ino [all...] |
| /src/common/lib/libc/arch/hppa/atomic/ |
| atomic_cas_up.S | 66 stb %arg2, 0(%arg0)
|
| /src/usr.sbin/lpr/lpd/ |
| printjob.c | 147 struct stat stb; local in function:printjob 183 if (stat(LO, &stb) == 0 && (stb.st_mode & S_IXUSR)) 229 if (stb.st_mode & S_IXOTH) { /* reset queue flag */ 230 stb.st_mode &= ~S_IXOTH; 231 if (fchmod(lfd, stb.st_mode & 0777) < 0) 243 if (stat(q->q_name, &stb) < 0) 259 if (fstat(lfd, &stb) == 0) { 261 if (stb.st_mode & S_IXUSR) 264 if (stb.st_mode & S_IXOTH) 545 struct stat stb; local in function:print 888 struct stat stb; local in function:sendfile 1128 struct stat stb; local in function:sendmail [all...] |
| /src/sys/arch/sparc64/sparc64/ |
| bsd_fdintr.s | 133 stb %l7, [R_buf] ! *fdc->sc_bufp = *reg_fifo 137 stb %l7, [R_fifo] ! *reg_fifo = *fdc->sc_bufp 152 stb %l7, [%l6] 163 stb %l7, [%l6] 182 stb %l7, [R_fifo] 206 stb %l7, [R_stat] 223 stb %l6, [%l7 + %lo(INTREG_ADDR)]
|
| /src/usr.bin/last/ |
| want.c | 72 struct stat stb; /* stat of file for sz */ local in function:wtmp 129 if (fstat(wfd, &stb) == -1) 131 if (!S_ISREG(stb.st_mode)) 134 seentime = stb.st_mtime; 138 offset = stb.st_size;
|
| /src/lib/libcompat/4.3/ |
| ruserpass.c | 101 struct stat stb; local in function:ruserpass 171 fstat(fileno(cfile), &stb) >= 0 && 172 (stb.st_mode & 077) != 0) { 184 if (fstat(fileno(cfile), &stb) >= 0 185 && (stb.st_mode & 077) != 0) {
|
| /src/usr.bin/ftp/ |
| ruserpass.c | 103 struct stat stb; local in function:ruserpass 160 fstat(fileno(cfile), &stb) >= 0 && 161 (stb.st_mode & 077) != 0) { 172 if (fstat(fileno(cfile), &stb) >= 0 173 && (stb.st_mode & 077) != 0) {
|
| /src/common/lib/libc/arch/sparc/string/ |
| bzero.S | 102 * in order to use anything `better' than stb. 113 stb %o2, [%o0 + %o1] ! addr[len] = 0; 125 stb %o2, [%o0] ! *addr = 0; 172 stb %o2, [%o0] ! *addr = 0;
|
| /src/sys/arch/sparc/sparc/ |
| bsd_fdintr.s | 50 stb %l6, [%l5 + %lo(INTRREG_VA)] 82 stb %l7, [%l6 + %lo(AUXREG_VA) + 3]; 88 stb %l7, [%l6 + %lo(AUXREG_VA) + 3]; 95 stb %l7, [%l6 + %lo(AUXREG_VA) + 3]; 241 stb %l7, [R_buf] ! *fdc->sc_bufp = *reg_fifo 245 stb %l7, [R_fifo] ! *reg_fifo = *fdc->sc_bufp 273 stb %l7, [R_fifo] 298 stb %l7, [R_stat]
|
| /src/bin/csh/ |
| exp.c | 474 struct stat stb; local in function:exp6 485 if (isa(**vp, ANYOP) && stat(short2str(**vp), &stb)) 504 lstat(short2str(ep), &stb) : stat(short2str(ep), &stb)) { 510 i = S_ISDIR(stb.st_mode); 516 i = S_ISREG(stb.st_mode); 520 i = S_ISLNK(stb.st_mode); 526 i = stb.st_uid == (uid_t)uid; 530 i = S_ISFIFO(stb.st_mode); 537 i = S_ISSOCK(stb.st_mode) [all...] |
| /src/common/lib/libc/arch/sparc/atomic/ |
| atomic_cas_up.S | 64 stb %o2, [%o0] ! (in the delay slot)
|
| /src/lib/libc/arch/powerpc64/string/ |
| bzero.S | 52 stb 0, 0(9) # byte-at-a-time loop
|
| /src/sys/arch/amiga/stand/bootblock/ppcboot/ |
| kickstart.S | 46 stb 14,0xf60000@l(13)
|
| /src/sys/lib/libkern/arch/powerpc/ |
| memset.S | 76 stb r_val, 0(r_dst)
|