Searched defs:SetMemory (Results 1 - 2 of 2) sorted by relevance

/system/core/libunwindstack/tests/
H A DMemoryFake.cpp26 void MemoryFake::SetMemory(uint64_t addr, const void* memory, size_t length) { function in class:unwindstack::MemoryFake
H A DMemoryFake.h37 void SetMemory(uint64_t addr, const void* memory, size_t length);
40 SetMemory(addr, &value, sizeof(value));
44 SetMemory(addr, &value, sizeof(value));
48 SetMemory(addr, &value, sizeof(value));
52 SetMemory(addr, &value, sizeof(value));
55 void SetMemory(uint64_t addr, std::vector<uint8_t> values) { function in class:unwindstack::MemoryFake
56 SetMemory(addr, values.data(), values.size());
59 void SetMemory(uint64_t addr, std::string string) { function in class:unwindstack::MemoryFake
60 SetMemory(addr, string.c_str(), string.size() + 1);

Completed in 83 milliseconds