Home
last modified time | relevance | path

Searched refs:last_error_ (Results 1 – 18 of 18) sorted by relevance

/system/unwinding/libunwindstack/
DDwarfSection.cpp51 last_error_.code = DWARF_ERROR_NONE; in Step()
54 last_error_.code = DWARF_ERROR_ILLEGAL_STATE; in Step()
97 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in FillInCieHeader()
98 last_error_.address = memory_.cur_offset(); in FillInCieHeader()
105 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in FillInCieHeader()
106 last_error_.address = memory_.cur_offset(); in FillInCieHeader()
116 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in FillInCieHeader()
117 last_error_.address = memory_.cur_offset(); in FillInCieHeader()
122 last_error_.code = DWARF_ERROR_ILLEGAL_VALUE; in FillInCieHeader()
133 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in FillInCieHeader()
[all …]
DDwarfEhFrameWithHdr.cpp52 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in Init()
53 last_error_.address = memory_.cur_offset(); in Init()
60 last_error_.code = DWARF_ERROR_UNSUPPORTED_VERSION; in Init()
73 last_error_.code = DWARF_ERROR_ILLEGAL_VALUE; in Init()
80 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in Init()
81 last_error_.address = memory_.cur_offset(); in Init()
87 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in Init()
88 last_error_.address = memory_.cur_offset(); in Init()
93 last_error_.code = DWARF_ERROR_NO_FDES; in Init()
128 last_error_.code = DWARF_ERROR_ILLEGAL_STATE; in GetFdeFromPc()
[all …]
DElfInterfaceArm.cpp39 last_error_.code = ERROR_UNWIND_INFO; in FindEntry()
68 last_error_.code = ERROR_UNWIND_INFO; in FindEntry()
75 last_error_.code = ERROR_MEMORY_INVALID; in GetPrel31Addr()
76 last_error_.address = offset; in GetPrel31Addr()
116 last_error_.code = ERROR_UNWIND_INFO; in StepExidx()
152 last_error_.code = ERROR_NONE; in StepExidx()
161 last_error_.code = ERROR_UNWIND_INFO; in StepExidx()
165 last_error_.code = ERROR_MEMORY_INVALID; in StepExidx()
166 last_error_.address = arm.status_address(); in StepExidx()
DThreadUnwinder.cpp99 last_error_.code = ERROR_SYSTEM_CALL; in SendSignalToThread()
107 last_error_.code = ERROR_THREAD_DOES_NOT_EXIST; in SendSignalToThread()
109 last_error_.code = ERROR_SYSTEM_CALL; in SendSignalToThread()
139 last_error_.code = ERROR_THREAD_DOES_NOT_EXIST; in SendSignalToThread()
141 last_error_.code = ERROR_THREAD_TIMEOUT; in SendSignalToThread()
154 last_error_.code = ERROR_UNSUPPORTED; in UnwindWithSignal()
DDwarfOp.cpp1526 last_error_.code = DWARF_ERROR_TOO_MANY_ITERATIONS; in Eval()
1535 last_error_.code = DWARF_ERROR_NONE; in Decode()
1537 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in Decode()
1538 last_error_.address = memory_->cur_offset(); in Decode()
1544 last_error_.code = DWARF_ERROR_ILLEGAL_VALUE; in Decode()
1552 last_error_.code = DWARF_ERROR_STACK_INDEX_NOT_VALID; in Decode()
1560 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in Decode()
1561 last_error_.address = memory_->cur_offset(); in Decode()
1617 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in op_deref()
1618 last_error_.address = addr; in op_deref()
[all …]
DDwarfCfa.cpp50 last_error_.code = DWARF_ERROR_NONE; in GetLocationInfo()
51 last_error_.address = 0; in GetLocationInfo()
71 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in GetLocationInfo()
72 last_error_.address = memory_->cur_offset(); in GetLocationInfo()
84 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in GetLocationInfo()
85 last_error_.address = memory_->cur_offset(); in GetLocationInfo()
97 last_error_.code = DWARF_ERROR_ILLEGAL_STATE; in GetLocationInfo()
112 last_error_.code = DWARF_ERROR_ILLEGAL_VALUE; in GetLocationInfo()
121 last_error_.code = DWARF_ERROR_MEMORY_INVALID; in GetLocationInfo()
122 last_error_.address = memory_->cur_offset(); in GetLocationInfo()
[all …]
DDwarfOp.h60 const DwarfErrorData& last_error() { return last_error_; } in last_error()
61 DwarfErrorCode LastErrorCode() { return last_error_.code; } in LastErrorCode()
62 uint64_t LastErrorAddress() { return last_error_.address; } in LastErrorAddress()
89 DwarfErrorData last_error_{DWARF_ERROR_NONE, 0};
DElfInterface.cpp136 last_error_.code = ERROR_MEMORY_INVALID; in ReadAllHeaders()
137 last_error_.address = 0; in ReadAllHeaders()
385 last_error_.code = ERROR_MEMORY_INVALID; in GetSoname()
386 last_error_.address = offset; in GetSoname()
451 last_error_.code = ERROR_NONE; in Step()
452 last_error_.address = 0; in Step()
480 last_error_ = gnu_debugdata_interface_->last_error(); in Step()
490 last_error_.code = ERROR_NONE; in Step()
494 last_error_.code = ERROR_MEMORY_INVALID; in Step()
495 last_error_.address = section->LastErrorAddress(); in Step()
[all …]
DDwarfCfa.h86 const DwarfErrorData& last_error() { return last_error_; } in last_error()
87 DwarfErrorCode LastErrorCode() { return last_error_.code; } in LastErrorCode()
88 uint64_t LastErrorAddress() { return last_error_.address; } in LastErrorAddress()
102 DwarfErrorData last_error_;
DUnwinder.cpp152 if (!return_address_attempt || last_error_.code == ERROR_NONE) { in Unwind()
153 last_error_.code = ERROR_INVALID_MAP; in Unwind()
154 last_error_.address = step_pc; in Unwind()
202 last_error_.code = ERROR_MAX_FRAMES_EXCEEDED; in Unwind()
246 elf->GetLastError(&last_error_); in Unwind()
288 last_error_.code = ERROR_MAX_FRAMES_EXCEEDED; in Unwind()
294 last_error_.code = ERROR_REPEATED_FRAME; in Unwind()
374 last_error_.code = ERROR_INVALID_MAP; in Init()
DDwarfEhFrameWithHdr.h36 using DwarfSectionImpl<AddressType>::last_error_;
/system/unwinding/libunwindstack/include/unwindstack/
DUnwinder.h107 const ErrorData& LastError() { return last_error_; } in LastError()
108 ErrorCode LastErrorCode() { return last_error_.code; } in LastErrorCode()
109 const char* LastErrorCodeString() { return GetErrorCodeString(last_error_.code); } in LastErrorCodeString()
110 uint64_t LastErrorAddress() { return last_error_.address; } in LastErrorAddress()
131 last_error_.code = ERROR_NONE; in ClearErrors()
132 last_error_.address = 0; in ClearErrors()
148 ErrorData last_error_; variable
DElfInterface.h125 const ErrorData& last_error() { return last_error_; } in last_error()
126 ErrorCode LastErrorCode() { return last_error_.code; } in LastErrorCode()
127 uint64_t LastErrorAddress() { return last_error_.address; } in LastErrorAddress()
174 ErrorData last_error_{ERROR_NONE, 0};
DDwarfSection.h92 DwarfErrorCode LastErrorCode() { return last_error_.code; } in LastErrorCode()
93 uint64_t LastErrorAddress() { return last_error_.address; } in LastErrorAddress()
118 DwarfErrorData last_error_{DWARF_ERROR_NONE, 0};
/system/unwinding/libunwindstack/utils/
DDwarfSectionImplFake.h45 void FakeClearError() { this->last_error_.code = DWARF_ERROR_NONE; } in FakeClearError()
/system/unwinding/libunwindstack/tests/
DElfFake.h98 void FakeSetErrorCode(ErrorCode code) { last_error_.code = code; } in FakeSetErrorCode()
100 void FakeSetErrorAddress(uint64_t address) { last_error_.address = address; } in FakeSetErrorAddress()
/system/update_engine/aosp/
Dupdate_attempter_android.h283 ErrorCode last_error_{ErrorCode::kSuccess};
Dupdate_attempter_android.cc586 last_error_ = code; in ProcessingDone()
1209 if (last_error_ == ErrorCode::kUpdatedButNotActive) { in setShouldSwitchSlotOnReboot()