HomeSort by relevance Sort by last modified time
    Searched defs:st (Results 1 - 25 of 881) 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 83 struct stat st; local
85 if (fp->_file < 0 || fstat(fp->_file, &st) < 0) {
92 *couldbetty = S_ISCHR(st.st_mode);
93 if (st.st_blksize == 0) {
103 *bufsize = st.st_blksize;
104 fp->_blksize = st.st_blksize;
105 return ((st.st_mode & S_IFMT) == S_IFREG && fp->_seek == __sseek ?
  /external/chromium_org/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/elfutils/0.153/libelf/
elf_getarhdr.c 83 int st = __libelf_next_arhdr_wrlock (parent); local
86 if (st != 0)
elf_readall.c 115 struct stat st; local
117 if (fstat (elf->fildes, &st) < 0)
120 if (sizeof (size_t) >= sizeof (st.st_size)
121 || st.st_size <= ~((size_t) 0))
122 elf->maximum_size = (size_t) st.st_size;
elf_update.c 69 struct stat st; local
70 if (unlikely (fstat (elf->fildes, &st) != 0))
136 && unlikely (st.st_mode & (S_ISUID | S_ISGID))
138 && unlikely (fchmod (elf->fildes, st.st_mode) != 0))