Searched defs:siginfo (Results 1 - 7 of 7) sorted by path

/bionic/libc/kernel/uapi/asm-generic/
H A Dsiginfo.h54 typedef struct siginfo { struct
/bionic/libc/kernel/uapi/asm-mips/asm/
H A Dsiginfo.h35 #include <asm-generic/siginfo.h>
36 typedef struct siginfo { struct
/bionic/libc/versioner-dependencies/common/kernel_uapi/asm-generic/
H A Dsiginfo.h54 typedef struct siginfo { struct
/bionic/libc/versioner-dependencies/common/kernel_uapi/asm-mips/asm/
H A Dsiginfo.h35 #include <asm-generic/siginfo.h>
36 typedef struct siginfo { struct
/bionic/libc/versioner-dependencies/mips/kernel_uapi_asm-mips/asm/
H A Dsiginfo.h35 #include <asm-generic/siginfo.h>
36 typedef struct siginfo { struct
/bionic/libc/versioner-dependencies/mips64/kernel_uapi_asm-mips/asm/
H A Dsiginfo.h35 #include <asm-generic/siginfo.h>
36 typedef struct siginfo { struct
/bionic/tests/
H A Dsys_ptrace_test.cpp183 siginfo_t siginfo; local
184 ASSERT_EQ(0, ptrace(PTRACE_GETSIGINFO, child, nullptr, &siginfo)) << strerror(errno);
185 ASSERT_EQ(TRAP_HWBKPT, siginfo.si_code);
187 ASSERT_LE(&data, siginfo.si_addr);
188 ASSERT_GT((&data) + 1, siginfo.si_addr);
363 siginfo_t siginfo; local
364 ASSERT_EQ(0, ptrace(PTRACE_GETSIGINFO, child, nullptr, &siginfo)) << strerror(errno);
365 ASSERT_EQ(TRAP_HWBKPT, siginfo.si_code);

Completed in 227 milliseconds