Home
last modified time | relevance | path

Searched refs:__s_ (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/ttymon/
H A Duucp.h493 EXTERN struct stat __s_; variable
495 ((stat((f), &__s_) == 0) && ((__s_.st_mode & (0004)) != 0))
497 ((stat((f), &__s_) == 0) && ((__s_.st_mode & (0444)) != 0))
499 ((stat((f), &__s_) == 0) && ((__s_.st_mode & (0002)) != 0))
501 ((stat((f), &__s_) == 0) && ((__s_.st_mode & (S_IFMT)) == S_IFDIR))
502 #define NOTEMPTY(f) ((stat((f), &__s_) == 0) && (__s_.st_size != 0))
/illumos-gate/usr/src/cmd/bnu/
H A Duucp.h565 EXTERN struct stat __s_; variable
566 #define F_READANY(f) ((fstat((f),&__s_)==0) && ((__s_.st_mode&(0004))!=0) )
567 #define READANY(f) ((stat((f),&__s_)==0) && ((__s_.st_mode&(0004))!=0) )
569 #define WRITEANY(f) ((stat((f),&__s_)==0) && ((__s_.st_mode&(0002))!=0) )
570 #define DIRECTORY(f) ((stat((f),&__s_)==0) && ((__s_.st_mode&(S_IFMT))==S_IFDIR) )
571 #define NOTEMPTY(f) ((stat((f),&__s_)==0) && (__s_.st_size!=0) )
H A Dexpfile.c114 if (__s_.st_uid == UUCPUID)
115 mask |= ((~__s_.st_mode) & PUB_DIRMODE);
H A Duucpdefs.c79 GLOBAL struct stat __s_; variable
H A Duucheck.c57 struct stat __s_; variable