OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:st_mode
(Results
376 - 400
of
548
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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/
newfs_msdos.c
386
if (!S_ISREG(sb.
st_mode
))
389
if (!S_ISCHR(sb.
st_mode
))
393
check_mounted(fname, sb.
st_mode
);
507
if (!S_ISREG(sb.
st_mode
) || sb.st_size % bpb.bps ||
/bionic/libc/bionic/
fts.c
822
if (S_ISDIR(sbp->
st_mode
)) {
851
if (S_ISLNK(sbp->
st_mode
))
853
if (S_ISREG(sbp->
st_mode
))
/bootable/recovery/applypatch/
applypatch.c
312
file->st.
st_mode
= 0644;
346
if (chmod(filename, file->st.
st_mode
) != 0) {
[
all
...]
/external/chromium_org/base/files/
file_path_watcher_browsertest.cc
794
stat_buf.
st_mode
|= mode;
796
stat_buf.
st_mode
&= ~mode;
798
return chmod(path.value().c_str(), stat_buf.
st_mode
) == 0;
/external/openssh/openbsd-compat/
glob.c
608
pathend[-1] != SEP) && (S_ISDIR(sb.
st_mode
) ||
609
(S_ISLNK(sb.
st_mode
) &&
611
S_ISDIR(sb.
st_mode
)))) {
/ndk/sources/host-tools/make-3.81/glob/
glob.c
810
&& S_ISDIR (st.
st_mode
)))
956
|| !S_ISDIR (st.
st_mode
))
1032
&& S_ISDIR (st.
st_mode
))
[
all
...]
/external/mksh/src/
main.c
509
if (fstat(0, &s_stdin) >= 0 && S_ISCHR(s_stdin.
st_mode
) &&
1345
return (fstat(fd, &statb) == 0 && !S_ISREG(statb.
st_mode
) ?
[
all
...]
/external/chromium_org/content/common/
plugin_list_posix.cc
175
bool ret = (fstat(fd, &stat_buf) >= 0 && S_ISREG(stat_buf.
st_mode
));
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_win16.h
195
unsigned short
st_mode
;
member in struct:_MDMSStat
/external/clang/tools/clang-format/
git-clang-format
323
mode = oct(os.stat(filename).
st_mode
)
/external/e2fsprogs/lib/blkid/
devname.c
232
if (stat(device, &st) == 0 && S_ISBLK(st.
st_mode
) &&
/external/e2fsprogs/lib/ext2fs/
mkjournal.c
407
if (!S_ISBLK(st.
st_mode
))
/external/gtest/src/
gtest-port.cc
518
if ((sb.
st_mode
& S_IWUSR) != 0) {
/external/libmtp/examples/
sendtr.c
193
} else if (S_ISREG (sb.
st_mode
)) {
/external/libppp/src/
exec.c
384
if (fstat(p->fd, &st) != -1 && (st.
st_mode
& S_IFIFO)) {
main.c
363
if (stat(conf, &sb) == 0 && sb.
st_mode
& S_IWOTH) {
server.c
229
if (!(st.
st_mode
& S_IFSOCK) || unlink(server.cfg.sockname) != 0)
/external/llvm/lib/Support/
raw_ostream.cpp
588
if (S_ISCHR(statbuf.
st_mode
) && isatty(FD))
/external/openssh/
sftp-client.c
1369
if (!S_ISREG(sb.
st_mode
)) {
[
all
...]
/external/oprofile/opjitconv/
opjitconv.c
279
if (S_ISLNK(file_stat.
st_mode
)) {
/external/strace/
strace.c
563
S_ISREG(statbuf.
st_mode
) &&
564
(statbuf.
st_mode
& 0111))
614
if (statbuf.
st_mode
& S_ISUID)
616
if (statbuf.
st_mode
& S_ISGID)
[
all
...]
/external/v8/src/
platform-posix.cc
219
bool is_regular_file = ((file_stat.
st_mode
& S_IFREG) != 0);
/libcore/luni/src/main/java/java/nio/
FileChannelImpl.java
243
if (S_ISREG(Libcore.os.fstat(fd).
st_mode
) || ftruncateException.errno != EINVAL) {
Completed in 1196 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>