Searched refs:raw_context (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | runtime_android.cc | 34 void HandleUnexpectedSignal(int signal_number, siginfo_t* info, void* raw_context) { in HandleUnexpectedSignal() argument 55 old_action.sa_sigaction(signal_number, info, raw_context); in HandleUnexpectedSignal()
|
D | runtime_linux.cc | 42 explicit Backtrace(void* raw_context) : raw_context_(raw_context) {} in Backtrace() 148 explicit UContext(void* raw_context) : in UContext() 149 context(reinterpret_cast<ucontext_t*>(raw_context)->uc_mcontext) { in UContext() 304 void HandleUnexpectedSignal(int signal_number, siginfo_t* info, void* raw_context) { in HandleUnexpectedSignal() argument 329 UContext thread_context(raw_context); in HandleUnexpectedSignal() 330 Backtrace thread_backtrace(raw_context); in HandleUnexpectedSignal()
|
D | dex_file.cc | 995 bool DexFile::LineNumForPcCb(void* raw_context, uint32_t address, uint32_t line_num) { in LineNumForPcCb() argument 996 LineNumFromPcContext* context = reinterpret_cast<LineNumFromPcContext*>(raw_context); in LineNumForPcCb()
|
D | debugger.cc | 3725 static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) { in ConfigureStep() 3726 DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context); in ConfigureStep()
|