Home
last modified time | relevance | path

Searched refs:stat1 (Results 1 – 8 of 8) sorted by relevance

/dragonfly/bin/cpdup/
H A Dcpdup.c705 stat1 = &st1; in DoCopy()
728 if (S_ISREG(stat1->st_mode) && stat1->st_nlink > 1 && dpath) { in DoCopy()
813 if (S_ISLNK(stat1->st_mode) || S_ISDIR(stat1->st_mode)) { in DoCopy()
838 hc_chown(&DstHost, dpath, stat1->st_uid, stat1->st_gid); in DoCopy()
919 hc_chown(&DstHost, dpath, stat1->st_uid, stat1->st_gid) != 0 in DoCopy()
1035 hc_chown(&DstHost, dpath, stat1->st_uid, stat1->st_gid); in DoCopy()
1158 hc_chown(&DstHost, path, stat1->st_uid, stat1->st_gid); in DoCopy()
1176 if (DstRootPrivs ? stat1->st_flags : stat1->st_flags & UF_SETTABLE) in DoCopy()
1263 hc_lchown(&DstHost, path, stat1->st_uid, stat1->st_gid); in DoCopy()
1299 hc_lchown(&DstHost, dpath, stat1->st_uid, stat1->st_gid); in DoCopy()
[all …]
/dragonfly/sys/dev/disk/nata/
H A Data-lowlevel.c474 stat1 = ATA_S_BUSY; in ata_generic_reset()
529 if ((mask & 0x02) && (stat1 & ATA_S_BUSY) && in ata_generic_reset()
536 stat1 = ATA_IDX_INB(ch, ATA_STATUS); in ata_generic_reset()
540 stat1, err, lsb, msb); in ata_generic_reset()
542 timeout > (stat1 & ATA_S_BUSY ? 100 : 10)) in ata_generic_reset()
544 if (!(stat1 & ATA_S_BUSY)) { in ata_generic_reset()
549 else if (stat1 & ATA_S_READY) { in ata_generic_reset()
554 stat1 |= ATA_S_BUSY; in ata_generic_reset()
565 if (!(stat1 & ATA_S_BUSY) || (stat1 == 0xff && timeout > 10)) in ata_generic_reset()
572 if ((stat1 == 0xff) && (timeout > 20)) in ata_generic_reset()
[all …]
/dragonfly/usr.bin/systat/
H A Diostat.c82 static void stat1(int, uint64_t, uint64_t);
261 stat1(row++, diff_cp_time.cp_user, cp_total); in showiostat()
262 stat1(row++, diff_cp_time.cp_nice, cp_total); in showiostat()
263 stat1(row++, diff_cp_time.cp_sys, cp_total); in showiostat()
264 stat1(row++, diff_cp_time.cp_intr, cp_total); in showiostat()
265 stat1(row++, diff_cp_time.cp_idle, cp_total); in showiostat()
335 stat1(int row, uint64_t difference, uint64_t total) in stat1() function
/dragonfly/contrib/awk/
H A Dawkgram.y321 $$ = stat1(BREAK, NIL); }
323 $$ = stat1(CONTINUE, NIL); }
326 | EXIT pattern st { $$ = stat1(EXIT, $2); }
327 | EXIT st { $$ = stat1(EXIT, NIL); }
334 $$ = stat1(NEXT, NIL); }
337 $$ = stat1(NEXTFILE, NIL); }
338 | RETURN pattern st { $$ = stat1(RETURN, $2); }
339 | RETURN st { $$ = stat1(RETURN, NIL); }
H A Dproto.h79 extern Node *stat1(int, Node *);
H A Dparse.c96 Node *stat1(int a, Node *b) in stat1() function
/dragonfly/contrib/lvm2/dist/lib/device/
H A Ddev-cache.c163 struct stat stat0, stat1; in _compare_paths() local
219 if (lstat(p1, &stat1)) { in _compare_paths()
223 if (S_ISLNK(stat0.st_mode) && !S_ISLNK(stat1.st_mode)) in _compare_paths()
225 if (!S_ISLNK(stat0.st_mode) && S_ISLNK(stat1.st_mode)) in _compare_paths()
/dragonfly/sys/dev/netif/bwn/bwn/
H A Dif_bwn.c5291 uint32_t stat0, stat1; in bwn_intr_txeof() local
5300 stat1 = BWN_READ_4(mac, BWN_XMITSTAT_1); in bwn_intr_txeof()
5306 stat1); in bwn_intr_txeof()
5309 stat.seq = (stat1 & 0x0000ffff); in bwn_intr_txeof()
5310 stat.phy_stat = ((stat1 & 0x00ff0000) >> 16); in bwn_intr_txeof()