Searched refs:addresses (Results 1 - 9 of 9) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/net/
H A Dkpi_interface.c749 ifaddr_t **addresses)
751 if (addresses == NULL) return EINVAL;
752 return ifnet_get_address_list_family(interface, addresses, 0);
758 ifaddr_t **addresses,
765 if (addresses == NULL) return EINVAL;
766 *addresses = NULL;
793 MALLOC(*addresses, ifaddr_t*, sizeof(ifaddr_t) * (cmax + 1), M_TEMP, M_NOWAIT);
794 if (*addresses == NULL) {
812 (*addresses)[count] = (ifaddr_t)addr;
813 ifaddr_reference((*addresses)[coun
747 ifnet_get_address_list( ifnet_t interface, ifaddr_t **addresses) argument
756 ifnet_get_address_list_family( ifnet_t interface, ifaddr_t **addresses, sa_family_t family) argument
830 ifnet_free_address_list( ifaddr_t *addresses) argument
989 ifnet_get_multicast_list(ifnet_t interface, ifmultiaddr_t **addresses) argument
1033 ifnet_free_multicast_list( ifmultiaddr_t *addresses) argument
[all...]
H A Dether_inet_pr_module.c329 * Register new IP and MAC addresses with the kernel
369 ifaddr_t *addresses; local
378 if (ifnet_get_address_list_family(ifp, &addresses, AF_INET) == 0) {
381 for (i = 0; addresses[i] != NULL; i++) {
382 inet_arp_init_ifaddr(ifp, addresses[i]);
385 ifnet_free_address_list(addresses);
H A Dkpi_interface.h338 to reject invalid multicast addresses before they are attached
348 EOPNOTSUPP for addresses the interface does not understand.
484 @param protocol_family The protocol family of the addresses
753 to fill out the first ifaddr in the list of addresses for the
1295 @discussion Get a list of addresses on the interface. Passing NULL
1296 for the interface will return a list of all addresses. The
1297 addresses will have their reference count bumped so they will
1303 @param addresses A pointer to a NULL terminated array of ifaddr_ts.
1306 errno_t ifnet_get_address_list(ifnet_t interface, ifaddr_t **addresses);
1310 @discussion Get a list of addresses o
[all...]
/macosx-10.5.8/xnu-1228.15.4/libsa/
H A Dload.h119 char ** addresses);
H A Dload.c285 * have addresses assigned, or none must.
289 kload_log_message("checking whether modules have addresses assigned" KNL);
307 "either all modules must have addresses set to nonzero values or "
322 * In the kernel, ALWAYS get load addresses of existing loaded kmods.
326 * If we don't have addresses, then get them from the kernel.
331 kload_log_message("getting module addresses from kernel" KNL);
350 kload_log_error("can't check load addresses of modules" KNL);
364 kload_log_message("checking that all modules have addresses assigned" KNL);
1691 printf("enter the hexadecimal load addresses for these modules:\n");
1730 * addresses i
1732 kload_set_load_addresses_from_args( dgraph_t * dgraph, const char * kernel_file, char ** addresses) argument
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dbcopy.s68 ; passed in value. This should be ok since we can not have any bigger than 32 bit addresses
149 ; passed in value. This should be ok since we can not have any bigger than 32 bit addresses
H A Dmachine_routines_asm.s268 ; Force a line boundry here. This means we will be able to check addresses better
357 ; Force a line boundry here. This means we will be able to check addresses better
H A Dhw_vm.s4699 ; linear list of 64-bit physical addresses of the pages that comprise
7305 ; unpredictable which of the two or more possible host virtual addresses
/macosx-10.5.8/xnu-1228.15.4/bsd/netkey/
H A Dkey.c460 #define CMP_HEAD 0x1 /* protocol, addresses. */
1743 /* set IP addresses if there */
7817 * all addresses are matched.
8250 they reach the interface. ipsec needs interface to attach tunnel ip addresses.
8556 ifaddr_t *addresses = NULL; local
8564 /* Create a socket for removing addresses and detaching the protocol */
8586 * addresses attached. We should detach them and then try again.
8588 result = ifnet_get_address_list_family(interface, &addresses, protocol);
8596 for (i = 0; addresses[i] != 0; i++) {
8597 ipsecif_remove_address(interface, protocol, addresses[
[all...]

Completed in 143 milliseconds