Lines Matching refs:uintptr_t
60 std::shared_ptr<DfxRegs> DfxRegs::CreateFromRegs(const UnwindMode mode, const uintptr_t* regs, in CreateFromRegs()
113 …emcpy_s(dfxregs->regsData_.data(), REG_LAST * sizeof(uintptr_t), ®s, REG_LAST * sizeof(uintptr_… in CreateRemoteRegs()
121 std::vector<uintptr_t> DfxRegs::GetRegsData() const in GetRegsData()
126 void DfxRegs::SetRegsData(const std::vector<uintptr_t>& regs) in SetRegsData()
131 void DfxRegs::SetRegsData(const uintptr_t* regs, const size_t size) in SetRegsData()
134 if (memcpy_s(RawData(), cpySize * sizeof(uintptr_t), regs, cpySize * sizeof(uintptr_t)) != 0) { in SetRegsData()
139 uintptr_t* DfxRegs::GetReg(size_t idx) in GetReg()
147 void DfxRegs::SetReg(const int idx, const uintptr_t* val) in SetReg()
155 void DfxRegs::GetSpecialRegs(uintptr_t& fp, uintptr_t& lr, uintptr_t& sp, uintptr_t& pc) const in GetSpecialRegs()
165 void DfxRegs::SetSpecialRegs(uintptr_t fp, uintptr_t lr, uintptr_t sp, uintptr_t pc) in SetSpecialRegs()
175 uintptr_t DfxRegs::GetSp() const in GetSp()
180 void DfxRegs::SetSp(uintptr_t sp) in SetSp()
185 uintptr_t DfxRegs::GetPc() const in GetPc()
190 void DfxRegs::SetPc(uintptr_t pc) in SetPc()
195 uintptr_t DfxRegs::GetFp() const in GetFp()
204 void DfxRegs::SetFp(uintptr_t fp) in SetFp()
211 std::string DfxRegs::GetSpecialRegsName(uintptr_t val) const in GetSpecialRegsName()
213 uintptr_t fp = 0, lr = 0, sp = 0, pc = 0; in GetSpecialRegsName()
248 uintptr_t fp = 0, lr = 0, sp = 0, pc = 0; in PrintSpecialRegs()