OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:st_mode
(Results
401 - 425
of
726
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/oprofile/opjitconv/
opjitconv.c
279
if (S_ISLNK(file_stat.
st_mode
)) {
/external/v8/src/
platform-posix.cc
219
bool is_regular_file = ((file_stat.
st_mode
& S_IFREG) != 0);
/external/valgrind/main/coregrind/
launcher-darwin.c
260
if (0 == stat(clientname, &st) && (st.
st_mode
& S_IFDIR)) {
/hardware/samsung_slsi/exynos5/libv4l2/
exynos_v4l2.c
127
if ((lstat(filename, &s) == 0) && S_ISCHR(s.
st_mode
) &&
/libcore/dalvik/src/main/java/dalvik/system/
DexPathList.java
194
if (!directoriesOnly || S_ISDIR(sb.
st_mode
)) {
/libcore/luni/src/main/java/java/nio/
FileChannelImpl.java
243
if (S_ISREG(Libcore.os.fstat(fd).
st_mode
) || ftruncateException.errno != EINVAL) {
/ndk/sources/host-tools/make-3.81/
commands.c
562
&& S_ISREG (st.
st_mode
)
/ndk/sources/host-tools/sed-4.2.1/sed/
utils.c
365
&& (statbuf.
st_mode
& S_IFLNK) == S_IFLNK)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py
369
return st.
st_mode
& 0111 != 0
fileinput.py
325
perm = os.fstat(self._file.fileno()).
st_mode
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py
369
return st.
st_mode
& 0111 != 0
fileinput.py
325
perm = os.fstat(self._file.fileno()).
st_mode
/system/core/fastboot/
usb_linux.c
184
if (!result && S_ISCHR(st.
st_mode
)) {
/system/core/toolbox/grep/
util.c
204
s = sb.
st_mode
& S_IFMT;
/external/chromium_org/third_party/libxml/src/
runsuite.c
64
if (!(buf.
st_mode
& _S_IFREG))
67
if (!S_ISREG(buf.
st_mode
))
/external/dnsmasq/src/
cache.c
924
if (stat(ah->fname, &buf) != -1 && S_ISDIR(buf.
st_mode
))
991
if ((ah1->flags & AH_DIR) && stat(ah1->fname, &buf) != -1 && !S_ISREG(buf.
st_mode
))
[
all
...]
/external/dropbear/
loginrec.c
1305
if (S_ISDIR(st.
st_mode
))
[
all
...]
/external/mksh/src/
expr.c
971
(rv = stat(fn, &sb)) == 0 && !S_ISDIR(sb.
st_mode
) &&
972
(sb.
st_mode
& (S_IXUSR|S_IXGRP|S_IXOTH)) == 0)
/frameworks/base/core/java/android/os/
ParcelFileDescriptor.java
523
if (S_ISREG(st.
st_mode
) || S_ISLNK(st.
st_mode
)) {
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_shutil.py
91
old_dir_mode = os.stat(TESTFN).
st_mode
92
old_child_mode = os.stat(self.childpath).
st_mode
test_tempfile.py
334
mode = stat.S_IMODE(os.stat(file.name).
st_mode
)
552
mode = stat.S_IMODE(os.stat(dir).
st_mode
)
test_mailbox.py
590
mode = os.stat(path)[stat.
ST_MODE
]
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_shutil.py
91
old_dir_mode = os.stat(TESTFN).
st_mode
92
old_child_mode = os.stat(self.childpath).
st_mode
test_tempfile.py
334
mode = stat.S_IMODE(os.stat(file.name).
st_mode
)
552
mode = stat.S_IMODE(os.stat(dir).
st_mode
)
test_mailbox.py
590
mode = os.stat(path)[stat.
ST_MODE
]
[
all
...]
Completed in 975 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>