Home
last modified time | relevance | path

Searched refs:S_ISDIR (Results 1 – 6 of 6) sorted by relevance

/toolchain/binutils/binutils-2.25/binutils/
Dfilemode.c133 #ifndef S_ISDIR
135 #define S_ISDIR(i) (((i) & S_IFMT) == S_IFDIR) macro
137 #define S_ISDIR(i) (((i) & 0170000) == 040000) macro
184 if (S_ISDIR (bits)) in ftypelet()
/toolchain/binutils/binutils-2.25/ld/
Dldmain.c48 #if !defined(S_ISDIR) && defined(S_IFDIR)
49 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
555 if (stat (path, &s) == 0 && S_ISDIR (s.st_mode)) in get_relative_sysroot()
Dlexsup.c54 #if !defined(S_ISDIR) && defined(S_IFDIR)
55 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) macro
1028 && ! S_ISDIR (s.st_mode)) in parse_args()
Dldfile.c507 res = stat (buf, &s) == 0 && S_ISDIR (s.st_mode); in check_for_scripts_dir()
DChangeLog-91974381 * lexsup.c (S_ISDIR): Define if not already defined.
/toolchain/binutils/binutils-2.25/gold/
Doptions.cc451 if (::stat(arg, &s) != 0 || S_ISDIR(s.st_mode)) in parse_R()
729 if (::stat(path, &s) == 0 && S_ISDIR(s.st_mode)) in get_relative_sysroot()