HomeSort by relevance Sort by last modified time
    Searched defs:end_addr (Results 1 - 15 of 15) sorted by null

  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFLocationList.cpp 23 uint64_t start_addr, end_addr; local
30 end_addr = debug_loc_data.GetMaxU64(&offset,addr_size);
32 if (start_addr == 0 && end_addr == 0)
39 end_addr + base_addr,
79 dw_addr_t end_addr = debug_loc_data.GetAddress(&offset); local
81 if (start_addr == 0 && end_addr == 0)
DWARFDebugRanges.cpp 172 dw_addr_t end_addr = end + base_addr; local
174 s.AddressRange(begin_addr, end_addr, sizeof (dw_addr_t), verbose ? " ==> addrs = " : NULL);
  /external/lldb/tools/debugserver/source/MacOSX/
MachVMRegion.cpp 60 mach_vm_address_t end_addr = EndAddress(); local
61 if (prot_size > (end_addr - addr))
62 prot_size = end_addr - addr;
  /external/lldb/source/Breakpoint/
BreakpointSite.cpp 202 const lldb::addr_t end_addr = addr + size; local
207 if (end_addr <= m_addr)
216 *intersect_size = std::min<lldb::addr_t>(bp_end_addr, end_addr) - addr;
225 *intersect_size = std::min<lldb::addr_t>(bp_end_addr, end_addr) - m_addr;
  /external/lldb/source/Commands/
CommandObjectDisassemble.h 75 lldb::addr_t end_addr; member in class:lldb_private::CommandObjectDisassemble::CommandOptions
CommandObjectMemory.cpp 635 lldb::addr_t end_addr = Args::StringToAddress(&m_exe_ctx, command.GetArgumentAtIndex(1), LLDB_INVALID_ADDRESS, 0); local
636 if (end_addr == LLDB_INVALID_ADDRESS)
643 else if (end_addr <= addr)
645 result.AppendErrorWithFormat("end address (0x%" PRIx64 ") must be greater that the start address (0x%" PRIx64 ").\n", end_addr, addr);
651 result.AppendErrorWithFormat("specify either the end address (0x%" PRIx64 ") or the count (--count %lu), not both.\n", end_addr, item_count);
656 total_byte_size = end_addr - addr;
    [all...]
  /external/libunwind/src/dwarf/
Gexpr.c 193 unw_word_t operand1 = 0, operand2 = 0, tmp1, tmp2, tmp3, end_addr; local
236 end_addr = *addr + len;
244 while (*addr < end_addr)
  /external/lldb/tools/debugserver/source/
DNBBreakpoint.h 51 const nub_addr_t end_addr = addr + size; local
56 if (end_addr <= m_addr)
65 *intersect_size = std::min<nub_addr_t>(bp_end_addr, end_addr) - addr;
74 *intersect_size = std::min<nub_addr_t>(bp_end_addr, end_addr) - m_addr;
  /art/runtime/gc/space/
region_space.cc 293 uint8_t* end_addr = AlignUp(reinterpret_cast<uint8_t*>(large_obj) + bytes_allocated, kRegionSize); local
294 CHECK_LT(begin_addr, end_addr);
295 for (uint8_t* addr = begin_addr; addr < end_addr; addr += kRegionSize) {
305 if (end_addr < Limit()) {
307 Region* following_reg = RefToRegionLocked(reinterpret_cast<mirror::Object*>(end_addr));
  /external/compiler-rt/lib/asan/
asan_poisoning.cc 114 uptr end_addr = beg_addr + size; local
116 (void *)end_addr);
118 ShadowSegmentEndpoint end(end_addr);
154 uptr end_addr = beg_addr + size; local
156 (void *)end_addr);
158 ShadowSegmentEndpoint end(end_addr);
  /external/lldb/source/Target/
Memory.cpp 62 const addr_t end_addr = (addr + size - 1); local
64 const addr_t last_cache_line_addr = end_addr - (end_addr % cache_line_byte_size);
  /system/extras/simpleperf/
environment.cpp 329 uint64_t start_addr, end_addr, pgoff; local
334 &end_addr, type, &pgoff, execname) < 4) {
342 thread.len = end_addr - start_addr;
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_dumper.cc 310 uintptr_t start_addr, end_addr, offset; local
314 const char* i2 = my_read_hex_ptr(&end_addr, i1 + 1);
335 module->size = end_addr - module->start_addr;
352 module->size = end_addr - module->start_addr;
360 module->size = end_addr - start_addr;
  /external/strace/
unwind.c 53 * end_addr is 0x7fabbb09f000
58 unsigned long end_addr; member in struct:mmap_cache_t
161 unsigned long start_addr, end_addr, mmap_offset; local
166 &start_addr, &end_addr, &exec_bit,
174 if (end_addr < start_addr) {
186 entry->end_addr == end_addr) {
191 start_addr < entry->end_addr) {
208 entry->end_addr = end_addr;
    [all...]
  /external/lldb/examples/darwin/heap_find/heap/
heap_find.cpp 697 const uint64_t end_addr = ptr_addr + ptr_size; local
704 if (ptr_addr <= info->addr && info->addr < end_addr)
725 addr < end_addr && ((end_addr - addr) >= size);
    [all...]

Completed in 471 milliseconds