Home
last modified time | relevance | path

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

/art/runtime/arch/x86/
Dfault_handler_x86.cc285 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in GetMethodAndReturnPcAndSp() local
286 *out_sp = static_cast<uintptr_t>(uc->CTX_ESP); in GetMethodAndReturnPcAndSp()
302 *out_method = reinterpret_cast<ArtMethod*>(uc->CTX_METHOD); in GetMethodAndReturnPcAndSp()
310 uint8_t* pc = reinterpret_cast<uint8_t*>(uc->CTX_EIP); in GetMethodAndReturnPcAndSp()
332 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local
333 uint8_t* pc = reinterpret_cast<uint8_t*>(uc->CTX_EIP); in Action()
334 uint8_t* sp = reinterpret_cast<uint8_t*>(uc->CTX_ESP); in Action()
352 uc->CTX_ESP = reinterpret_cast<uintptr_t>(next_sp); in Action()
354 uc->CTX_EIP = reinterpret_cast<uintptr_t>( in Action()
388 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local
[all …]
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc47 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context); in GetMethodAndReturnPcAndSp() local
48 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in GetMethodAndReturnPcAndSp()
85 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local
86 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()
160 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context); in Action() local
161 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
162 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.cc54 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in GetMethodAndReturnPcAndSp() local
55 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in GetMethodAndReturnPcAndSp()
107 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in Action() local
108 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
140 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in Action() local
141 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
205 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context); in Action() local
206 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action()
207 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action()
Dinstruction_set_features_arm.cc226 struct ucontext *uc = (struct ucontext *)data; in bad_instr_handle() local
227 struct sigcontext *sc = &uc->uc_mcontext; in bad_instr_handle()
/art/test/115-native-bridge/
Dnativebridge.cc560 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in StandardSignalHandler() local
561 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in StandardSignalHandler()
564 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in StandardSignalHandler()
565 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in StandardSignalHandler()
568 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in StandardSignalHandler()
569 uc->CTX_EIP += 3; in StandardSignalHandler()
571 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context); in StandardSignalHandler()
572 uc->CTX_EIP += 2; in StandardSignalHandler()
/art/dexdump/
Ddexdump.cc430 uint8_t uc = static_cast<uint8_t>(*c); in dumpXmlAttribute() local
431 if (((uc) & 0x80) == 0) { in dumpXmlAttribute()
435 } else if (utf8Bytes(uc) == 2) { in dumpXmlAttribute()
437 data = ((uc) & 0b00011111); in dumpXmlAttribute()
439 } else if (utf8Bytes(uc) == 3) { in dumpXmlAttribute()
441 data = ((uc) & 0b00001111); in dumpXmlAttribute()
445 CHECK_EQ(utf8Bytes(uc), 4u); in dumpXmlAttribute()
446 data = ((uc) & 0b00000111); in dumpXmlAttribute()
452 uc = static_cast<uint8_t>(*c); in dumpXmlAttribute()
453 data |= static_cast<uint32_t>(uc & 0b00111111u); in dumpXmlAttribute()
/art/runtime/jni/
Djni_internal_test.cc1896 env_->Get ## type ## Field(uc, fid); \
1898 env_->Set ## type ## Field(uc, fid, value1); \
1909 jclass uc = env_->FindClass("AllFieldsUnrelated"); in TEST_F() local
1910 ASSERT_NE(uc, nullptr); in TEST_F()
/art/test/082-inline-execute/src/
DMain.java404 String uc = "ABCDEFG"; in test_String_compareTo() local
407 Assert.assertTrue(lc.toUpperCase().equals(uc)); in test_String_compareTo()