Home
last modified time | relevance | path

Searched refs:out_method (Results 1 – 6 of 6) sorted by relevance

/art/runtime/arch/arm/
Dfault_handler_arm.cc49 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
65 *out_method = reinterpret_cast<ArtMethod*>(sc->arm_r0); in GetMethodAndReturnPcAndSp()
68 *out_method = reinterpret_cast<ArtMethod*>(reinterpret_cast<uintptr_t*>(*out_sp)[0]); in GetMethodAndReturnPcAndSp()
82 *out_method = nullptr; in GetMethodAndReturnPcAndSp()
/art/runtime/arch/mips64/
Dfault_handler_mips64.cc41 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
57 *out_method = reinterpret_cast<ArtMethod*>(sc->sc_regs[mips64::A0]); in GetMethodAndReturnPcAndSp()
60 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/mips/
Dfault_handler_mips.cc40 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
56 *out_method = reinterpret_cast<ArtMethod*>(sc->sc_regs[mips::A0]); in GetMethodAndReturnPcAndSp()
59 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/x86/
Dfault_handler_x86.cc281 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
300 *out_method = reinterpret_cast<ArtMethod*>(uc->CTX_METHOD); in GetMethodAndReturnPcAndSp()
303 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
311 *out_method = nullptr; in GetMethodAndReturnPcAndSp()
318 *out_method = nullptr; in GetMethodAndReturnPcAndSp()
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc42 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
58 *out_method = reinterpret_cast<ArtMethod*>(sc->regs[0]); in GetMethodAndReturnPcAndSp()
61 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/
Dfault_handler.h57 void GetMethodAndReturnPcAndSp(siginfo_t* siginfo, void* context, ArtMethod** out_method,