Home
last modified time | relevance | path

Searched refs:m_address (Results 1 – 16 of 16) sorted by relevance

/external/deqp/framework/delibs/decpp/
DdeSocket.hpp53 const char* getHost (void) const { return deSocketAddress_getHost(m_address); } in getHost()
54 int getPort (void) const { return deSocketAddress_getPort(m_address); } in getPort()
55 deSocketFamily getFamily (void) const { return deSocketAddress_getFamily(m_address); } in getFamily()
56 deSocketType getType (void) const { return deSocketAddress_getType(m_address); } in getType()
57 …deSocketProtocol getProtocol (void) const { return deSocketAddress_getProtocol(m_address); … in getProtocol()
59 operator deSocketAddress* () { return m_address; } in operator deSocketAddress*()
60 operator const deSocketAddress* () const { return m_address; } in operator const deSocketAddress*()
62 deSocketAddress* getPtr (void) { return m_address; } in getPtr()
69 deSocketAddress* m_address; member in de::SocketAddress
DdeSocket.cpp36 m_address = deSocketAddress_create(); in SocketAddress()
37 if (!m_address) in SocketAddress()
43 deSocketAddress_destroy(m_address); in ~SocketAddress()
48 if (!deSocketAddress_setHost(m_address, host)) in setHost()
54 if (!deSocketAddress_setPort(m_address, port)) in setPort()
60 if (!deSocketAddress_setFamily(m_address, family)) in setFamily()
66 if (!deSocketAddress_setType(m_address, type)) in setType()
72 if (!deSocketAddress_setProtocol(m_address, protocol)) in setProtocol()
/external/lldb/source/Core/
DValueObjectMemory.cpp59 m_address (address), in ValueObjectMemory()
68 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in ValueObjectMemory()
76 lldb::addr_t file_address = m_address.GetFileAddress(); in ValueObjectMemory()
84 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory()
95 m_address (address), in ValueObjectMemory()
108 lldb::addr_t load_address = m_address.GetLoadAddress (target_sp.get()); in ValueObjectMemory()
116 lldb::addr_t file_address = m_address.GetFileAddress(); in ValueObjectMemory()
124 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory()
190 if (m_address.IsValid()) in UpdateValue()
220 lldb::addr_t load_addr = m_address.GetLoadAddress(target); in UpdateValue()
[all …]
DValueObjectDynamicValue.cpp40 m_address (), in ValueObjectDynamicValue()
215 if (!m_address.IsValid() || m_address != dynamic_address) in UpdateValue()
217 if (m_address.IsValid()) in UpdateValue()
221 m_address = dynamic_address; in UpdateValue()
223 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in UpdateValue()
265 if (m_address.IsValid() && m_dynamic_type_info) in UpdateValue()
DDisassembler.cpp556 m_address (address), in Instruction()
571 m_address_class = m_address.GetAddressClass(); in GetAddressClass()
591 m_address.Dump(&ss, in Dump()
/external/lldb/source/Breakpoint/
DBreakpointLocation.cpp46 m_address (addr), in BreakpointLocation()
64 return m_address.GetOpcodeLoadAddress (&m_owner.GetTarget()); in GetLoadAddress()
70 return m_address; in GetAddress()
494 m_address.GetOpcodeLoadAddress (&m_owner.GetTarget())); in ResolveBreakpointSite()
543 if (m_address.IsSectionOffset()) in GetDescription()
545 m_address.CalculateSymbolContext(&sc); in GetDescription()
550 … sc.DumpStopContext (s, m_owner.GetTarget().GetProcessSP().get(), m_address, false, true, false); in GetDescription()
601 …if (m_address.IsSectionOffset() && (level == eDescriptionLevelFull || level == eDescriptionLevelIn… in GetDescription()
613 m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, Address::DumpStyleFileAddress); in GetDescription()
615m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, Address::DumpStyleModuleWithFileAddres… in GetDescription()
[all …]
/external/lldb/test/functionalities/type_completion/
Dmain.cpp18 std::string& GetAddress() { return *m_address; } in GetAddress()
19 …NameAndAddress(const char* N, const char* A) : m_name(new std::string(N)), m_address(new std::stri… in NameAndAddress()
28 std::string* m_address; member in NameAndAddress
/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugArangeSet.cpp255 DescriptorContainsAddress (dw_addr_t address) : m_address(address) {} in DescriptorContainsAddress()
258 return (m_address >= desc.address) && (m_address < (desc.address + desc.length)); in operator ()()
261 const dw_addr_t m_address; member in DescriptorContainsAddress
/external/lldb/source/Target/
DStopInfo.cpp118 m_address (LLDB_INVALID_ADDRESS), in StopInfoBreakpoint()
131 m_address (LLDB_INVALID_ADDRESS), in StopInfoBreakpoint()
156 m_address = bp_site_sp->GetLoadAddress(); in StoreBPInfo()
289 else if (m_address == LLDB_INVALID_ADDRESS) in GetDescription()
292 …intf("breakpoint site %" PRIi64 " which has been deleted - was at 0x%" PRIx64, m_value, m_address); in GetDescription()
514 …lldb::addr_t m_address; // We use this to capture the breakpoint site address when we create… member in lldb_private::StopInfoBreakpoint
/external/lldb/include/lldb/Core/
DDisassembler.h42 return m_address; in GetAddress()
77 m_address = addr; in SetAddress()
129 Address m_address; // The section offset address of this instruction
DValueObjectMemory.h69 Address m_address; ///< The variable that this value object is based upon variable
DValueObjectDynamicValue.h115 Address m_address; ///< The variable that this value object is based upon variable
/external/lldb/source/Plugins/Disassembler/llvm/
DDisassemblerLLVMC.cpp75 lldb::addr_t pc = m_address.GetFileAddress(); in DoesBranch()
203 const addr_t pc = m_address.GetFileAddress(); in Decode()
255 lldb::addr_t pc = m_address.GetFileAddress(); in CalculateMnemonicOperandsAndComment()
272 const lldb::addr_t load_addr = m_address.GetLoadAddress(target); in CalculateMnemonicOperandsAndComment()
/external/lldb/include/lldb/Breakpoint/
DBreakpointLocation.h385 Address m_address; ///< The address defining this location. variable
/external/lldb/include/lldb/Expression/
DClangUserExpression.h400 …Address m_address; ///< The address the process i… variable
/external/lldb/source/Expression/
DClangUserExpression.cpp341 m_address = frame_sp->GetFrameCodeAddress(); in InstallContext()
360 if (m_address.IsValid()) in LockAndCheckContext()
365 …return (0 == Address::CompareLoadAddress(m_address, frame_sp->GetFrameCodeAddress(), target_sp.get… in LockAndCheckContext()