Home | History | Annotate | Download | only in handler

Lines Matching defs:memory

319   UntypedMDRVA memory(&writer_);
330 if (!memory.Allocate(size))
338 result = memory.Copy(dummy_stack, size);
341 if (!memory.Allocate(size))
353 result = memory.Copy(&stack_memory[0], size);
355 result = memory.Copy(reinterpret_cast<const void *>(start_addr), size);
360 stack_location->memory = memory.location();
1013 // If the dump has an exception, include some memory around the
1026 // it's contained within. If it's not in a known memory region,
1054 ip_memory_d.memory.data_size = static_cast<uint32_t>(range_diff);
1057 // the memory bytes aren't filled in yet so the entire
1058 // list can be written first. The memory bytes will get filled
1059 // in after the memory list is written.
1065 // Now fill in the memory list and write it.
1083 // Now read the memory around the instruction pointer.
1085 if (!ip_memory.Allocate(ip_memory_d.memory.data_size))
1090 vector<uint8_t> memory;
1093 ip_memory_d.memory.data_size,
1094 memory) != KERN_SUCCESS) {
1098 ip_memory.Copy(&memory[0], ip_memory_d.memory.data_size);
1100 // In-process, just copy from local memory.
1103 ip_memory_d.memory.data_size);
1106 ip_memory_d.memory = ip_memory.location();