Searched refs:stat (Results 126 - 150 of 1338) sorted by relevance

1234567891011>>

/external/clang/tools/scan-build/
H A Dset-xcode-analyzer17 import stat namespace
55 os.chmod(path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IROTH)
/external/chromium_org/sandbox/linux/services/
H A Dlibc_urandom_override.cc10 #include <sys/stat.h>
56 typedef int (*XstatFunction)(int version, const char *path, struct stat *buf);
63 typedef int (*StatFunction)(const char *path, struct stat *buf);
70 // Find the libc's real fopen* and *stat* functions. This should only be
101 dlsym(RTLD_NEXT, "stat"));
106 LOG(FATAL) << "Failed to get stat() from libc.";
159 // The stat() family of functions are subject to the same problem as
167 struct stat *buf) __asm__ ("__xstat");
170 int xstat_override(int version, const char *path, struct stat *buf) {
202 struct stat *bu
[all...]
/external/lldb/source/Core/
H A DDataBufferMemoryMap.cpp14 #include <sys/stat.h>
147 // containing valid data from a call to stat().
176 struct stat stat; local
177 if (::fstat(fd, &stat) == 0)
179 if (S_ISREG(stat.st_mode) && (stat.st_size > offset))
181 const size_t max_bytes_available = stat.st_size - offset;
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
H A Dtemplate-output.rb278 prog: stat+;
280 stat
281 : 'if' '(' expr ')' stat
283 | '{' stat* '}'
338 prog: stat+;
340 stat
341 : IF '(' e=expr ')' s=stat
345 | '{' stat* '}'
346 -> ^(BLOCK stat*)
374 prog: stat
[all...]
/external/chromium_org/third_party/libsrtp/srtp/srtp/
H A Dsrtp.c102 err_status_t stat; local
119 stat = crypto_kernel_alloc_cipher(p->rtp.cipher_type,
122 if (stat) {
124 return stat;
128 stat = crypto_kernel_alloc_auth(p->rtp.auth_type,
132 if (stat) {
135 return stat;
151 stat = crypto_kernel_alloc_cipher(p->rtcp.cipher_type,
154 if (stat) {
159 return stat;
366 err_status_t stat; local
438 err_status_t stat; local
1447 err_status_t stat; local
[all...]
/external/bison/darwin-lib/sys/
H A Dstat.h2 /* Provide a more complete sys/stat header file.
20 /* This file is supposed to be used on platforms where <sys/stat.h> is
32 #include_next <sys/stat.h>
47 #include_next <sys/stat.h>
384 # define stat _stati64
650 _GL_FUNCDECL_RPL (fstat, int, (int fd, struct stat *buf) _GL_ARG_NONNULL ((2)));
651 _GL_CXXALIAS_RPL (fstat, int, (int fd, struct stat *buf));
653 _GL_CXXALIAS_SYS (fstat, int, (int fd, struct stat *buf));
657 /* Above, we define stat to _stati64. */
675 (int fd, char const *name, struct stat *s
987 # undef stat macro
988 # define stat macro
994 # undef stat macro
[all...]
/external/bison/linux-lib/sys/
H A Dstat.h2 /* Provide a more complete sys/stat header file.
20 /* This file is supposed to be used on platforms where <sys/stat.h> is
32 #include_next <sys/stat.h>
47 #include_next <sys/stat.h>
384 # define stat _stati64
650 _GL_FUNCDECL_RPL (fstat, int, (int fd, struct stat *buf) _GL_ARG_NONNULL ((2)));
651 _GL_CXXALIAS_RPL (fstat, int, (int fd, struct stat *buf));
653 _GL_CXXALIAS_SYS (fstat, int, (int fd, struct stat *buf));
657 /* Above, we define stat to _stati64. */
675 (int fd, char const *name, struct stat *s
994 # undef stat macro
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
H A Dreal_node.cc85 Error RealNode::GetStat(struct stat* stat) { argument
86 int err = _real_fstat(real_fd_, stat);
/external/chromium_org/native_client_sdk/src/tools/
H A Dgenhttpfs.py72 stat = os.stat(filename)
75 outfile.write('%s %d %s\n' % (mode, stat.st_size, name))
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Djavascript.js300 if (state.lexical.type == "stat") indent = state.lexical.indented;
338 if (type == "variable") return cont(pushlex("stat"), maybelabel);
349 return pass(pushlex("stat"), expression, expect(";"), poplex);
642 if (lexical.type == "stat" && firstChar == "}") lexical = lexical.prev;
643 if (statementIndent && lexical.type == ")" && lexical.prev.type == "stat")
650 else if (type == "stat")
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
H A Dsunos4.h55 struct stat;
152 extern int lstat(const char *, struct stat *);
153 extern int fstat(int, struct stat *);
H A D_pcos.h72 #include <sys/stat.h>
/external/chromium_org/third_party/skia/src/ports/
H A DSkOSFile_posix.cpp14 #include <sys/stat.h>
39 struct stat status;
60 struct stat status;
/external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
H A Dmainthread_jank_stats_unittest.py64 stat = mainthread_jank_stats._ComputeMainthreadJankStatsForRecord(
75 self.assertEquals(180, stat.biggest_top_slice_thread_time)
76 self.assertEquals(280, stat.sum_big_top_slices_thread_time)
/external/compiler-rt/test/msan/Linux/
H A Dglob_altdirfunc.cc12 #include <sys/stat.h>
38 static int my_gl_lstat(const char *s, struct stat *st) {
45 static int my_gl_stat(const char *s, struct stat *st) {
/external/libmtp/examples/
H A Dthumb.c35 #include <sys/stat.h>
53 struct stat statbuff;
79 if ( stat(path, &statbuff) == -1 ) {
81 perror("stat");
/external/ltrace/
H A Dexecute_program.c28 #include <sys/stat.h>
69 struct stat statbuf;
73 if (!stat(command, &statbuf)) {
/external/valgrind/main/none/tests/x86-linux/
H A Dseg_override.c90 int stat; local
104 stat = __modify_ldt (1, &ldt_entry, sizeof (ldt_entry));
105 printf("stat = %d\n", stat);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DTParser.h72 - (void)stat;
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Ddev_fs_for_testing.h28 struct stat buf;
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dfiletools.cpp8 // *cough* - for struct stat
22 #include <sys/stat.h>
104 struct stat stbuf1, stbuf2;
106 if (stat(file1, &stbuf1) == 0 && stat(file2, &stbuf2) == 0) {
/external/chromium_org/tools/telemetry/telemetry/core/backends/
H A Dadb_commands.py11 import stat namespace
135 os.chmod(dest, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dposix_platform_backend.py9 import stat namespace
95 return (os.stat(path).st_mode & stat.S_ISUID) == stat.S_ISUID
/external/compiler-rt/test/tsan/
H A Dfd_close_norace.cc6 #include <sys/stat.h>
H A Dfd_dup_norace.cc6 #include <sys/stat.h>

Completed in 791 milliseconds

1234567891011>>