OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:S_ISDIR
(Results
1 - 25
of
382
) sorted by relevancy
1
2
3
4
5
6
7
8
9
10
11
>>
/src/external/gpl2/grep/dist/lib/
isdir.c
28
# undef
S_ISDIR
31
#if !defined
S_ISDIR
&& defined S_IFDIR
32
# define
S_ISDIR
(Mode) (((Mode) & S_IFMT) == S_IFDIR)
43
return stat (path, &stats) == 0 &&
S_ISDIR
(stats.st_mode);
/src/external/gpl2/texinfo/dist/info/
filesys.h
90
#if !defined (
S_ISDIR
) && defined (S_IFDIR)
91
# define
S_ISDIR
(m) (((m) & S_IFMT) == S_IFDIR)
92
#endif /* !
S_ISDIR
&& S_IFDIR */
/src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
stat1.c
12
|| !
S_ISDIR
(buf.st_mode))
stat2.c
16
|| !
S_ISDIR
(buf.st_mode))
stat3.c
18
|| !
S_ISDIR
(buf.st_mode))
stat4.c
20
|| !
S_ISDIR
(buf.st_mode))
/src/external/gpl3/gdb.old/dist/sim/testsuite/cris/c/
stat1.c
12
|| !
S_ISDIR
(buf.st_mode))
stat2.c
16
|| !
S_ISDIR
(buf.st_mode))
stat3.c
18
|| !
S_ISDIR
(buf.st_mode))
stat4.c
20
|| !
S_ISDIR
(buf.st_mode))
/src/external/bsd/ntp/dist/libntp/lib/isc/win32/include/isc/
stat.h
55
#ifndef
S_ISDIR
56
# define
S_ISDIR
(m) (((m) & S_IFMT) == S_IFDIR)
/src/lib/libc/stdio/
remove.c
66
if (
S_ISDIR
(sb.st_mode))
/src/external/gpl2/mkhybrid/dist/include/
statdefs.h
34
#undef
S_ISDIR
/* Directory */
67
#ifndef
S_ISDIR
/* Directory */
69
# define
S_ISDIR
(m) (((m) & S_IFMT) == S_IFDIR)
71
# define
S_ISDIR
(m) (0)
/src/external/gpl3/binutils/dist/binutils/
filemode.c
134
#ifndef
S_ISDIR
136
#define
S_ISDIR
(i) (((i) & S_IFMT) == S_IFDIR)
138
#define
S_ISDIR
(i) (((i) & 0170000) == 040000)
140
#endif /* ! defined (
S_ISDIR
) */
185
if (
S_ISDIR
(bits))
/src/external/gpl3/binutils.old/dist/binutils/
filemode.c
134
#ifndef
S_ISDIR
136
#define
S_ISDIR
(i) (((i) & S_IFMT) == S_IFDIR)
138
#define
S_ISDIR
(i) (((i) & 0170000) == 040000)
140
#endif /* ! defined (
S_ISDIR
) */
185
if (
S_ISDIR
(bits))
/src/external/gpl3/gdb/dist/gnulib/import/
rename.c
99
if (errno != ENOENT || (!
S_ISDIR
(src_st.st_mode) && dst_slash))
105
if (
S_ISDIR
(dst_st.st_mode) !=
S_ISDIR
(src_st.st_mode))
107
errno =
S_ISDIR
(dst_st.st_mode) ? EISDIR : ENOTDIR;
123
if (dst_exists &&
S_ISDIR
(dst_st.st_mode))
343
if (errno != ENOENT || (!
S_ISDIR
(src_st.st_mode) && dst_slash))
349
if (
S_ISDIR
(dst_st.st_mode) !=
S_ISDIR
(src_st.st_mode))
351
errno =
S_ISDIR
(dst_st.st_mode) ? EISDIR : ENOTDIR;
432
if (dst_exists &&
S_ISDIR
(dst_st.st_mode)
[
all
...]
dup.c
68
&& !fstat (fd, &sbuf) &&
S_ISDIR
(sbuf.st_mode))
/src/external/gpl3/gdb.old/dist/gnulib/import/
rename.c
99
if (errno != ENOENT || (!
S_ISDIR
(src_st.st_mode) && dst_slash))
105
if (
S_ISDIR
(dst_st.st_mode) !=
S_ISDIR
(src_st.st_mode))
107
errno =
S_ISDIR
(dst_st.st_mode) ? EISDIR : ENOTDIR;
123
if (dst_exists &&
S_ISDIR
(dst_st.st_mode))
343
if (errno != ENOENT || (!
S_ISDIR
(src_st.st_mode) && dst_slash))
349
if (
S_ISDIR
(dst_st.st_mode) !=
S_ISDIR
(src_st.st_mode))
351
errno =
S_ISDIR
(dst_st.st_mode) ? EISDIR : ENOTDIR;
432
if (dst_exists &&
S_ISDIR
(dst_st.st_mode)
[
all
...]
/src/external/bsd/zstd/dist/contrib/pzstd/utils/
FileSystem.h
67
#if defined(
S_ISDIR
)
68
return
S_ISDIR
(status.st_mode);
69
#elif !defined(
S_ISDIR
) && defined(S_IFMT) && defined(S_IFDIR)
/src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
tmpdir.c
40
#if !defined
S_ISDIR
&& defined S_IFDIR
41
# define
S_ISDIR
(mode) (((mode) & S_IFMT) == S_IFDIR)
90
return __xstat64 (_STAT_VER, dir, &buf) == 0 &&
S_ISDIR
(buf.st_mode);
/src/usr.bin/patch/
mkpath.c
74
} else if (!
S_ISDIR
(sb.st_mode)) {
/src/external/gpl3/gdb/dist/readline/readline/
posixstat.h
32
# undef
S_ISDIR
39
#if !defined (S_IFDIR) && !defined (
S_ISDIR
)
41
#endif /* !S_IFDIR && !
S_ISDIR
*/
87
#if defined (S_IFDIR) && !defined (
S_ISDIR
)
88
#define
S_ISDIR
(m) (((m)&S_IFMT) == S_IFDIR) /* directory */
/src/external/gpl3/gdb.old/dist/readline/readline/
posixstat.h
32
# undef
S_ISDIR
39
#if !defined (S_IFDIR) && !defined (
S_ISDIR
)
41
#endif /* !S_IFDIR && !
S_ISDIR
*/
87
#if defined (S_IFDIR) && !defined (
S_ISDIR
)
88
#define
S_ISDIR
(m) (((m)&S_IFMT) == S_IFDIR) /* directory */
/src/external/bsd/ntp/dist/sntp/libopts/compat/
windows-config.h
112
#ifndef
S_ISDIR
114
# define
S_ISDIR
(mode) (((mode) & S_IFDIR) == S_IFDIR)
/src/external/gpl2/xcvs/dist/lib/
stat-macros.h
35
# undef
S_ISDIR
64
# ifndef
S_ISDIR
66
# define
S_ISDIR
(m) (((m) & S_IFMT) == S_IFDIR)
68
# define
S_ISDIR
(m) 0
Completed in 32 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>
Indexes created Sat Sep 26 00:25:34 UTC 2026