/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/sys/ |
resource.h | 36 * syscall seems to use the standard one instead.
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/sys/ |
resource.h | 36 * syscall seems to use the standard one instead.
|
/external/kernel-headers/original/asm-x86/ |
thread_info_32.h | 126 #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ 131 #define TIF_SYSCALL_EMU 5 /* syscall emulation active */ 132 #define TIF_SYSCALL_AUDIT 6 /* syscall auditing active */
|
/external/strace/ |
syscall-android.h | 1 /* Generated at libc build time from kernel syscall list. */ 4 //# error "Never use <bits/syscall.h> directly; include <sys/syscall.h> instead."
|
/external/valgrind/main/coregrind/ |
pub_core_syswrap.h | 35 // PURPOSE: This module contains all the syscall junk: mostly PRE/POST 36 // wrappers, but also the main syscall jacketing code. 50 // Fix up a thread's state when syscall is interrupted by a signal.
|
pub_core_scheduler.h | 46 /* If 'tid' is blocked in a syscall, send it SIGVGKILL so as to get it 47 out of the syscall and onto doing the next thing, whatever that is. 48 If it isn't blocked in a syscall, has no effect on the thread. */
|
Makefile.am | 317 m_syswrap/syscall-x86-linux.S \ 318 m_syswrap/syscall-amd64-linux.S \ 319 m_syswrap/syscall-ppc32-linux.S \ 320 m_syswrap/syscall-ppc64-linux.S \ 321 m_syswrap/syscall-arm-linux.S \ 322 m_syswrap/syscall-ppc32-aix5.S \ 323 m_syswrap/syscall-ppc64-aix5.S \ 324 m_syswrap/syscall-x86-darwin.S \ 325 m_syswrap/syscall-amd64-darwin.S \
|
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
fldcw_check.S | 147 mov $1,%rax # write syscall 151 syscall 156 syscall
|
/external/valgrind/main/exp-ptrcheck/tests/ |
Makefile.am | 56 syscall.vgtest-disabled syscall.stderr.exp \ 71 strcpy strlen sub supp syscall tricky unaligned xor zero
|
/external/webrtc/src/system_wrappers/source/ |
thread_linux.cc | 20 #include <sys/syscall.h> 42 return syscall(__NR_gettid); 224 // instead of Linux gettid() syscall.
|
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-amd64-linux.c | 150 // setup syscall 151 " movq $"__NR_CLONE", %rax\n" // syscall number 152 " movq %rdx, %rdi\n" // syscall arg1: flags 153 // %rsi already setup // syscall arg2: child_stack 154 " movq %r9, %rdx\n" // syscall arg3: parent_tid 155 " movq %r8, %r10\n" // syscall arg4: child_tid 156 " movq 8(%rsp), %r8\n" // syscall arg5: tls_ptr 158 " syscall\n" // clone() 172 " syscall\n" 230 following the clone syscall works out which is which, so w [all...] |
syswrap-ppc64-linux.c | 157 Returns a ULong encoded as: top half is %cr following syscall, 158 low half is syscall return value (r3). 196 // setup syscall 197 " li 0,"__NR_CLONE"\n" // syscall number 198 " mr 3,5\n" // syscall arg1: flags 199 // r4 already setup // syscall arg2: child_stack 200 " mr 5,8\n" // syscall arg3: parent_tid 201 " mr 6,13\n" // syscall arg4: REAL THREAD tls 202 " mr 7,7\n" // syscall arg5: child_tid 203 " mr 8,8\n" // syscall arg6: ??? [all...] |
/bionic/libc/tools/ |
gensyscalls.py | 3 # this tool is used to generate the syscall assmbler templates 48 # x86 assembler templates for each syscall stub 79 # ARM assembler templates for each syscall stub 135 # ARM thumb assembler templates for each syscall stub 186 # SuperH assembler templates for each syscall stub 244 """Returns True iff a syscall parameter description corresponds 326 # dispatch call (like a socketcall syscall) there are actually 327 # only 2 arguments to the syscall and 2 regs we have to save: 329 # syscall (socket, bind, recv, etc) 351 # now do the syscall code itsel [all...] |
/external/valgrind/main/docs/internals/ |
threads-syscalls-signals.txt | 62 it uses the sigtimedwait() syscall to fetch blocked pending signals 73 call poll_signals after any syscall which may raise a signal, since 79 client's requested signal mask is while running a blocking syscall. We 80 have to set things up to accept signals during a syscall so that we get 81 the right signal-interrupts-syscall semantics. The tricky part about 83 set-signal-mask-and-block-in-syscall mechanism, so we need to fake it 87 point the syscall got to when the async signal happens. By keeping the 93 for a syscall when it has been interrupted is, etc. Particularly nice 127 syscall to complete), then the signal handler will grab the run_sema 129 an async signal asynchronously is during a blocking syscall, this shoul [all...] |
3_3_BUGSTATUS.txt | 75 161374 WF,HIGH pend SYS_readdir syscall not implemented 112 166355 HIGH,WF pend unshare syscall not supported (amd64, #272) 162 175985 missing modify_ldt syscall support on x86_64 191 159285 Fixd 8736 unhandled syscall:25 (stime, on x86-linux) 231 173177 Fixd 8720 [x86_64] WARNING: unhandled syscall: 125/126/179 270 r7323 r8082 Mgd n-i-bz update syscall lists to kernel 2.6.23.1 313 r7917 r8148 Mgd 161285 Patch -- support for eventfd() syscall
|
porting-HOWTO.txt | 59 properly. The syscall table and syscall wrappers will be painful; do them 104 able to reuse some of the generic (eg. POSIX) syscall wrappers, if the types
|
/external/valgrind/main/exp-bbv/tests/x86-linux/ |
ll.S | 13 # offsets into the results returned by the uname syscall 21 # offset into the results returned by the sysinfo syscall 126 # push $SYSCALL_UNAME # uname syscall 129 # int $0x80 # do syscall 176 # int $0x80 # syscall. fd in eax. 308 # push $SYSCALL_SYSINFO # sysinfo() syscall 372 inc %eax # put exit syscall number (1) in eax 500 push $SYSCALL_WRITE # put 4 in eax (write syscall) 515 int $0x80 # run the syscall 585 .ascii "flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 mmx fxsr sse syscall mmxext 3dnowext 3dnow up\n [all...] |
/external/valgrind/main/memcheck/tests/x86-linux/ |
scalar.c | 8 // Here we are trying to trigger every syscall error (scalar errors and 9 // memory errors) for every syscall. We do this by passing a lot of bogus 16 // its pre-syscall wrappers; it does so because it can't know in general 21 // The output has numbers like "3s 2m" for each syscall. "s" is short for 47 // Nb: here we are also getting an error from the syscall arg itself. 536 // XXX: Also, should be 6 scalar errors, except glibc's syscall() doesn't 630 SY(__NR_setfsuid, x0); SUCC; // This syscall has a stupid return value 634 SY(__NR_setfsgid, x0); SUCC; // This syscall has a stupid return value 841 // crappy non-standard syscall. 847 // crappy non-standard syscall [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
syscall.h | 1 /* Generated at libc build time from kernel syscall list. */ 4 # error "Never use <bits/syscall.h> directly; include <sys/syscall.h> instead."
|
/bionic/libc/stdio/ |
flags.c | 42 * to be passed to an open() syscall through *optr.
|
/external/chromium/base/ |
atomicops_internals_arm_gcc.h | 19 // a syscall. This address is stable, and in active use (hard coded)
|
/external/kernel-headers/original/linux/nfsd/ |
export.h | 5 * syscall interface are in nfsctl.h
|
/external/valgrind/main/ |
AUTHORS | 15 overhauled low-level syscall/signal and address space layout stuff,
|
Android.mk | 198 coregrind/m_syswrap/syscall-x86-linux.S \ 199 coregrind/m_syswrap/syscall-amd64-linux.S \ 200 coregrind/m_syswrap/syscall-ppc32-linux.S \ 201 coregrind/m_syswrap/syscall-ppc64-linux.S \ 202 coregrind/m_syswrap/syscall-arm-linux.S \ 203 coregrind/m_syswrap/syscall-ppc32-aix5.S \ 204 coregrind/m_syswrap/syscall-ppc64-aix5.S \ 205 coregrind/m_syswrap/syscall-x86-darwin.S \ 206 coregrind/m_syswrap/syscall-amd64-darwin.S \
|
/external/valgrind/main/VEX/pub/ |
libvex_guest_amd64.h | 148 /* Used for Darwin syscall dispatching. */ 158 RIP at the last syscall insn (int 0x80/81/82, sysenter, 159 syscall). Used when backing up to restart a syscall that has
|