HomeSort by relevance Sort by last modified time
    Searched defs:st (Results 1 - 25 of 1114) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-openbsd/lib/libc/gen/
ftok.c 36 struct stat st; local
38 if (stat(path, &st) < 0)
42 ((id & 0xff) << 24 | (st.st_dev & 0xff) << 16 | (st.st_ino & 0xffff));
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
remove.c 42 struct stat st; local
44 if (lstat(file, &st) < 0)
46 if (S_ISDIR(st.st_mode))
makebuf.c 82 struct stat st; local
84 if (fp->_file < 0 || fstat(fp->_file, &st) < 0) {
91 *couldbetty = S_ISCHR(st.st_mode);
92 if (st.st_blksize == 0) {
102 *bufsize = st.st_blksize;
103 fp->_blksize = st.st_blksize;
104 return ((st.st_mode & S_IFMT) == S_IFREG && fp->_seek == __sseek ?
  /external/elfutils/libelf/
elf_getarhdr.c 61 int st = __libelf_next_arhdr_wrlock (parent); local
64 if (st != 0)
elf_readall.c 94 struct stat st; local
96 if (fstat (elf->fildes, &st) < 0)
99 if (sizeof (size_t) >= sizeof (st.st_size)
100 || st.st_size <= ~((size_t) 0))
101 elf->maximum_size = (size_t) st.st_size;
elf_update.c 49 struct stat st; local
50 if (unlikely (fstat (elf->fildes, &st) != 0))
134 && unlikely (st.st_mode & (S_ISUID | S_ISGID))
136 && unlikely (fchmod (elf->fildes, st.st_mode) != 0))
  /external/v8/test/mjsunit/regress/
regress-486.js 28 var st = "\u0422\u0435\u0441\u0442"; // Test in Cyrillic characters. variable
29 var cyrillicMatch = /^[\u0430-\u044fa-z]+$/i.test(st); // a-ja a-z.
  /external/clang/test/Modules/
stddef.c 8 size_t st; // expected-error {{must be imported}} variable
  /external/mesa3d/src/mesa/state_tracker/
st_cb_readpixels.c 50 struct st_context *st = st_context(ctx); local
52 st_validate_state(st);
53 st_flush_bitmap_cache(st);
st_debug.c 81 struct st_context *st = st_context(ctx); local
87 for (i = 0; i < st->vp->state.num_inputs; i++) {
88 printf(" Slot %d: VERT_ATTRIB_%d\n", i, st->vp->index_to_input[i]);
92 if (st->vp->variants)
93 tgsi_dump( st->vp->variants[0].tgsi.tokens, 0 );
94 if (st->vp->Base.Base.Parameters)
95 _mesa_print_parameter_list(st->vp->Base.Base.Parameters);
97 tgsi_dump( st->fp->variants[0].tgsi.tokens, 0 );
98 if (st->fp->Base.Base.Parameters)
99 _mesa_print_parameter_list(st->fp->Base.Base.Parameters)
    [all...]
  /system/core/libnativebridge/tests/
CodeCacheCreate_test.cpp 29 struct stat st; local
30 ASSERT_EQ(-1, stat(kCodeCache, &st));
41 ASSERT_EQ(0, stat(kCodeCache, &st));
42 ASSERT_TRUE(S_ISDIR(st.st_mode));
CodeCacheExists_test.cpp 29 struct stat st; local
30 ASSERT_EQ(-1, stat(kCodeCache, &st));
44 ASSERT_EQ(0, stat(kCodeCache, &st));
45 ASSERT_TRUE(S_ISDIR(st.st_mode));
CodeCacheStatFail_test.cpp 33 struct stat st; local
34 ASSERT_EQ(-1, stat(kCodeCacheStatFail, &st));
  /toolchain/binutils/binutils-2.25/libiberty/
unlink-if-ordinary.c 65 struct stat st; local
67 if (lstat (name, &st) == 0
68 && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode)))
  /libcore/luni/src/test/java/libcore/java/io/
StreamTokenizerTest.java 27 StreamTokenizer st = new StreamTokenizer(new StringReader("aIb aIb")); local
28 st.lowerCaseMode(true);
29 st.nextToken();
30 assertEquals("aib", st.sval);
33 st.nextToken();
34 assertEquals("a\u0131b", st.sval);
  /external/elfutils/libdw/
dwarf_begin.c 76 struct stat st; local
78 if (fstat (fd, &st) == 0 && ! S_ISREG (st.st_mode))
  /external/toybox/toys/other/
which.c 32 struct stat st; local
34 if (!stat(filename, &st) && S_ISREG(st.st_mode)) {
  /bootable/recovery/applypatch/
applypatch.h 30 struct stat st; member in struct:FileContents
  /build/kati/
file.cc 35 struct stat st; local
36 if (fstat(fd, &st) < 0) {
40 size_t len = st.st_size;
41 mtime_ = st.st_mtime;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
LeftRecursionCyclesMessage.java 30 import org.stringtemplate.v4.ST;
47 ST st = getMessageTemplate(); local
48 st.add("listOfCycles", cycles);
49 return super.toString(st);
ToolMessage.java 30 import org.stringtemplate.v4.ST;
62 ST st = getMessageTemplate(); local
64 st.add("arg", arg);
67 st.add("arg2", arg2);
70 st.add("exception", e);
71 st.add("stackTrace", e.getStackTrace());
73 return super.toString(st);
  /external/clang/test/CodeGenCXX/
redefine_extname.cpp 12 struct statvfs64 st; local
13 statvfs64(&st);
16 // CHECK: call i32 @statvfs(%struct.statvfs64* %st)
  /external/fio/lib/
linux-dev-lookup.c 14 struct stat st; local
29 if (lstat(full_path, &st) == -1) {
34 if (S_ISDIR(st.st_mode)) {
43 if (!S_ISBLK(st.st_mode))
57 if (maj == major(st.st_rdev) && min == minor(st.st_rdev)) {
  /external/libcxx/test/std/numerics/numarray/template.gslice.array/gslice.array.assign/
gslice_array.pass.cpp 32 std::size_t st[] = {19, 4, 1}; local
36 strides(st, sizeof(st)/sizeof(st[0])))]
38 strides(st, sizeof(st)/sizeof(st[0])))];
valarray.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] = v2;

Completed in 584 milliseconds

1 2 3 4 5 6 7 8 91011>>