Lines Matching refs:incre
57 size_t DfxMemory::Read(uintptr_t& addr, void* val, size_t size, bool incre)
103 if (incre) {
109 bool DfxMemory::ReadU8(uintptr_t& addr, uint8_t *val, bool incre)
111 if (Read(addr, val, sizeof(uint8_t), incre) == sizeof(uint8_t)) {
117 bool DfxMemory::ReadU16(uintptr_t& addr, uint16_t *val, bool incre)
119 if (Read(addr, val, sizeof(uint16_t), incre) == sizeof(uint16_t)) {
125 bool DfxMemory::ReadU32(uintptr_t& addr, uint32_t *val, bool incre)
127 if (Read(addr, val, sizeof(uint32_t), incre) == sizeof(uint32_t)) {
133 bool DfxMemory::ReadU64(uintptr_t& addr, uint64_t *val, bool incre)
135 if (Read(addr, val, sizeof(uint64_t), incre) == sizeof(uint64_t)) {
141 bool DfxMemory::ReadUptr(uintptr_t& addr, uintptr_t *val, bool incre)
143 if (Read(addr, val, sizeof(uintptr_t), incre) == sizeof(uintptr_t)) {
149 bool DfxMemory::ReadString(uintptr_t& addr, std::string* str, size_t maxSize, bool incre)
176 if (incre && str != nullptr) {