Home
last modified time | relevance | path

Searched refs:m_addr (Results 1 – 23 of 23) sorted by relevance

/freebsd/sbin/setkey/
H A Dparse.y854 struct sadb_address m_addr; in setkeymsg_spdaddr()
906 m_addr.sadb_address_len = PFKEY_UNIT64(sizeof(m_addr) + in setkeymsg_spdaddr()
908 m_addr.sadb_address_exttype = SADB_EXT_ADDRESS_SRC;
909 m_addr.sadb_address_proto = upper;
910 m_addr.sadb_address_prefixlen =
912 m_addr.sadb_address_reserved = 0; in setkeymsg_addr()
914 setvarbuf(buf, &l, (struct sadb_ext *)&m_addr, in setkeymsg_addr()
915 sizeof(m_addr), (caddr_t)sa, salen); in setkeymsg_addr()
920 m_addr in setkeymsg_addr() local
833 struct sadb_address m_addr; setkeymsg_spdaddr() local
1037 struct sadb_address m_addr; setkeymsg_add() local
[all...]
H A Dtest-pfkey.c474 struct sadb_address m_addr; local
504 m_addr.sadb_address_len = PFKEY_UNIT64(len);
505 m_addr.sadb_address_exttype = ext;
506 m_addr.sadb_address_proto =
508 m_addr.sadb_address_prefixlen = plen;
509 m_addr.sadb_address_reserved = 0;
512 (caddr_t)&m_addr, sizeof(struct sadb_address),
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp25 m_addr(addr), m_resolved_addr(LLDB_INVALID_ADDRESS), in BreakpointResolverAddress()
31 m_addr(addr), m_resolved_addr(LLDB_INVALID_ADDRESS) {} in BreakpointResolverAddress()
66 SectionSP section_sp = m_addr.GetSection(); in SerializeToStructuredData()
74 m_addr.GetOffset()); in SerializeToStructuredData()
77 m_addr.GetOffset()); in SerializeToStructuredData()
93 if (m_addr.GetSection() || m_module_filespec) in ResolveBreakpoint()
106 if (m_addr.GetSection()) in ResolveBreakpointInModules()
120 if (filter.AddressPasses(m_addr)) { in SearchCallback()
124 // m_addr to use that. in SearchCallback()
125 if (!m_addr in SearchCallback()
[all...]
H A DBreakpointSite.cpp78 GetID(), (uint64_t)m_addr, IsHardware() ? "hardware" : "software", in Dump()
167 const lldb::addr_t bp_end_addr = m_addr + m_byte_size; in IntersectsRange()
174 if (end_addr <= m_addr) in IntersectsRange()
178 if (m_addr < addr) { in IntersectsRange()
185 *opcode_offset = addr - m_addr; in IntersectsRange()
188 *intersect_addr = m_addr; in IntersectsRange()
191 std::min<lldb::addr_t>(bp_end_addr, end_addr) - m_addr; in IntersectsRange()
H A DWatchpointResource.cpp21 : m_id(GetNextID()), m_addr(addr), m_size(size), in WatchpointResource()
29 addr_t WatchpointResource::GetLoadAddress() const { return m_addr; } in GetLoadAddress()
47 if (addr >= m_addr && addr < m_addr + m_size) in Contains()
117 s->Printf("addr = 0x%8.8" PRIx64 " size = %zu", m_addr, m_size); in Dump()
H A DStoppointSite.cpp16 : m_id(id), m_addr(addr), m_is_hardware_required(hardware), m_byte_size(0), in StoppointSite()
21 : m_id(id), m_addr(addr), m_is_hardware_required(hardware), in StoppointSite()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStoppointSite.h20 StoppointSite(lldb::break_id_t bid, lldb::addr_t m_addr, bool hardware);
22 StoppointSite(lldb::break_id_t bid, lldb::addr_t m_addr,
27 virtual lldb::addr_t GetLoadAddress() const { return m_addr; } in GetLoadAddress()
29 virtual void SetLoadAddress(lldb::addr_t addr) { m_addr = addr; } in SetLoadAddress()
52 lldb::addr_t m_addr;
56 lldb::addr_t m_addr; global() variable
H A DBreakpointResolverAddress.h64 Address m_addr; // The address - may be Section Offset or
68 FileSpec m_module_filespec; // If this filespec is Valid, and m_addr is an
H A DWatchpointResource.h143 lldb::addr_t m_addr; variable
H A DBreakpointSite.h237 lldb::addr_t m_addr, bool use_hardware);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.cpp102 m_addr = ReadRegisterUnsigned(eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC, in ReadInstruction()
108 m_opcode.SetOpcode32(ReadMemoryUnsigned(ctx, m_addr, 4, 0, &success), in ReadInstruction()
112 m_addr = LLDB_INVALID_ADDRESS; in ReadInstruction()
214 LLDB_LOG(log, "EmulateMFSPR: {0:X+8}: mfspr r0, lr", m_addr); in EmulateMFSPR()
241 LLDB_LOG(log, "EmulateLD: {0:X+8}: ld r{1}, {2}(r{3})", m_addr, rt, ids, ra); in EmulateLD()
279 LLDB_LOG(log, "EmulateSTD: {0:X+8}: std{1} r{2}, {3}(r{4})", m_addr, in EmulateSTD()
337 LLDB_LOG(log, "EmulateOR: {0:X+8}: mr r{1}, r{2}", m_addr, ra, rb); in EmulateOR()
372 LLDB_LOG(log, "EmulateADDI: {0:X+8}: addi r1, r1, {1}", m_addr, si_val); in EmulateADDI()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeBreakpointList.h19 lldb::addr_t m_addr; member
H A DNativeWatchpointList.h19 lldb::addr_t m_addr; member
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DEmulateInstruction.cpp534 m_addr = LLDB_INVALID_ADDRESS; in SetInstruction()
537 m_addr = inst_addr.GetLoadAddress(target); in SetInstruction()
538 if (m_addr == LLDB_INVALID_ADDRESS) in SetInstruction()
539 m_addr = inst_addr.GetFileAddress(); in SetInstruction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.cpp119 m_addr = ReadPC(&success); in ReadInstruction()
121 m_addr = LLDB_INVALID_ADDRESS; in ReadInstruction()
128 uint32_t inst = (uint32_t)ReadMemoryUnsigned(ctx, m_addr, 4, 0, &success); in ReadInstruction()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DEmulateInstruction.h440 lldb::addr_t GetAddress() const { return m_addr; } in GetAddress()
507 lldb::addr_t m_addr = LLDB_INVALID_ADDRESS; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp374 m_addr = ReadRegisterUnsigned(eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC, in ReadInstruction()
381 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success), in ReadInstruction()
385 m_addr = LLDB_INVALID_ADDRESS; in ReadInstruction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.cpp1005 uint64_t next_inst_addr = (m_addr & (~1ull)) + current_inst_size; in SetInstruction()
1036 m_addr = ReadRegisterUnsigned(eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC, in ReadInstruction()
1043 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success), in ReadInstruction()
1047 m_addr = LLDB_INVALID_ADDRESS; in ReadInstruction()
1064 m_addr, llvm::nulls()); in EvaluateInstruction()
1067 m_addr, llvm::nulls()); in EvaluateInstruction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.cpp933 m_addr = ReadRegisterUnsigned(eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC, in ReadInstruction()
940 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success), in ReadInstruction()
944 m_addr = LLDB_INVALID_ADDRESS; in ReadInstruction()
960 m_addr, llvm::nulls()); in EvaluateInstruction()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp3477 m_addr = OptionArgParser::ToAddress(execution_context, option_arg, in SetOptionValue()
3479 if (m_addr == LLDB_INVALID_ADDRESS) in SetOptionValue()
3500 m_addr = LLDB_INVALID_ADDRESS; in OptionParsingStarting()
3512 lldb::addr_t m_addr = LLDB_INVALID_ADDRESS; // Holds the address to lookup member in CommandObjectTargetModulesShowUnwind::CommandOptions
3563 if (target->GetSectionLoadList().ResolveLoadAddress(m_options.m_addr, in DoExecute()
3818 m_addr = OptionArgParser::ToAddress(execution_context, option_arg, in SetOptionValue()
3892 m_addr = LLDB_INVALID_ADDRESS; in OptionParsingStarting()
3918 lldb::addr_t m_addr; // Holds the address to lookup member in CommandObjectTargetModulesLookup::CommandOptions
3989 if (m_options.m_addr != LLDB_INVALID_ADDRESS) { in LookupInModule()
3996 m_options.m_addr, m_options.m_offset, m_options.m_verbose, in LookupInModule()
/freebsd/sys/dev/bhnd/bhndb/
H A Dbhndb_pci.c175 bhnd_addr_t m_addr; /**< mapped address */ member
1557 probe->m_addr = addr; in bhndb_pci_probe_map()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp655 __FUNCTION__, inst, m_addr, pat.name); in Decode()
1638 m_addr = addr.value_or(LLDB_INVALID_ADDRESS); in ReadInstruction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp13837 m_addr = LLDB_INVALID_ADDRESS; in ReadInstruction()