Lines Matching refs:stack_memory
2669 StackMemory stack_memory; in ReadStackMemory() local
2670 stack_memory.length = read_size; in ReadStackMemory()
2671 if (DNBProcessMemoryRead(pid, fp, read_size, stack_memory.bytes) != in ReadStackMemory()
2678 stack_mmap[fp] = stack_memory; in ReadStackMemory()
2681 fp = ((uint32_t *)stack_memory.bytes)[0]; in ReadStackMemory()
2683 fp = ((uint64_t *)stack_memory.bytes)[0]; in ReadStackMemory()
2880 for (const auto &stack_memory : stack_mmap) { in SendStopReplyPacketForThread() local
2881 ostrm << "memory:" << HEXBASE << stack_memory.first << '='; in SendStopReplyPacketForThread()
2882 append_hex_value(ostrm, stack_memory.second.bytes, in SendStopReplyPacketForThread()
2883 stack_memory.second.length, false); in SendStopReplyPacketForThread()
5566 for (const auto &stack_memory : stack_mmap) { in GetJSONThreadsInfo() local
5569 stack_memory_sp->AddIntegerItem("address", stack_memory.first); in GetJSONThreadsInfo()
5571 "bytes", stack_memory.second.bytes, stack_memory.second.length); in GetJSONThreadsInfo()