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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-openbsd/lib/libc/gen/
ftok.c 35 struct stat st; local
37 if (stat(path, &st) < 0)
41 ((id & 0xff) << 24 | (st.st_dev & 0xff) << 16 | (st.st_ino & 0xffff));
  /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;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigset/
8-1.c 23 sigset_t st; local
24 sigemptyset(&st);
25 sigaddset(&st, SIGCHLD);
27 if (sigprocmask(SIG_BLOCK, &st, NULL) < 0) {
  /external/strace/tests/
skip_unavailable.c 9 struct stat st; local
11 if (stat(path, &st))
  /external/strace/tests-m32/
skip_unavailable.c 9 struct stat st; local
11 if (stat(path, &st))
  /external/strace/tests-mx32/
skip_unavailable.c 9 struct stat st; local
11 if (stat(path, &st))
  /external/adhd/cras/src/server/
iniparser_wrapper.h 15 struct stat st; local
16 int rc = stat(ini_name, &st);
  /external/clang/test/Modules/
stddef.c 8 size_t st; // expected-error {{must be imported}} variable
  /external/ltp/testcases/kernel/fs/ext4-new-features/ext4-nsec-timestamps/
ext4_file_time.c 35 struct stat st; local
42 if (stat(argv[1], &st) != 0) {
49 t = st.st_atime;
51 t = st.st_mtime;
53 t = st.st_ctime;
56 t = st.st_atim.tv_nsec;
58 t = st.st_mtim.tv_nsec;
60 t = st.st_ctim.tv_nsec;
  /external/mesa3d/src/mesa/state_tracker/
st_cb_msaa.c 46 struct st_context *st = st_context(ctx); local
48 st_validate_state(st, ST_PIPELINE_UPDATE_FRAMEBUFFER);
50 if (st->pipe->get_sample_position)
51 st->pipe->get_sample_position(st->pipe,
st_cb_strings.c 45 struct st_context *st = st_context(ctx); local
46 struct pipe_screen *screen = st->pipe->screen;
st_cb_viewport.c 40 struct st_context *st = ctx->st; local
44 if (!st->invalidate_on_gl_viewport)
54 stdraw = st_ws_framebuffer(st->ctx->DrawBuffer);
55 stread = st_ws_framebuffer(st->ctx->ReadBuffer);
  /external/perf_data_converter/src/quipper/
file_utils.cc 29 struct stat st; local
30 return stat(filename.c_str(), &st) == 0;
  /external/python/cpython3/Lib/test/subprocessdata/
fd_status.py 26 st = os.fstat(fd) variable
32 if not stat.S_ISDOOR(st.st_mode):
  /external/strace/
oldstat.c 46 struct strace_stat st = { local
60 print_struct_stat(tcp, &st);
stat.c 35 struct strace_stat st; local
37 if (fetch_struct_stat(tcp, addr, &st))
38 print_struct_stat(tcp, &st);
stat64.c 35 struct strace_stat st; local
37 if (fetch_struct_stat64(tcp, addr, &st))
38 print_struct_stat(tcp, &st);
  /external/u-boot/arch/arm/mach-at91/arm920t/
reset.c 28 at91_st_t *st = (at91_st_t *) ATMEL_BASE_ST; local
34 &st->wdmr);
35 writel(AT91_ST_CR_WDRST, &st->cr);
  /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)) {
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
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 ?
  /build/kati/
file.cc 36 struct stat st; local
37 if (fstat(fd, &st) < 0) {
41 size_t len = st.st_size;
42 mtime_ = st.st_mtime;
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fdopen.c 85 struct stat st; local
86 if (fstat(fd, &st) == -1) {
89 if (!S_ISREG(st.st_mode)) {
fopen.c 74 struct stat st; local
75 if (fstat(f, &st) == -1) {
81 if (!S_ISREG(st.st_mode)) {

Completed in 1365 milliseconds

1 2 3 4 5 6 7 8 91011>>