Lines Matching refs:stack_memory
2665 StackMemory stack_memory; in ReadStackMemory() local
2666 stack_memory.length = read_size; in ReadStackMemory()
2667 if (DNBProcessMemoryRead(pid, fp, read_size, stack_memory.bytes) != in ReadStackMemory()
2674 stack_mmap[fp] = stack_memory; in ReadStackMemory()
2677 fp = ((uint32_t *)stack_memory.bytes)[0]; in ReadStackMemory()
2679 fp = ((uint64_t *)stack_memory.bytes)[0]; in ReadStackMemory()
2876 for (const auto &stack_memory : stack_mmap) { in SendStopReplyPacketForThread() local
2877 ostrm << "memory:" << HEXBASE << stack_memory.first << '='; in SendStopReplyPacketForThread()
2878 append_hex_value(ostrm, stack_memory.second.bytes, in SendStopReplyPacketForThread()
2879 stack_memory.second.length, false); in SendStopReplyPacketForThread()
5564 for (const auto &stack_memory : stack_mmap) { in GetJSONThreadsInfo() local
5567 stack_memory_sp->AddIntegerItem("address", stack_memory.first); in GetJSONThreadsInfo()
5569 "bytes", stack_memory.second.bytes, stack_memory.second.length); in GetJSONThreadsInfo()