OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:siginfo_t
(Results
1 - 25
of
480
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/strace/
printsiginfo.h
1
extern void printsiginfo(const
siginfo_t
*, bool);
/external/valgrind/memcheck/tests/linux/
sigqueue.c
13
siginfo_t
*si;
18
fprintf(stdout, "offsetof(
siginfo_t
, si_signo) = %zd\n",
19
offsetof(
siginfo_t
, si_signo));
20
fprintf(stdout, "offsetof(
siginfo_t
, si_errno) = %zd\n",
21
offsetof(
siginfo_t
, si_errno));
22
fprintf(stdout, "offsetof(
siginfo_t
, si_code) = %zd\n",
23
offsetof(
siginfo_t
, si_code));
24
fprintf(stdout, "offsetof(
siginfo_t
, _sifields) = %zd\n",
25
offsetof(
siginfo_t
, _sifields));
/external/strace/linux/tile/
arch_sigreturn.c
5
#define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(
siginfo_t
)
/art/runtime/
fault_handler.h
47
void HandleFault(int sig,
siginfo_t
* info, void* context);
48
void HandleNestedSignal(int sig,
siginfo_t
* info, void* context);
58
void GetMethodAndReturnPcAndSp(
siginfo_t
* siginfo, void* context, ArtMethod** out_method,
61
bool IsInGeneratedCode(
siginfo_t
* siginfo, void *context, bool check_dex_pc)
66
bool HandleFaultByOtherHandlers(int sig,
siginfo_t
* info, void* context)
84
virtual bool Action(int sig,
siginfo_t
* siginfo, void* context) = 0;
97
bool Action(int sig,
siginfo_t
* siginfo, void* context) OVERRIDE;
107
bool Action(int sig,
siginfo_t
* siginfo, void* context) OVERRIDE;
117
bool Action(int sig,
siginfo_t
* siginfo, void* context) OVERRIDE;
127
bool Action(int sig,
siginfo_t
* siginfo, void* context) OVERRIDE NO_THREAD_SAFETY_ANALYSIS
[
all
...]
/system/core/libmemunreachable/
ScopedSignalHandler.h
31
using Fn = std::function<void(ScopedSignalHandler&, int,
siginfo_t
*, void*)>;
43
[=](int signal,
siginfo_t
* si, void* uctx) {
48
act.sa_sigaction = [](int signal,
siginfo_t
* si, void* uctx) {
74
using SignalFn = std::function<void(int,
siginfo_t
*, void*)>;
/system/core/debuggerd/test/
ptrace_fake.cpp
26
siginfo_t
g_fake_si = {.si_signo = 0};
28
void ptrace_set_fake_getsiginfo(const
siginfo_t
& si) {
47
siginfo_t
* si = va_arg(ap, siginfo*);
/bionic/libc/bionic/
sigqueue.cpp
34
extern "C" int ___rt_sigqueueinfo(pid_t, int,
siginfo_t
*);
37
siginfo_t
info;
38
memset(&info, 0, sizeof(
siginfo_t
));
sigtimedwait.cpp
33
extern "C" int __rt_sigtimedwait(const sigset_t*,
siginfo_t
*, const timespec*, size_t);
35
int sigtimedwait(const sigset_t* set,
siginfo_t
* info, const timespec* timeout) {
/external/valgrind/none/tests/x86/
badseg.c
5
static void handler(int sig,
siginfo_t
*info, void *v)
/art/sigchainlib/
sigchain.h
30
typedef bool (*SpecialSignalHandlerFn)(int,
siginfo_t
*, void*);
33
extern "C" void InvokeUserSignalHandler(int sig,
siginfo_t
* info, void* context);
/external/compiler-rt/test/asan/TestCases/Posix/
waitid.cc
16
siginfo_t
*si = (
siginfo_t
*)(x + argc * 3);
/external/valgrind/memcheck/tests/amd64-solaris/
context_rflags.c
16
static
siginfo_t
si;
19
static void sighandler(int sig,
siginfo_t
*sip, ucontext_t *ucp)
/external/valgrind/none/tests/darwin/
bug228343.c
12
typedef void (*Sigaction)(int,
siginfo_t
*, void *);
43
void SignalHandlerWithSpinlock(int sig,
siginfo_t
*siginfo, void *context) {
/external/libbrillo/brillo/
process_reaper.h
23
using ChildCallback = base::Callback<void(const
siginfo_t
&)>;
42
// as a
siginfo_t
. See wait(2) for details about
siginfo_t
.