Searched refs:addr (Results 251 - 275 of 2815) sorted by relevance

<<11121314151617181920>>

/freebsd-10.0-release/usr.bin/ipcs/
H A Dipc.h59 void kget(int idx, void *addr, size_t size);
60 void sysctlgatherstruct(void *addr, size_t size, struct scgs_vector *vec);
/freebsd-10.0-release/contrib/openbsm/bin/auditdistd/
H A Dproto_uds.c69 uds_addr(const char *addr, struct sockaddr_un *sunp) argument
72 if (addr == NULL)
75 if (strncasecmp(addr, "uds://", 6) == 0)
76 addr += 6;
77 else if (strncasecmp(addr, "unix://", 7) == 0)
78 addr += 7;
79 else if (addr[0] == '/' && /* If it starts from /... */
80 strstr(addr, "://") == NULL)/* ...and there is no prefix... */
86 if (strlcpy(sunp->sun_path, addr, sizeof(sunp->sun_path)) >=
98 uds_common_setup(const char *addr, in argument
171 uds_server(const char *addr, void **ctxp) argument
268 uds_local_address(const void *ctx, char *addr, size_t size) argument
292 uds_remote_address(const void *ctx, char *addr, size_t size) argument
[all...]
H A Dproto_tcp.c107 tcp_addr(const char *addr, int defport, struct sockaddr_storage *sap) argument
117 if (addr == NULL)
126 if (strncasecmp(addr, "tcp4://", 7) == 0) {
127 addr += 7;
129 } else if (strncasecmp(addr, "tcp6://", 7) == 0) {
130 addr += 7;
132 } else if (strncasecmp(addr, "tcp://", 6) == 0) {
133 addr += 6;
151 if (strchr(addr, ':') != strrchr(addr, '
199 tcp_setup_new(const char *addr, int side, struct tcp_ctx **tctxp) argument
408 tcp_server(const char *addr, void **ctxp) argument
542 tcp_address_match(const void *ctx, const char *addr) argument
602 char addr[INET_ADDRSTRLEN]; local
618 char addr[INET6_ADDRSTRLEN]; local
641 tcp_local_address(const void *ctx, char *addr, size_t size) argument
665 tcp_remote_address(const void *ctx, char *addr, size_t size) argument
[all...]
H A Dproto.h43 int proto_server(const char *addr, struct proto_conn **connp);
52 bool proto_address_match(const struct proto_conn *conn, const char *addr);
53 void proto_local_address(const struct proto_conn *conn, char *addr,
55 void proto_remote_address(const struct proto_conn *conn, char *addr,
/freebsd-10.0-release/sbin/hastd/
H A Dproto_uds.c64 uds_addr(const char *addr, struct sockaddr_un *sunp) argument
67 if (addr == NULL)
70 if (strncasecmp(addr, "uds://", 6) == 0)
71 addr += 6;
72 else if (strncasecmp(addr, "unix://", 7) == 0)
73 addr += 7;
74 else if (addr[0] == '/' && /* If it starts from /... */
75 strstr(addr, "://") == NULL)/* ...and there is no prefix... */
81 if (strlcpy(sunp->sun_path, addr, sizeof(sunp->sun_path)) >=
91 uds_common_setup(const char *addr, voi argument
169 uds_server(const char *addr, void **ctxp) argument
266 uds_local_address(const void *ctx, char *addr, size_t size) argument
290 uds_remote_address(const void *ctx, char *addr, size_t size) argument
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dproc-service.c72 ps_xfer_memory (const struct ps_prochandle *ph, paddr_t addr,
81 ret = target_write_memory (addr, buf, len);
83 ret = target_read_memory (addr, buf, len);
196 ps_pdread (gdb_ps_prochandle_t ph, paddr_t addr,
199 return ps_xfer_memory (ph, addr, buf, size, 0);
205 ps_pdwrite (gdb_ps_prochandle_t ph, paddr_t addr,
208 return ps_xfer_memory (ph, addr, (char *) buf, size, 1);
215 ps_ptread (gdb_ps_prochandle_t ph, paddr_t addr,
218 return ps_xfer_memory (ph, addr, buf, size, 0);
224 ps_ptwrite (gdb_ps_prochandle_t ph, paddr_t addr,
69 ps_xfer_memory(const struct ps_prochandle *ph, paddr_t addr, char *buf, size_t len, int write) argument
192 ps_pdread(gdb_ps_prochandle_t ph, paddr_t addr, gdb_ps_read_buf_t buf, gdb_ps_size_t size) argument
201 ps_pdwrite(gdb_ps_prochandle_t ph, paddr_t addr, gdb_ps_write_buf_t buf, gdb_ps_size_t size) argument
211 ps_ptread(gdb_ps_prochandle_t ph, paddr_t addr, gdb_ps_read_buf_t buf, gdb_ps_size_t size) argument
220 ps_ptwrite(gdb_ps_prochandle_t ph, paddr_t addr, gdb_ps_write_buf_t buf, gdb_ps_size_t size) argument
[all...]
H A Dpa64solib.h143 #define DISABLE_UNSETTABLE_BREAK(addr) (pa64_solib_address(addr) != NULL)
149 #define PC_SOLIB(addr) pa64_solib_address (addr)
/freebsd-10.0-release/contrib/wpa/wpa_supplicant/
H A Dibss_rsn.c22 const u8 *addr)
27 if (os_memcmp(addr, peer->addr, ETH_ALEN) == 0)
117 const u8 *addr, int key_idx, int set_tx,
123 wpa_printf(MSG_DEBUG, "SUPP: %s(alg=%d addr=" MACSTR " key_idx=%d "
125 __func__, alg, MAC2STR(addr), key_idx, set_tx);
134 if (os_memcmp(peer->ibss_rsn->wpa_s->own_addr, peer->addr,
141 if (is_broadcast_ether_addr(addr))
142 addr = peer->addr;
21 ibss_rsn_get_peer(struct ibss_rsn *ibss_rsn, const u8 *addr) argument
116 supp_set_key(void *ctx, enum wpa_alg alg, const u8 *addr, int key_idx, int set_tx, const u8 *seq, size_t seq_len, const u8 *key, size_t key_len) argument
155 supp_mlme_setprotection(void *ctx, const u8 *addr, int protection_type, int key_type) argument
224 auth_logger(void *ctx, const u8 *addr, logger_level level, const char *txt) argument
235 auth_get_psk(void *ctx, const u8 *addr, const u8 *prev_psk) argument
246 auth_send_eapol(void *ctx, const u8 *addr, const u8 *data, size_t data_len, int encrypt) argument
264 auth_set_key(void *ctx, int vlan_id, enum wpa_alg alg, const u8 *addr, int idx, u8 *key, size_t key_len) argument
343 auth_set_eapol(void *ctx, const u8 *addr, wpa_eapol_variable var, int value) argument
433 ibss_rsn_start(struct ibss_rsn *ibss_rsn, const u8 *addr) argument
[all...]
H A Dctrl_iface_udp.c33 struct sockaddr_in addr; member in struct:wpa_ctrl_dst
62 os_memcpy(&dst->addr, from, sizeof(struct sockaddr_in));
81 if (from->sin_addr.s_addr == dst->addr.sin_addr.s_addr &&
82 from->sin_port == dst->addr.sin_port) {
111 if (from->sin_addr.s_addr == dst->addr.sin_addr.s_addr &&
112 from->sin_port == dst->addr.sin_port) {
272 struct sockaddr_in addr; local
291 os_memset(&addr, 0, sizeof(addr));
292 addr
525 struct sockaddr_in addr; local
[all...]
/freebsd-10.0-release/lib/libstand/
H A Dnet.c220 intoa(n_long addr) argument
227 addr = ntohl(addr);
233 byte = addr & 0xff;
243 addr >>= 8;
261 n_long addr = 0, n; local
266 addr |= (n << 24) & 0xff000000;
270 addr |= (n << 16) & 0xff0000;
274 addr |= (n << 8) & 0xff00;
278 addr |
[all...]
/freebsd-10.0-release/sys/mips/nlm/
H A Dbus_space_rmi.c50 rmi_bus_space_map(void *t, bus_addr_t addr,
82 bus_size_t offset, u_int8_t *addr,
88 bus_size_t offset, u_int16_t *addr,
94 bus_size_t offset, u_int32_t *addr,
100 bus_size_t offset, u_int8_t *addr,
106 bus_size_t offset, u_int16_t *addr,
112 bus_size_t offset, u_int32_t *addr,
134 const u_int8_t *addr,
141 const u_int16_t *addr,
148 const u_int32_t *addr,
364 rmi_bus_space_map(void *t __unused, bus_addr_t addr, bus_size_t size __unused, int flags __unused, bus_space_handle_t *bshp) argument
427 rmi_bus_space_read_multi_1(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int8_t *addr, size_t count) argument
434 rmi_bus_space_read_multi_2(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int16_t *addr, size_t count) argument
441 rmi_bus_space_read_multi_4(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int32_t *addr, size_t count) argument
481 rmi_bus_space_write_multi_1(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int8_t *addr, size_t count) argument
488 rmi_bus_space_write_multi_2(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int16_t *addr, size_t count) argument
495 rmi_bus_space_write_multi_4(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int32_t *addr, size_t count) argument
510 bus_addr_t addr = bsh + offset; local
520 bus_addr_t addr = bsh + offset; local
570 rmi_bus_space_read_multi_stream_1(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int8_t *addr, size_t count) argument
577 rmi_bus_space_read_multi_stream_2(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int16_t *addr, size_t count) argument
584 rmi_bus_space_read_multi_stream_4(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int32_t *addr, size_t count) argument
597 rmi_bus_space_read_region_1(void *t, bus_space_handle_t bsh, bus_size_t offset, u_int8_t *addr, size_t count) argument
604 rmi_bus_space_read_region_2(void *t, bus_space_handle_t bsh, bus_size_t offset, u_int16_t *addr, size_t count) argument
611 rmi_bus_space_read_region_4(void *t, bus_space_handle_t bsh, bus_size_t offset, u_int32_t *addr, size_t count) argument
647 rmi_bus_space_write_multi_stream_1(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int8_t *addr, size_t count) argument
654 rmi_bus_space_write_multi_stream_2(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int16_t *addr, size_t count) argument
661 rmi_bus_space_write_multi_stream_4(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int32_t *addr, size_t count) argument
668 rmi_bus_space_write_region_2(void *t, bus_space_handle_t bsh, bus_size_t offset, const u_int16_t *addr, size_t count) argument
678 rmi_bus_space_write_region_4(void *t, bus_space_handle_t bsh, bus_size_t offset, const u_int32_t *addr, size_t count) argument
[all...]
/freebsd-10.0-release/sys/dev/iicbus/
H A Diicbus.c63 iic_probe_device(device_t dev, u_char addr) argument
68 if ((addr & 1) == 0) {
70 if (!iicbus_start(dev, (u_char)addr, 0)) {
76 if (!iicbus_block_read(dev, (u_char)addr, &byte, 1, &count))
92 unsigned char addr; local
115 for (addr = 16; addr < 240; addr++) {
116 if (iic_probe_device(dev, (u_char)addr)) {
117 printf(" <%x>", addr);
240 iicbus_null_repeated_start(device_t dev, u_char addr) argument
[all...]
/freebsd-10.0-release/sys/dev/advansys/
H A Dadwlib.c166 static u_int16_t adw_eeprom_read_16(struct adw_softc *adw, int addr);
167 static void adw_eeprom_write_16(struct adw_softc *adw, int addr,
229 adw_eeprom_read_16(struct adw_softc *adw, int addr) argument
231 adw_outw(adw, ADW_EEP_CMD, ADW_EEP_CMD_READ | addr);
237 adw_eeprom_write_16(struct adw_softc *adw, int addr, u_int data) argument
240 adw_outw(adw, ADW_EEP_CMD, ADW_EEP_CMD_WRITE | addr);
303 u_int16_t addr; local
315 for (addr = ADW_EEP_DVC_CFG_BEGIN;
316 addr < ADW_EEP_DVC_CFG_END; addr
349 u_int addr; local
[all...]
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-bootmem.c76 #define ALIGN_ADDR_UP(addr, align) (((addr) + (~(align))) & (align))
129 * of the field, the return type is always a uint64_t. The "addr"
132 #define CVMX_BOOTMEM_NAMED_GET_FIELD(addr, field) \
133 __cvmx_bootmem_desc_get(addr, \
144 * cvmx_bootmem_named_block_desc_t to write. The "addr" parameter
147 #define CVMX_BOOTMEM_NAMED_SET_FIELD(addr, field, value) \
148 __cvmx_bootmem_desc_set(addr, \
210 * @param addr Physical address of the named block descriptor
215 static void CVMX_BOOTMEM_NAMED_GET_NAME(uint64_t addr, cha argument
243 CVMX_BOOTMEM_NAMED_SET_NAME(uint64_t addr, const char *str, int len) argument
273 cvmx_bootmem_phy_set_size(uint64_t addr, uint64_t size) argument
277 cvmx_bootmem_phy_set_next(uint64_t addr, uint64_t next) argument
281 cvmx_bootmem_phy_get_size(uint64_t addr) argument
285 cvmx_bootmem_phy_get_next(uint64_t addr) argument
464 int64_t addr; local
495 int64_t addr; local
852 uint64_t addr; local
883 uint64_t addr; local
1075 int64_t addr; local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_print.c158 caddr_t addr = pap->pa_addr + off / NBBY; local
174 bcopy(addr, buf, size);
200 dt_print_hex(FILE *fp, caddr_t addr, size_t size) argument
204 (void) fprintf(fp, "%#x", *(uint8_t *)addr);
208 (void) fprintf(fp, "%#x", *(uint16_t *)addr);
212 (void) fprintf(fp, "%#x", *(uint32_t *)addr);
217 (unsigned long long)*(uint64_t *)addr);
235 caddr_t addr = pap->pa_addr + off / NBBY; local
265 char c = *(char *)addr;
275 dt_print_hex(fp, addr, siz
288 caddr_t addr = pap->pa_addr + off / NBBY; local
318 caddr_t addr = pap->pa_addr + off / NBBY; local
370 caddr_t addr = pap->pa_addr + off / NBBY; local
482 caddr_t addr = pap->pa_addr + off / NBBY; local
642 dtrace_print(dtrace_hdl_t *dtp, FILE *fp, const char *typename, caddr_t addr, size_t len) argument
[all...]
/freebsd-10.0-release/contrib/jemalloc/include/jemalloc/internal/
H A Dextent.h22 void *addr; member in struct:extent_node_s
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationList.h52 /// \a addr - const version.
54 /// @param[in] addr
62 FindByAddress (const Address &addr) const;
80 /// at address \a addr.
82 /// @param[in] addr
89 FindIDByAddress (const Address &addr);
239 Create (const Address &addr);
248 AddLocation (const Address &addr,
/freebsd-10.0-release/contrib/ntp/libntp/
H A Da_md5encrypt.c89 addr2refid(struct sockaddr_storage *addr) argument
95 if (addr->ss_family == AF_INET)
96 return (GET_INADDR(*addr));
99 MD5Update(&md5, (u_char *)&GET_INADDR6(*addr),
/freebsd-10.0-release/contrib/unbound/iterator/
H A Diter_donotq.h87 * @param addr: address to check
88 * @param addrlen: length of addr.
91 int donotq_lookup(struct iter_donotq* donotq, struct sockaddr_storage* addr,
/freebsd-10.0-release/contrib/wpa/src/crypto/
H A Dmd5.h15 const u8 *addr[], const size_t *len, u8 *mac);
H A Dsha1-pbkdf2.c21 const u8 *addr[2]; local
25 addr[0] = ssid;
27 addr[1] = count_buf;
40 if (hmac_sha1_vector((u8 *) passphrase, passphrase_len, 2, addr, len,
/freebsd-10.0-release/contrib/wpa/src/wps/
H A Dwps_upnp_event.c53 struct subscr_addr *addr; /* address to connect to */ member in struct:wps_event_
133 "for %s", e->addr->domain_and_port);
153 wpabuf_printf(buf, "NOTIFY %s HTTP/1.1\r\n", e->addr->path);
155 wpabuf_printf(buf, "HOST: %s\r\n", e->addr->domain_and_port);
177 e->addr->num_failures++;
180 e, e->addr->domain_and_port, e->addr->num_failures);
182 if (e->addr->num_failures < MAX_FAILURES) {
193 "address %s due to errors", s, e->addr->domain_and_port);
194 dl_list_del(&e->addr
[all...]
/freebsd-10.0-release/lib/libc/gen/
H A Delf_utils.c37 __elf_phdr_match_addr(struct dl_phdr_info *phdr_info, void *addr) argument
46 if (phdr_info->dlpi_addr + ph->p_vaddr <= (uintptr_t)addr &&
47 (uintptr_t)addr + sizeof(addr) < phdr_info->dlpi_addr +
/freebsd-10.0-release/lib/libc/resolv/
H A Dres_private.h11 } addr, mask; member in struct:__res_state_ext::sort_list
/freebsd-10.0-release/libexec/ftpd/
H A Dlogwtmp.c57 ftpd_logwtmp(char *id, char *user, struct sockaddr *addr) argument
67 if (addr != NULL)
69 addr, addr->sa_len);

Completed in 259 milliseconds

<<11121314151617181920>>