Searched refs:address (Results 201 - 225 of 753) sorted by relevance

1234567891011>>

/freebsd-current/usr.sbin/ypbind/
H A Dyp_ping.c106 __pmap_getport(struct sockaddr_in *address, u_long program, u_long version, argument
114 address->sin_port = htons(PMAPPORT);
116 client = clntudp_bufcreate(address, PMAPPROG,
136 address->sin_port = 0;
187 * - We only get the address of the machine that replied in the
/freebsd-current/sys/netgraph/bluetooth/include/
H A Dng_btsocket_rfcomm.h123 u_int8_t address; member in struct:rfcomm_frame_hdr
131 u_int8_t address; member in struct:rfcomm_cmd_hdr
147 u_int8_t address; member in struct:rfcomm_mcc_msc
166 u_int8_t address; member in struct:rfcomm_mcc_rls
286 bdaddr_t src; /* source address */
287 bdaddr_t dst; /* dest. address */
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DExportTrie.cpp60 uint64_t address; member in struct:__anon1201::ExportInfo
64 : address(sym.getVA() - imageBase) {
103 // uleb128 address;
133 size += getULEB128Size(info->address);
174 buf += encodeULEB128(info->address, buf);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_mac.cpp130 vm_address_t address = start; local
134 while (address < end_address) {
140 mach_task_self(), &address, &vm_region_size, VM_REGION_EXTENDED_INFO,
147 address += vm_region_size;
230 Printf("ThreadSanitizer: unsupported vm address limit %p, expected %p.\n",
/freebsd-current/sys/sys/
H A Dlinker.h67 caddr_t address; member in struct:common_symbol
81 caddr_t address; /* load address */ member in struct:linker_file
83 caddr_t ctors_addr; /* address of .ctors/.init_array */
90 caddr_t dtors_addr; /* address of .dtors/.fini_array */
227 #define MODINFO_ADDR 0x0003 /* Loaded address */
246 #define MODINFOMD_CTORS_ADDR 0x000a /* address of .ctors */
354 caddr_t address; /* load address */ member in struct:kld_file_stat_1
364 caddr_t address; /* loa member in struct:kld_file_stat
[all...]
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DMapFile.cpp12 // Header (program name, timestamp info, preferred load address)
14 // Section list (Start = Section index:Base address):
151 uint64_t address = 0;
155 address = absSym->getVA();
162 address = sym->getRVA();
164 address -= sec->header.VirtualAddress;
185 writeHeader(os, sectionIdx, address);
246 os << " Preferred load address is "
279 auto address = cr.first->getRVA() - sec->header.VirtualAddress; local
280 writeHeader(os, sec->sectionIndex, address);
[all...]
/freebsd-current/sys/arm/ti/
H A Dti_sysc.c122 uint64_t address; member in struct:sysc_reg
139 /* Offset from host base address */
165 return (sc->reg[REG_REV].address);
179 return (sc->reg[REG_SYSC].address);
193 return (sc->reg[REG_SYSS].address);
282 /* Get parents address and size properties */
283 err = OF_searchencprop(OF_parent(node), "#address-cells",
288 DPRINTF(sc->dev, "Expect parent #address-cells=[1||2]\n");
310 /* Make sure address & size are 0 */
312 sc->reg[idx].address
[all...]
/freebsd-current/usr.sbin/kldxref/
H A Def.c75 static int ef_seg_read_rel(elf_file_t ef, GElf_Addr address, size_t len,
77 static int ef_seg_read_string(elf_file_t ef, GElf_Addr address, size_t len,
183 /* get address of first entry */
190 /* get address of last entry */
515 ef_seg_read_rel(elf_file_t ef, GElf_Addr address, size_t len, void *dest) argument
522 ofs = ef_get_offset(ef, address);
525 warnx("ef_seg_read_rel(%s): bad address (%jx)",
526 ef->ef_name, (uintmax_t)address);
534 error = elf_reloc(ef->ef_efile, r, ELF_T_REL, 0, address,
540 error = elf_reloc(ef->ef_efile, a, ELF_T_RELA, 0, address,
549 ef_seg_read_string(elf_file_t ef, GElf_Addr address, size_t len, char *dest) argument
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libcdep.cpp174 bool Symbolizer::FindModuleNameAndOffsetForAddress(uptr address, argument
178 const LoadedModule *module = FindModuleForAddress(address);
182 *module_offset = address - module->base_address();
202 uptr address) {
204 if (modules[i].containsAddress(address)) {
211 const LoadedModule *Symbolizer::FindModuleForAddress(uptr address) { argument
217 const LoadedModule *module = SearchForModule(modules_, address);
226 module = SearchForModule(modules_, address);
232 module = SearchForModule(fallback_modules_, address);
354 cur = SymbolizedStack::New(res->info.address);
201 SearchForModule(const ListOfModules &modules, uptr address) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.h177 bool WriteBits32UnknownToMemory(lldb::addr_t address);
215 lldb::addr_t address, uint32_t size,
229 return ReadMemoryUnsigned(context, address, size, fail_value, success_ptr);
233 lldb::addr_t address, uint64_t data_val, uint32_t size)
248 return WriteMemoryUnsigned(context, address, data_val, size);
252 lldb::addr_t address, uint32_t size,
266 return ReadMemoryUnsigned(context, address, size, fail_value, success_ptr);
270 lldb::addr_t address, uint64_t data_val, uint32_t size)
285 return WriteMemoryUnsigned(context, address, data_val, size);
214 MemARead(EmulateInstruction::Context &context, lldb::addr_t address, uint32_t size, uint64_t fail_value, bool *success_ptr) argument
232 MemAWrite(EmulateInstruction::Context &context, lldb::addr_t address, uint64_t data_val, uint32_t size) argument
251 MemURead(EmulateInstruction::Context &context, lldb::addr_t address, uint32_t size, uint64_t fail_value, bool *success_ptr) argument
269 MemUWrite(EmulateInstruction::Context &context, lldb::addr_t address, uint64_t data_val, uint32_t size) argument
/freebsd-current/sys/dev/aic7xxx/aicasm/
H A Daicasm_symbol.c261 || (!field && (curnode->symbol->info.rinfo->address >
262 newnode->symbol->info.rinfo->address))) {
282 && (cursymbol->info.rinfo->address >
283 symbol->info.rinfo->address))) {
420 regnode->symbol->info.rinfo->address);
438 regnode->symbol->info.rinfo->address);
466 * Sort the registers by address with a simple insertion sort.
605 value = curnode->symbol->info.rinfo->address;
614 value = parent->info.rinfo->address;
670 curnode->symbol->info.linfo->address);
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp138 Address address; local
140 if (!target.GetSectionLoadList().ResolveLoadAddress(vm_addr, address)) {
141 address.SetRawAddress(vm_addr);
143 sb_bp_location.SetLocation(bkpt_sp->FindLocationByAddress(address));
158 Address address; local
160 if (!target.GetSectionLoadList().ResolveLoadAddress(vm_addr, address)) {
161 address.SetRawAddress(vm_addr);
163 break_id = bkpt_sp->FindLocationIDByAddress(address);
536 SBError SBBreakpoint::AddLocation(SBAddress &address) { argument
537 LLDB_INSTRUMENT_VA(this, address);
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp78 address = OptionArgParser::ToAddress(execution_context, option_arg,
95 address = LLDB_INVALID_ADDRESS;
110 lldb::addr_t address; member in class:CommandObjectSourceInfo::CommandOptions
294 // Given an address and a list of modules, append the symbol contexts of all
295 // line entries containing the address found in the modules and return the
306 // The target isn't loaded yet, we need to lookup the file address in all
325 error_strm.Printf("Source information for file address 0x%" PRIx64
329 // The target has some things loaded, resolve this address to a compile
349 " no source information available for this address.\n",
362 error_strm.Printf("Unable to resolve address
698 lldb::addr_t address; member in class:CommandObjectSourceList::CommandOptions
[all...]
/freebsd-current/sys/dev/acpica/
H A Dacpi_pxm.c434 vm_paddr_t address; local
438 address = phys_avail[0];
445 while (address >= mem_info[i].start &&
446 address <= mem_info[i].end) {
457 address = phys_avail[j];
459 address = mem_info[i].end + 1;
/freebsd-current/sys/dev/isci/
H A Disci.c569 * @param[in] address This parameter depicts the address into
578 void *address, uint32_t write_value)
585 uint32_t bar = (uint32_t)(((POINTER_UINT)address & 0xF0000000) >> 28);
586 bus_size_t offset = (bus_size_t)((POINTER_UINT)address & 0x0FFFFFFF);
597 * @param[in] address This parameter depicts the address from
605 scic_cb_pci_read_dword(SCI_CONTROLLER_HANDLE_T scic_controller, void *address) argument
612 uint32_t bar = (uint32_t)(((POINTER_UINT)address & 0xF0000000) >> 28);
613 bus_size_t offset = (bus_size_t)((POINTER_UINT)address
577 scic_cb_pci_write_dword(SCI_CONTROLLER_HANDLE_T scic_controller, void *address, uint32_t write_value) argument
[all...]
/freebsd-current/lib/libvgl/
H A Dbitmap.c50 byte *address; local
122 address = dst->Bitmap + VGLAdpInfo.va_line_width * y + x/4;
127 address[planepos] = line[pos];
129 ++address;
152 address = dst->Bitmap + (dst->VXsize * y + x) * dst->PixelBytes;
153 bcopy(line, address, width * dst->PixelBytes);
/freebsd-current/lib/libc/string/
H A DMakefile.inc37 CFLAGS.strlen.c+= -fno-sanitize=address
38 CFLAGS.strchrnul.c+= -fno-sanitize=address
39 CFLAGS.memchr.c+= -fno-sanitize=address
/freebsd-current/stand/i386/pmbr/
H A Dpmbr.S36 .set LOAD,0x7c00 # Load address
37 .set EXEC,0x600 # Execution address
41 .set STACK,EXEC+SECSIZE*4 # Stack address
42 .set GPT_ADDR,STACK # GPT header address
50 .set PART_ADDR,GPT_ADDR+SECSIZE # GPT partition array address
72 # Relocate ourself to a lower address so that we have more room to load
184 pushl 0x0(%si) # address
185 pushw %es # Set the address of
199 movw $DPBUF,%si # Set the address of result buf
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DTraceDumper.cpp144 item.symbol_info->address,
214 segment.GetFirstInstructionSymbolInfo().address,
227 segment.GetLastInstructionSymbolInfo().address,
470 /// Find the symbol context for the given address reusing the previous
473 CalculateSymbolContext(const Address &address, argument
478 range.Contains(address))
482 address.CalculateSymbolContext(&sc, eSymbolContextEverything);
486 /// Find the disassembler for the given address reusing the previous
495 .GetInstructionAtAddress(symbol_info.address))
504 symbol_info.address))
[all...]
/freebsd-current/crypto/openssh/regress/unittests/sshkey/
H A Dmktestdata.sh145 -Oforce-command=/bin/ls -Ono-port-forwarding -Osource-address=10.0.0.0/8 \
148 -Oforce-command=/bin/ls -Ono-port-forwarding -Osource-address=10.0.0.0/8 \
151 -Oforce-command=/bin/ls -Ono-port-forwarding -Osource-address=10.0.0.0/8 \
154 -Oforce-command=/bin/ls -Ono-port-forwarding -Osource-address=10.0.0.0/8 \
157 -Oforce-command=/bin/ls -Ono-port-forwarding -Osource-address=10.0.0.0/8 \
160 -Oforce-command=/bin/ls -Ono-port-forwarding -Osource-address=10.0.0.0/8 \
170 -Oforce-command=/bin/ls -Ono-port-forwarding -Osource-address=10.0.0.0/8 \
173 -Oforce-command=/bin/ls -Ono-port-forwarding -Osource-address=10.0.0.0/8 \
/freebsd-current/contrib/opencsd/decoder/include/opencsd/c_api/
H A Dopencsd_c_api.h259 * @param address : Start address of memory area.
265 OCSD_C_API ocsd_err_t ocsd_dt_add_binfile_mem_acc(const dcd_tree_handle_t handle, const ocsd_vaddr_t address, const ocsd_mem_space_acc_t mem_space, const char *filepath);
274 * offset into the binary file, the start address for this offset and the size of the region.
290 * @param address : Start address of memory area.
297 OCSD_C_API ocsd_err_t ocsd_dt_add_buffer_mem_acc(const dcd_tree_handle_t handle, const ocsd_vaddr_t address, const ocsd_mem_space_acc_t mem_space, const uint8_t *p_mem_buffer, const uint32_t mem_length);
302 * address range supplied for the memory spaces covered.
305 * @param st_address : Start address of memory area covered by the callback.
306 * @param en_address : End address o
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVLine.h74 // Use the offset to store the line address.
76 void setAddress(uint64_t address) { setOffset(address); } argument
/freebsd-current/usr.sbin/bhyve/
H A Dacpi_device.c121 const UINT8 write_protected, const UINT32 address, const UINT32 length)
134 res->data.FixedMemory32.Address = address;
120 acpi_device_add_res_fixed_memory32(struct acpi_device *const dev, const UINT8 write_protected, const UINT32 address, const UINT32 length) argument
/freebsd-current/sys/dev/isci/scil/
H A Dscic_user_callback.h224 * @brief This method simply returns the virtual address associated
239 * @return A virtual address pointer to the location specified by the
273 * address for the supplied virtual address when building an
279 * for which the physical address is being requested.
280 * @param[in] virtual_address This parameter is the virtual address which
281 * is to be returned as a physical address.
282 * @param[out] physical_address The physical address for the supplied virtual
283 * address.
353 * @brief This callback method asks the user to provide the address
[all...]
/freebsd-current/sys/contrib/dev/athk/ath10k/
H A Dpci.h42 /* Pipe configuration Target address */
46 /* Service to pipe map Target address */
56 /* Message Signalled Interrupt address */
176 /* chip specific methods for converting target CPU virtual address
177 * space to CE address space
222 int ath10k_pci_hif_diag_read(struct ath10k *ar, u32 address, void *buf,
224 int ath10k_pci_diag_write_mem(struct ath10k *ar, u32 address,

Completed in 210 milliseconds

1234567891011>>