Searched refs:iface (Results 1 - 25 of 81) sorted by relevance

1234

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitPermissionRequest.cpp54 WebKitPermissionRequestIface* iface = WEBKIT_PERMISSION_REQUEST_GET_IFACE(request); local
55 if (iface->allow)
56 iface->allow(request);
69 WebKitPermissionRequestIface* iface = WEBKIT_PERMISSION_REQUEST_GET_IFACE(request); local
70 if (iface->deny)
71 iface->deny(request);
H A DWebKitGeolocationPermissionRequest.cpp79 static void webkit_permission_request_interface_init(WebKitPermissionRequestIface* iface) argument
81 iface->allow = webkitGeolocationPermissionRequestAllow;
82 iface->deny = webkitGeolocationPermissionRequestDeny;
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dif2ip.c72 struct ifaddrs *iface, *head; local
75 for(iface=head; iface != NULL; iface=iface->ifa_next) {
76 if(curl_strequal(iface->ifa_name, interf)) {
89 struct ifaddrs *iface, *head; local
97 for(iface=head; iface != NULL; iface
[all...]
/macosx-10.10.1/ntp-92/ntpd/
H A Dntp_io.c625 print_interface(struct interface *iface, char *pfx, char *sfx) argument
629 iface->ifnum,
630 iface->fd,
631 iface->bfd,
632 iface->name,
633 iface->flags,
634 iface->scopeid,
635 stoa(&iface->sin));
636 if (AF_INET == iface->family) {
637 if (iface
811 struct interface * iface; local
1569 struct interface * iface; local
1861 struct interface *iface; local
2014 enable_broadcast( struct interface * iface, sockaddr_u * baddr ) argument
2031 socket_broadcast_enable( struct interface * iface, SOCKET fd, sockaddr_u * baddr ) argument
2065 socket_broadcast_disable( struct interface * iface, sockaddr_u * baddr ) argument
2130 enable_multicast_if( struct interface * iface, sockaddr_u * maddr ) argument
2219 socket_multicast_enable( struct interface * iface, int lscope, sockaddr_u * maddr ) argument
2302 socket_multicast_disable( struct interface * iface, sockaddr_u * maddr ) argument
2490 struct interface *iface; local
2625 struct interface *iface; local
3488 struct interface *iface; local
3527 struct interface * iface; local
3597 struct interface *iface; local
3618 struct interface *iface; local
3637 struct interface * iface; local
3714 struct interface *iface; local
[all...]
/macosx-10.10.1/network_cmds-457/mnc.tproj/
H A Dmnc_multicast.c68 struct addrinfo * source, char * iface)
72 if (iface != NULL)
76 inet_addr(iface)) == INADDR_NONE)
110 struct addrinfo * source, char * iface)
119 struct addrinfo * source, char * iface)
130 int mnc_join_ip_asm(int socket, struct addrinfo * group, char * iface) argument
144 if (iface != NULL)
146 if ((multicast_request.gr_interface = if_nametoindex(iface))
149 mnc_warning("Ignoring unknown interface: %s\n", iface);
175 int mnc_join_ipv4_asm(int socket, struct addrinfo * group, char * iface) argument
67 mnc_join_ipv4_ssm(int socket, struct addrinfo * group, struct addrinfo * source, char * iface) argument
109 mnc_join_ipv4_ssm(int socket, struct addrinfo * group, struct addrinfo * source, char * iface) argument
118 mnc_join_ipv6_ssm(int socket, struct addrinfo * group, struct addrinfo * source, char * iface) argument
212 mnc_join_ipv6_asm(int socket, struct addrinfo * group, char * iface) argument
223 mnc_join_ip_ssm(int socket, struct addrinfo * group, struct addrinfo * source, char * iface) argument
271 multicast_setup_listen(int socket, struct addrinfo * group, struct addrinfo * source, char * iface) argument
[all...]
H A Dmnc.h76 char * iface; member in struct:mnc_configuration
H A Dmnc_opts.c86 config.iface = NULL;
105 case 'i': config.iface = argv[++optind];
135 if (config.mode == SENDER && config.iface != NULL)
H A Dmnc_main.c98 config->iface) < 0)
/macosx-10.10.1/apr-32/apr/apr/network_io/unix/
H A Dmulticast.c30 apr_sockaddr_t *iface)
33 if (iface == NULL) {
37 mip->imr_interface = iface->sa.sin.sin_addr;
44 static unsigned int find_if_index(const apr_sockaddr_t *iface) argument
64 if (memcmp(&iface->sa.sin6.sin6_addr,
66 sizeof(iface->sa.sin6.sin6_addr)) == 0) {
80 const apr_sockaddr_t *iface)
85 if (iface == NULL) {
89 mip->ipv6mr_interface = find_if_index(iface);
112 apr_sockaddr_t *mcast, apr_sockaddr_t *iface,
29 fill_mip_v4(struct ip_mreq *mip, apr_sockaddr_t *mcast, apr_sockaddr_t *iface) argument
79 fill_mip_v6(struct ipv6_mreq *mip, const apr_sockaddr_t *mcast, const apr_sockaddr_t *iface) argument
111 do_mcast(int type, apr_socket_t *sock, apr_sockaddr_t *mcast, apr_sockaddr_t *iface, apr_sockaddr_t *source) argument
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-SystemConfiguration/PyObjCTest/
H A Dtest_scnetworkconfiguration.py63 for iface in r:
64 if SCNetworkInterfaceGetBSDName(iface).startswith('en'):
67 r = SCNetworkInterfaceGetSupportedInterfaceTypes(iface)
71 r = SCNetworkInterfaceGetSupportedProtocolTypes(iface)
75 r = SCNetworkInterfaceCreateWithInterface(iface, kSCNetworkInterfaceTypeL2TP)
78 r = SCNetworkInterfaceGetBSDName(iface)
81 r = SCNetworkInterfaceGetConfiguration(iface)
84 r = SCNetworkInterfaceGetExtendedConfiguration(iface, "EAPOL")
87 r = SCNetworkInterfaceGetHardwareAddressString(iface)
90 r = SCNetworkInterfaceGetInterface(iface)
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-SystemConfiguration/PyObjCTest/
H A Dtest_scnetworkconfiguration.py63 for iface in r:
64 if SCNetworkInterfaceGetBSDName(iface).startswith('en'):
66 r = SCNetworkInterfaceGetSupportedInterfaceTypes(iface)
70 r = SCNetworkInterfaceGetSupportedProtocolTypes(iface)
74 r = SCNetworkInterfaceCreateWithInterface(iface, kSCNetworkInterfaceTypeL2TP)
77 r = SCNetworkInterfaceGetBSDName(iface)
80 r = SCNetworkInterfaceGetConfiguration(iface)
83 r = SCNetworkInterfaceGetExtendedConfiguration(iface, "EAPOL")
86 r = SCNetworkInterfaceGetHardwareAddressString(iface)
89 r = SCNetworkInterfaceGetInterface(iface)
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-SystemConfiguration-2.5.1/PyObjCTest/
H A Dtest_scnetworkconfiguration.py73 for iface in r:
74 if SCNetworkInterfaceGetBSDName(iface).startswith('en'):
76 r = SCNetworkInterfaceGetSupportedInterfaceTypes(iface)
80 r = SCNetworkInterfaceGetSupportedProtocolTypes(iface)
84 r = SCNetworkInterfaceCreateWithInterface(iface, kSCNetworkInterfaceTypeL2TP)
87 r = SCNetworkInterfaceGetBSDName(iface)
90 r = SCNetworkInterfaceGetConfiguration(iface)
93 r = SCNetworkInterfaceGetExtendedConfiguration(iface, "EAPOL")
96 r = SCNetworkInterfaceGetHardwareAddressString(iface)
99 r = SCNetworkInterfaceGetInterface(iface)
[all...]
/macosx-10.10.1/bless-103/libbless/OpenFirmware/
H A DBLGetOpenFirmwareBootDeviceForNetworkPath.c59 io_service_t iface, service; local
74 iface = IOServiceGetMatchingService(masterPort,
77 if(iface == IO_OBJECT_NULL) {
83 kret = IORegistryEntryCreateIterator(iface, kIOServicePlane,
86 IOObjectRelease(iface);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/examples/smtpd/
H A Dtcl_smtpd76 set iface 0.0.0.0
80 set iface [lindex $argv 0]
86 smtpd::start $iface $port
/macosx-10.10.1/remote_cmds-47/talk.tproj/
H A Dget_iface.c52 get_iface(dst, iface)
54 struct in_addr *iface;
101 memcpy(iface, &local.sin_addr, sizeof local.sin_addr);
/macosx-10.10.1/bless-103/libbless/EFI/
H A DBLCreateEFIXMLRepresentationForNetworkPath.c58 io_service_t iface; local
83 iface = IOServiceGetMatchingService(masterPort,
86 if(iface == IO_OBJECT_NULL) {
97 macAddress = IORegistryEntrySearchCFProperty(iface, kIOServicePlane,
111 IOObjectRelease(iface);
/macosx-10.10.1/SmartcardCCID-55008/libusb/libusb/libusb/os/
H A Dwindows_usb.c60 static int winusb_configure_endpoints(struct libusb_device_handle *dev_handle, int iface);
61 static int winusb_claim_interface(struct libusb_device_handle *dev_handle, int iface);
62 static int winusb_release_interface(struct libusb_device_handle *dev_handle, int iface);
64 static int winusb_set_interface_altsetting(struct libusb_device_handle *dev_handle, int iface, int altsetting);
76 static int composite_claim_interface(struct libusb_device_handle *dev_handle, int iface);
77 static int composite_set_interface_altsetting(struct libusb_device_handle *dev_handle, int iface, int altsetting);
78 static int composite_release_interface(struct libusb_device_handle *dev_handle, int iface);
549 static int windows_assign_endpoints(struct libusb_device_handle *dev_handle, int iface, int altsetting) argument
563 if_desc = &conf_desc->interface[iface].altsetting[altsetting];
564 safe_free(priv->usb_interface[iface]
1669 windows_claim_interface(struct libusb_device_handle *dev_handle, int iface) argument
1689 windows_set_interface_altsetting(struct libusb_device_handle *dev_handle, int iface, int altsetting) argument
1706 windows_release_interface(struct libusb_device_handle *dev_handle, int iface) argument
1726 windows_kernel_driver_active(struct libusb_device_handle *dev_handle, int iface) argument
1731 windows_attach_kernel_driver(struct libusb_device_handle *dev_handle, int iface) argument
1736 windows_detach_kernel_driver(struct libusb_device_handle *dev_handle, int iface) argument
2153 unsupported_claim_interface(struct libusb_device_handle *dev_handle, int iface) argument
2156 unsupported_set_interface_altsetting(struct libusb_device_handle *dev_handle, int iface, int altsetting) argument
2159 unsupported_release_interface(struct libusb_device_handle *dev_handle, int iface) argument
2370 winusb_configure_endpoints(struct libusb_device_handle *dev_handle, int iface) argument
2414 winusb_claim_interface(struct libusb_device_handle *dev_handle, int iface) argument
2483 winusb_release_interface(struct libusb_device_handle *dev_handle, int iface) argument
2611 winusb_set_interface_altsetting(struct libusb_device_handle *dev_handle, int iface, int altsetting) argument
2868 composite_claim_interface(struct libusb_device_handle *dev_handle, int iface) argument
2874 composite_set_interface_altsetting(struct libusb_device_handle *dev_handle, int iface, int altsetting) argument
2880 composite_release_interface(struct libusb_device_handle *dev_handle, int iface) argument
[all...]
H A Ddarwin_usb.c65 static int darwin_claim_interface(struct libusb_device_handle *dev_handle, int iface);
66 static int darwin_release_interface(struct libusb_device_handle *dev_handle, int iface);
135 int8_t i, iface; local
139 for (iface = 0 ; iface < USB_MAXINTERFACES ; iface++) {
140 cInterface = &priv->interfaces[iface];
142 if (dev_handle->claimed_interfaces & (1 << iface)) {
146 *ifcp = iface;
977 static int get_endpoints (struct libusb_device_handle *dev_handle, int iface) { argument
1010 usbi_info (HANDLE_CTX (dev_handle), "interface: %i pipe %i: dir: %i number: %i", iface, i, direction, number); local
1020 darwin_claim_interface(struct libusb_device_handle *dev_handle, int iface) argument
1123 darwin_release_interface(struct libusb_device_handle *dev_handle, int iface) argument
1156 darwin_set_interface_altsetting(struct libusb_device_handle *dev_handle, int iface, int altsetting) argument
1187 uint8_t pipeRef, iface; local
1272 uint8_t direction, number, interval, pipeRef, iface; local
1326 uint8_t pipeRef, iface; local
1426 uint8_t pipeRef, iface; local
1484 uint8_t pipeRef, iface; local
[all...]
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Dcbcp.c142 cbcp_init(iface)
143 int iface;
147 us = &cbcp[iface];
149 us->us_unit = iface;
155 cbcp_lowerup(iface)
156 int iface;
158 cbcp_state *us = &cbcp[iface];
231 void cbcp_protrej(int iface) argument
/macosx-10.10.1/libpcap-48/libpcap/
H A Dpcap-sita.c57 typedef struct iface { struct
58 struct iface *next; /* a pointer to the next interface */
72 iface_t *iface; /* a pointer to a linked list of interface structures */ member in struct:unit
153 p = units[chassis][geoslot].iface;
197 cur = u->iface;
205 u->iface = 0; /* and finally remember that there are no remaining structure */
243 p = units[chassis][geoslot].iface;
418 iface_t *iface_ptr, *iface; local
425 iface = malloc(sizeof(iface_t)); /* get memory for a structure */
426 if (iface
[all...]
/macosx-10.10.1/cups-408/cups/backend/
H A Dusb-libusb.c50 iface, /* Interface */ member in struct:usb_printer_s
685 number1 = confptr->interface[printer->iface].
810 iface, /* Current interface */ local
871 for (iface = 0, ifaceptr = confptr->interface;
872 iface < confptr->bNumInterfaces;
873 iface ++, ifaceptr ++)
938 printer.iface = iface;
964 printer.read_endp = confptr->interface[printer.iface].
972 printer.write_endp = confptr->interface[printer.iface]
[all...]
/macosx-10.10.1/cups-408/cups/scheduler/
H A Dauth.c1076 cupsd_netif_t *iface; /* Network interface */ local
1120 for (iface = (cupsd_netif_t *)cupsArrayFirst(NetIFList);
1121 iface;
1122 iface = (cupsd_netif_t *)cupsArrayNext(NetIFList))
1128 if (!iface->is_local)
1131 if (iface->address.addr.sa_family == AF_INET)
1137 if ((netip4 & iface->mask.ipv4.sin_addr.s_addr) ==
1138 (iface->address.ipv4.sin_addr.s_addr &
1139 iface->mask.ipv4.sin_addr.s_addr))
1150 if ((netip6[i] & iface
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dsocket_wrapper.c259 unsigned int iface; local
260 if (sscanf(s, "%u", &iface) == 1) {
261 if (iface >= 1 && iface <= MAX_WRAPPED_INTERFACES) {
262 return iface;
272 unsigned int iface; local
280 if (sscanf(p, SOCKET_FORMAT, &type, &iface, &prt) != 3) {
285 if (iface == 0 || iface > MAX_WRAPPED_INTERFACES) {
307 in2->sin_addr.s_addr = htonl((127<<24) | iface);
345 unsigned int iface; local
443 unsigned int iface; local
1692 unsigned int iface; local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DFormat.java573 for (Class iface : interfaces) {
574 if (iface != Enhanced.class) {
575 supertypes.add(iface.getName());
576 addInterfaces(iface);
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Lib/PyObjCTools/
H A DTestSupport.py476 iface = st['retval']['type']
478 iface += a['type']
482 if iface != sel_type:
483 self.fail(message or "arg %d of %s is not a function_pointer with type %r, but %r"%(argno, method, sel_type, iface))
512 iface = st['retval']['type']
514 iface += a['type']
518 if iface != sel_type:
519 self.fail(message or "result of %s is not a function_pointer with type %r, but %r"%(method, sel_type, iface))
543 iface = st['retval']['type']
547 iface
[all...]

Completed in 412 milliseconds

1234