Home
last modified time | relevance | path

Searched refs:uc (Results 1 – 7 of 7) sorted by relevance

/art/runtime/arch/arm64/
Dfault_handler_arm64.cc43 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context); in GetMethodAndReturnPcAndSp() local
44 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in GetMethodAndReturnPcAndSp()
79 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local
80 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
108 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context); in Action() local
109 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
154 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context); in Action() local
155 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
156 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action()
/art/test/004-SignalTest/
Dsignaltest.cc80 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in signalhandler() local
81 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in signalhandler()
84 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in signalhandler() local
85 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in signalhandler()
88 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in signalhandler() local
89 uc->CTX_EIP += 3; in signalhandler()
91 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in signalhandler() local
92 uc->CTX_EIP += 2; in signalhandler()
/art/runtime/arch/arm/
Dfault_handler_arm.cc50 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in GetMethodAndReturnPcAndSp() local
51 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in GetMethodAndReturnPcAndSp()
101 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local
102 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
134 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in Action() local
135 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
199 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in Action() local
200 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
201 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action()
Dinstruction_set_features_arm.cc225 struct ucontext *uc = (struct ucontext *)data; in bad_instr_handle() local
226 struct sigcontext *sc = &uc->uc_mcontext; in bad_instr_handle()
/art/runtime/arch/mips64/
Dfault_handler_mips64.cc43 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in GetMethodAndReturnPcAndSp() local
44 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in GetMethodAndReturnPcAndSp()
81 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local
82 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
116 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in Action() local
117 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
118 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action()
/art/runtime/arch/mips/
Dfault_handler_mips.cc42 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in GetMethodAndReturnPcAndSp() local
43 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in GetMethodAndReturnPcAndSp()
79 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local
80 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
114 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in Action() local
115 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
116 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action()
/art/test/082-inline-execute/src/
DMain.java403 String uc = "ABCDEFG"; in test_String_compareTo() local
406 Assert.assertTrue(lc.toUpperCase().equals(uc)); in test_String_compareTo()