Searched refs:m_addr (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DStoppointLocation.cpp25 m_addr(addr),
35 m_addr(addr),
H A DBreakpointResolverAddress.cpp35 m_addr (addr)
79 if (filter.AddressPasses (m_addr))
81 BreakpointLocationSP bp_loc_sp(m_breakpoint->AddLocation(m_addr));
104 m_addr.Dump(s, m_breakpoint->GetTarget().GetProcessSP().get(), Address::DumpStyleLoadAddress, Address::DumpStyleModuleWithFileAddress);
H A DBreakpointSite.cpp87 (uint64_t)m_addr,
201 const lldb::addr_t bp_end_addr = m_addr + m_byte_size;
207 if (end_addr <= m_addr)
211 if (m_addr < addr)
218 *opcode_offset = addr - m_addr;
223 *intersect_addr = m_addr;
225 *intersect_size = std::min<lldb::addr_t>(bp_end_addr, end_addr) - m_addr;
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DStoppointLocation.h30 lldb::addr_t m_addr,
34 lldb::addr_t m_addr,
51 return m_addr;
57 m_addr = addr;
121 lldb::addr_t m_addr; // The load address of this stop point. The base Stoppoint doesn't member in class:lldb_private::StoppointLocation
H A DBreakpointResolverAddress.h66 Address m_addr; member in class:lldb_private::BreakpointResolverAddress
H A DBreakpointSite.h287 lldb::addr_t m_addr,
/freebsd-10.3-release/sbin/setkey/
H A Dparse.y780 struct sadb_address m_addr;
826 m_addr.sadb_address_len = PFKEY_UNIT64(sizeof(m_addr) +
828 m_addr.sadb_address_exttype = SADB_EXT_ADDRESS_SRC;
829 m_addr.sadb_address_proto = upper;
830 m_addr.sadb_address_prefixlen =
832 m_addr.sadb_address_reserved = 0;
834 setvarbuf(buf, &l, (struct sadb_ext *)&m_addr,
835 sizeof(m_addr), (caddr_t)sa, salen);
840 m_addr
[all...]
H A Dtest-pfkey.c473 struct sadb_address m_addr; local
503 m_addr.sadb_address_len = PFKEY_UNIT64(len);
504 m_addr.sadb_address_exttype = ext;
505 m_addr.sadb_address_proto =
507 m_addr.sadb_address_prefixlen = plen;
508 m_addr.sadb_address_reserved = 0;
511 (caddr_t)&m_addr, sizeof(struct sadb_address),
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DProcessMessage.h78 m_addr(0) { }
165 return m_addr;
170 return m_addr;
200 m_addr(addr),
208 m_addr(0),
215 lldb::addr_t m_addr; member in class:ProcessMessage
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DMemory.h99 return m_addr;
123 return ((addr >= m_addr) && addr < (m_addr + m_byte_size));
137 const lldb::addr_t m_addr; // Base address of this block of memory member in class:lldb_private::AllocatedBlock
140 const uint32_t m_chunk_size; // The size of chunks that the memory at m_addr is divied up into
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Target/
H A DMemory.cpp212 m_addr (addr),
240 addr = m_addr;
258 addr = m_addr + last_offset;
274 addr = m_addr + last_offset;
329 // return m_addr + m_chunk_size * first_chunk_idx;
341 uint32_t offset = addr - m_addr;
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Core/
H A DEmulateInstruction.cpp63 m_addr (LLDB_INVALID_ADDRESS)
598 m_addr = LLDB_INVALID_ADDRESS;
602 m_addr = inst_addr.GetLoadAddress (target);
603 if (m_addr == LLDB_INVALID_ADDRESS)
604 m_addr = inst_addr.GetFileAddress ();
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DEmulateInstruction.h521 return m_addr;
628 lldb::addr_t m_addr; member in class:lldb_private::EmulateInstruction
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp229 : m_addr(addr), m_buff(buff), m_size(size),
236 lldb::addr_t m_addr; member in class:ReadOperation
248 m_result = DoReadMemory(pid, m_addr, m_buff, m_size, m_error);
259 : m_addr(addr), m_buff(buff), m_size(size),
266 lldb::addr_t m_addr; member in class:WriteOperation
278 m_result = DoWriteMemory(pid, m_addr, m_buff, m_size, m_error);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp3519 m_addr(LLDB_INVALID_ADDRESS)
3542 m_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
3543 if (m_addr == LLDB_INVALID_ADDRESS)
3568 m_addr = LLDB_INVALID_ADDRESS;
3585 lldb::addr_t m_addr; // Holds the address to lookup member in class:CommandObjectTargetModulesShowUnwind::CommandOptions
3657 if (target->GetSectionLoadList().ResolveLoadAddress (m_options.m_addr, addr))
3810 m_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
3880 m_addr = LLDB_INVALID_ADDRESS;
3901 lldb::addr_t m_addr; // Holds the address to lookup member in class:CommandObjectTargetModulesLookup::CommandOptions
3902 lldb::addr_t m_offset; // Subtract this offset from m_addr befor
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp12938 m_addr = LLDB_INVALID_ADDRESS;

Completed in 217 milliseconds