Searched refs:cst (Results 1 – 4 of 4) sorted by relevance
/illumos-gate/usr/src/uts/common/sys/ |
H A D | door_data.h | 106 #define DOOR_T_HELD(cst) ((cst)->d_hold) argument 108 #define DOOR_T_HOLD(cst) \ argument 109 (ASSERT(!DOOR_T_HELD(cst)), ((cst)->d_hold = 1)) 110 #define DOOR_T_RELEASE(cst) \ argument 111 (ASSERT(DOOR_T_HELD(cst)), ((cst)->d_hold = 0), \ 112 cv_broadcast(&(cst)->d_cv))
|
/illumos-gate/usr/src/lib/libgen/common/ |
H A D | rmdirp.c | 54 struct stat64 st, cst; in rmdirp() local 59 currstat = stat64(".", &cst); in rmdirp() 104 if ((st.st_ino == cst.st_ino) && in rmdirp() 105 (st.st_dev == cst.st_dev)) { in rmdirp()
|
/illumos-gate/usr/src/grub/grub-0.97/netboot/ |
H A D | 3c595.c | 231 short status, cst; in t595_poll() local 234 cst=inw(BASE + VX_STATUS); in t595_poll() 237 if(cst & 0x1FFF) in t595_poll() 238 printf("-%hX-",cst); in t595_poll() 241 if( (cst & S_RX_COMPLETE)==0 ) { in t595_poll() 243 outw(ACK_INTR | cst, BASE + VX_COMMAND); in t595_poll()
|
/illumos-gate/usr/src/lib/lib9p/common/backend/ |
H A D | fs.c | 888 struct l9p_acl *cacl, struct stat *cst, in check_access() argument 905 args.aca_cstat = cst; in check_access() 1816 struct stat pst, cst; in fs_remove() local 1828 if (fstatat(file->ff_dirfd, file->ff_name, &cst, AT_SYMLINK_NOFOLLOW) != 0) in fs_remove() 1835 parent_acl, &pst, file->ff_acl, &cst, file->ff_ai, (gid_t)-1); in fs_remove() 1841 S_ISDIR(cst.st_mode) ? AT_REMOVEDIR : 0) != 0) { in fs_remove() 1843 if (error == EEXIST && S_ISDIR(cst.st_mode)) in fs_remove() 2392 struct stat cst, opst, npst; in fs_rename() local 2427 if (fstatat(file->ff_dirfd, file->ff_name, &cst, in fs_rename() 2438 oparent_acl, &opst, file->ff_acl, &cst, ai, (gid_t)-1); in fs_rename() [all …]
|