Searched defs:uc (Results 1 - 5 of 5) sorted by relevance

/art/test/004-SignalTest/
H A Dsignaltest.cc57 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
58 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
61 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
62 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
65 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
66 uc->CTX_EIP += 3;
/art/runtime/arch/arm64/
H A Dfault_handler_arm64.cc44 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
45 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
57 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context); local
58 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
90 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
91 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
114 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context); local
115 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
159 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context); local
160 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc
161 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; local
[all...]
/art/runtime/arch/arm/
H A Dfault_handler_arm.cc56 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
57 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
70 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
71 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
111 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
112 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
136 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
137 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
200 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
201 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc
202 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; local
[all...]
/art/runtime/arch/x86/
H A Dfault_handler_x86.cc239 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
240 uc->CTX_JMP_BUF = reinterpret_cast<uintptr_t>(*self->GetNestedSignalState());
241 uc->CTX_EIP = reinterpret_cast<uintptr_t>(art_nested_signal_return);
247 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); local
248 *out_sp = static_cast<uintptr_t>(uc->CTX_ESP);
264 *out_method = reinterpret_cast<mirror::ArtMethod*>(uc->CTX_METHOD);
270 uint8_t* pc = reinterpret_cast<uint8_t*>(uc->CTX_EIP);
283 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
284 uint8_t* pc = reinterpret_cast<uint8_t*>(uc->CTX_EIP);
285 uint8_t* sp = reinterpret_cast<uint8_t*>(uc
341 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
397 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); local
[all...]
/art/compiler/
H A Dcommon_compiler_test.cc51 struct ucontext *uc = (struct ucontext *)data; local
52 struct sigcontext *sc = &uc->uc_mcontext;

Completed in 821 milliseconds