HomeSort by relevance Sort by last modified time
    Searched refs:GetGPR (Results 1 - 8 of 8) sorted by null

  /art/runtime/arch/
context.h 57 virtual bool GetGPR(uint32_t reg, uintptr_t* val) = 0;
  /art/runtime/arch/arm/
context_arm.h 54 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE {
  /art/runtime/arch/arm64/
context_arm64.h 54 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE {
  /art/runtime/arch/mips/
context_mips.h 53 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE {
  /art/runtime/arch/x86/
context_x86.h 52 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE {
  /art/runtime/arch/x86_64/
context_x86_64.h 52 bool GetGPR(uint32_t reg, uintptr_t* val) OVERRIDE {
  /art/runtime/
stack.cc 170 bool success = is_float ? GetFPR(reg, &ptr_val) : GetGPR(reg, &ptr_val);
226 bool success = is_float ? GetFPR(reg_lo, &ptr_val_lo) : GetGPR(reg_lo, &ptr_val_lo);
227 success &= is_float ? GetFPR(reg_hi, &ptr_val_hi) : GetGPR(reg_hi, &ptr_val_hi);
277 bool success = is_float ? GetFPR(reg, &old_reg_val) : GetGPR(reg, &old_reg_val);
342 bool success = is_float ? GetFPR(reg_lo, &old_reg_val_lo) : GetGPR(reg_lo, &old_reg_val_lo);
343 success &= is_float ? GetFPR(reg_hi, &old_reg_val_hi) : GetGPR(reg_hi, &old_reg_val_hi);
379 bool StackVisitor::GetGPR(uint32_t reg, uintptr_t* val) const {
381 return context_->GetGPR(reg, val);
stack.h 740 bool GetGPR(uint32_t reg, uintptr_t* val) const;

Completed in 157 milliseconds