HomeSort by relevance Sort by last modified time
    Searched refs:syscall (Results 776 - 800 of 984) sorted by null

<<31323334353637383940

  /development/ndk/sources/android/libportable/arch-mips/
pipe.c 35 extern int syscall(int, ...);
  /external/chromium_org/v8/src/arm/
cpu-arm.cc 11 #include <sys/syscall.h> // for cache flushing.
43 // syscall(__ARM_NR_cacheflush, start,
45 // however, syscall(int, ...) is not supported on all platforms, especially
46 // not when using EABI, so we call the __ARM_NR_cacheflush syscall directly.
  /external/compiler-rt/test/asan/TestCases/Linux/
clone_test.cc 12 #include <sys/syscall.h>
  /external/e2fsprogs/lib/e2p/
fgetversion.c 58 err = syscall(SYS_fsctl, name, EXT2_IOC_GETVERSION, &ver, 0);
fsetversion.c 58 return syscall(SYS_fsctl, name, EXT2_IOC_SETVERSION, &ver, 0);
  /external/ltrace/sysdeps/linux-gnu/m68k/
trace.c 47 /* Returns 1 if syscall, 2 if sysret, 0 otherwise.
63 proc->callstack[depth - 1].c_un.syscall == *sysnum) {
  /external/oprofile/daemon/
opd_cookie.c 16 #include <sys/syscall.h>
70 return syscall(__NR_lookup_dcookie, (unsigned long)(cookie >> 32),
77 return syscall(__NR_lookup_dcookie,
84 return syscall(__NR_lookup_dcookie, cookie, buf, size);
  /external/valgrind/main/memcheck/tests/linux/
stack_switch.c 11 #include <sys/syscall.h>
  /bionic/tests/
stack_protector_test.cpp 26 #include <sys/syscall.h>
32 pid_t gettid() { return syscall(__NR_gettid); }
  /external/chromium_org/sandbox/linux/services/
scoped_process.cc 10 #include <sys/syscall.h>
114 // Make a direct syscall to bypass glibc caching of PIDs.
115 int pid = syscall(__NR_getpid);
  /external/e2fsprogs/contrib/
fallocate.c 28 #include <sys/syscall.h>
165 error = syscall(SYS_fallocate, fd, falloc_mode, offset, length);
  /external/e2fsprogs/lib/blkid/
llseek.c 38 #include <syscall.h>
79 retval = syscall(__NR__llseek, fd, ((unsigned long long) offset) >> 32,
  /external/e2fsprogs/lib/ext2fs/
llseek.c 39 #include <syscall.h>
78 retval = syscall(__NR__llseek, fd, (unsigned long long) (offset >> 32),
  /external/e2fsprogs/lib/ss/
pager.c 40 #include <sys/syscall.h>
55 if (syscall(SYS_prctl, PR_GET_DUMPABLE, 0, 0, 0, 0) == 0)
  /external/strace/linux/x86_64/
gentab.pl 2 #generate syscall table from a template file (usually the master i386 syscall
48 open(S,$ARGV[1]) || die "cannot open syscall file $ARGV[1]\n";
  /external/valgrind/main/perf/
bigcode.c 17 #include <sys/syscall.h>
73 syscall(__NR_cacheflush, a, FN_SIZE * n_fns, ICACHE);
  /external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
baseline_policy.cc 10 #include <sys/syscall.h>
201 : fs_denied_errno_(EPERM), current_pid_(syscall(__NR_getpid)) {}
204 : fs_denied_errno_(fs_denied_errno), current_pid_(syscall(__NR_getpid)) {}
209 DCHECK_EQ(syscall(__NR_getpid), current_pid_);
216 DCHECK_EQ(syscall(__NR_getpid), current_pid_);
  /external/chromium_org/sandbox/win/src/
service_resolver_64.cc 26 // 08 syscall
33 USHORT syscall; // = 0F 05 member in struct:__anon14617::ServiceEntry
49 // 1c 0f05 syscall
58 USHORT syscall; // = 0F 05 member in struct:__anon14617::ServiceEntryW8
78 kSyscall == service->syscall && kRetNp == service->ret);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_hpux.h 92 #include <syscall.h>
245 #define _MD_SELECT(nfds,r,w,e,tv) syscall(SYS_select,nfds,r,w,e,tv)
248 #define _MD_POLL(fds,nfds,timeout) syscall(SYS_poll,fds,nfds,timeout)
_openbsd.h 38 #include <sys/syscall.h>
227 #define _MD_SELECT(nfds,r,w,e,tv) syscall(SYS_select,nfds,r,w,e,tv)
229 #define _MD_POLL(fds,nfds,timeout) syscall(SYS_poll,fds,nfds,timeout)
  /external/llvm/test/MC/Mips/
mips-control-instructions.s 9 # CHECK32: syscall # encoding: [0x00,0x00,0x00,0x0c]
10 # CHECK32: syscall 13396 # encoding: [0x00,0x0d,0x15,0x0c]
42 # CHECK64: syscall # encoding: [0x00,0x00,0x00,0x0c]
43 # CHECK64: syscall 13396 # encoding: [0x00,0x0d,0x15,0x0c]
75 syscall
76 syscall 0x3454
  /external/chromium_org/media/cdm/ppapi/
cdm_logging.cc 23 #include <sys/syscall.h>
57 return syscall(__NR_gettid);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
perf.h 112 #include <sys/syscall.h>
170 fd = syscall(__NR_perf_event_open, attr, pid, cpu,
  /external/ltrace/sysdeps/linux-gnu/x86/
trace.c 75 /* Returns 1 if syscall, 2 if sysret, 0 otherwise.
95 ret = elem->c_un.syscall;
102 && elem->c_un.syscall == *sysnum)
  /external/valgrind/main/none/tests/linux/
mremap2.c 11 #include <syscall.h>
146 syscall(__NR_mremap, src, 20*PAGE, newsize, flags, dst, 0 );

Completed in 477 milliseconds

<<31323334353637383940