Searched refs:uc (Results 1 – 10 of 10) sorted by relevance
246 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in HandleNestedSignal() local247 uc->CTX_JMP_BUF = reinterpret_cast<uintptr_t>(*self->GetNestedSignalState()); in HandleNestedSignal()248 uc->CTX_EIP = reinterpret_cast<uintptr_t>(art_nested_signal_return); in HandleNestedSignal()254 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in GetMethodAndReturnPcAndSp() local255 *out_sp = static_cast<uintptr_t>(uc->CTX_ESP); in GetMethodAndReturnPcAndSp()271 *out_method = reinterpret_cast<ArtMethod*>(uc->CTX_METHOD); in GetMethodAndReturnPcAndSp()277 uint8_t* pc = reinterpret_cast<uint8_t*>(uc->CTX_EIP); in GetMethodAndReturnPcAndSp()296 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local297 uint8_t* pc = reinterpret_cast<uint8_t*>(uc->CTX_EIP); in Action()298 uint8_t* sp = reinterpret_cast<uint8_t*>(uc->CTX_ESP); in Action()[all …]
58 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in signalhandler() local59 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in signalhandler()62 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in signalhandler() local63 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in signalhandler()66 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in signalhandler() local67 uc->CTX_EIP += 3; in signalhandler()69 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in signalhandler() local70 uc->CTX_EIP += 2; in signalhandler()
46 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in HandleNestedSignal() local47 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in HandleNestedSignal()59 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context); in GetMethodAndReturnPcAndSp() local60 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in GetMethodAndReturnPcAndSp()93 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local94 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()118 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context); in Action() local119 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()164 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context); in Action() local165 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()[all …]
56 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in HandleNestedSignal() local57 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in HandleNestedSignal()70 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in GetMethodAndReturnPcAndSp() local71 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in GetMethodAndReturnPcAndSp()119 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local120 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()145 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in Action() local146 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()210 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in Action() local211 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()[all …]
192 struct ucontext *uc = (struct ucontext *)data; in bad_divide_inst_handle() local193 struct sigcontext *sc = &uc->uc_mcontext; in bad_divide_inst_handle()
45 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in GetMethodAndReturnPcAndSp() local46 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in GetMethodAndReturnPcAndSp()80 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local81 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()109 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in Action() local110 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()111 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action()
418 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in nb_signalhandler() local419 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in nb_signalhandler()422 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in nb_signalhandler()423 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in nb_signalhandler()426 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in nb_signalhandler()427 uc->CTX_EIP += 3; in nb_signalhandler()429 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in nb_signalhandler()430 uc->CTX_EIP += 2; in nb_signalhandler()
2818 for uc in unicodedata.normalize('NFC', line):2819 if unicodedata.east_asian_width(uc) in ('W', 'F'):2821 elif not unicodedata.combining(uc):
403 String uc = "ABCDEFG"; in test_String_compareTo() local406 Assert.assertTrue(lc.toUpperCase().equals(uc)); in test_String_compareTo()