Searched refs:end_addr (Results 1 - 25 of 25) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFLocationList.cpp23 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)
H A DDWARFDebugRanges.cpp172 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/include/lldb/Core/
H A DVMRange.h36 VMRange(lldb::addr_t start_addr, lldb::addr_t end_addr) : argument
38 m_byte_size(end_addr > start_addr ? end_addr - start_addr : 0)
55 Reset (lldb::addr_t start_addr, lldb::addr_t end_addr) argument
58 SetEndAddress (end_addr);
69 SetEndAddress (lldb::addr_t end_addr) argument
72 if (end_addr > base_addr)
73 m_byte_size = end_addr - base_addr;
/external/lldb/tools/debugserver/source/
H A DDNBBreakpoint.h51 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;
/external/lldb/source/Breakpoint/
H A DBreakpointSite.cpp202 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/strace/
H A Dunwind.c53 * 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/python/
H A Dmemory.py134 end_addr = int(args[1], 0)
135 if start_addr >= end_addr:
136 print_error ("error: inavlid memory range [%#x - %#x)" % (start_addr, end_addr), True, result)
138 options.size = end_addr - start_addr
159 print >>result, "Searching memory range [%#x - %#x) for" % (start_addr, end_addr),
H A Dlldb_module_utils.py39 end_file_addr = line_entry.end_addr.file_addr
H A Dsymbolication.py151 def __init__(self, start_addr = None, end_addr = None, name = None):
153 self.end_addr = end_addr
157 return self.start_addr <= addr and addr < self.end_addr;
167 self.end_addr = None
173 self.end_addr = int(range_match.group('end'), 16)
176 self.end_addr += self.start_addr
189 if self.end_addr != None:
191 return "%s=[0x%16.16x - 0x%16.16x)" % (self.name, self.start_addr, self.end_addr)
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachVMRegion.cpp60 mach_vm_address_t end_addr = EndAddress(); local
61 if (prot_size > (end_addr - addr))
62 prot_size = end_addr - addr;
/external/lldb/scripts/Python/interface/
H A DSBLineEntry.i99 __swig_getmethods__["end_addr"] = GetEndAddress
100 if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this line entry.''')
H A DSBFunction.i102 __swig_getmethods__["end_addr"] = GetEndAddress
103 if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this function.''')
H A DSBSymbol.i87 __swig_getmethods__["end_addr"] = GetEndAddress
88 if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this symbol.''')
/external/lldb/source/Commands/
H A DCommandObjectDisassemble.h75 lldb::addr_t end_addr; member in class:lldb_private::CommandObjectDisassemble::CommandOptions
H A DCommandObjectDisassemble.cpp46 end_addr (),
104 end_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
105 if (end_addr != LLDB_INVALID_ADDRESS)
188 end_addr = LLDB_INVALID_ADDRESS;
433 if (m_options.end_addr != LLDB_INVALID_ADDRESS)
435 if (m_options.end_addr <= m_options.start_addr)
441 range.SetByteSize (m_options.end_addr - m_options.start_addr);
H A DCommandObjectMemory.cpp635 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;
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dlinux_dumper.cc310 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/compiler-rt/lib/asan/
H A Dasan_poisoning.cc114 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/
H A DMemory.cpp62 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);
/external/lldb/examples/darwin/heap_find/heap/
H A Dheap_find.cpp697 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);
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp574 uint64_t end_addr = address + size;
595 while (seq_pos != last_seq && seq_pos->LowPC < end_addr) {
620 if (cur_seq.HighPC > end_addr) {
622 row.Address = end_addr;
/external/lldb/test/python_api/thread/
H A DTestThreadAPI.py269 end_addr = lineEntry.GetEndAddress().GetLoadAddress(target)
272 print "end addr:", hex(end_addr)
/external/libunwind/src/dwarf/
H A DGexpr.c193 unw_word_t operand1 = 0, operand2 = 0, tmp1, tmp2, tmp3, end_addr; local
236 end_addr = *addr + len;
244 while (*addr < end_addr)
H A DGparser.c61 unw_word_t ip, unw_word_t *addr, unw_word_t end_addr,
88 while (curr_ip <= ip && *addr < end_addr)
60 run_cfi_program(struct dwarf_cursor *c, dwarf_state_record_t *sr, unw_word_t ip, unw_word_t *addr, unw_word_t end_addr, struct dwarf_cie_info *dci) argument
/external/jemalloc/bin/
H A Djeprof.in1298 my $end_addr = $symbol_table->{$routine}->[1];
1300 my $length = hex(AddressSub($end_addr, $start_addr));
1306 $start_addr, $end_addr, $total);
1323 my $end_addr = shift;
1328 "--stop-address=0x$end_addr", $prog);
1347 $last = [$k, $filename, $linenumber, $2, $end_addr];
1425 my $end_addr = $symbol_table->{$routine}->[1];
1426 my $length = hex(AddressSub($end_addr, $start_addr));
1433 $start_addr, $end_addr,
1597 my $end_addr
[all...]

Completed in 571 milliseconds