Searched refs:domain (Results 226 - 250 of 495) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dnet.c70 try_proto(int domain) { argument
75 s = socket(domain, SOCK_STREAM, IPPROTO_TCP);
/freebsd-11-stable/lib/libc/resolv/
H A Dres_data.c134 const char *dname, /*!< domain name */
164 res_query(const char *name, /*!< domain name */
237 res_search(const char *name, /*!< domain name */
253 const char *domain,
264 return (res_nquerydomain(statp, name, domain,
252 res_querydomain(const char *name, const char *domain, int class, int type, u_char *answer, int anslen) argument
/freebsd-11-stable/sys/sys/
H A Dprotosw.h79 struct domain *pr_domain; /* domain protocol a member of */
344 struct domain *pffinddomain(int family);
/freebsd-11-stable/sys/xen/interface/hvm/
H A Dhvm_op.h41 /* Set the logical level of one of a domain's PCI INTx wires. */
46 /* PCI INTx identification in PCI topology (domain:bus:device:intx). */
47 uint8_t domain, bus, device, intx; member in struct:xen_hvm_set_pci_intx_level
54 /* Set the logical level of one of a domain's ISA IRQ wires. */
243 * A domain supports a single 'legacy' IOREQ Server which is instantiated if
262 * emulator servicing domain <domid>.
270 domid_t domid; /* IN - domain to be serviced */
290 * hosted in domain <domid>'s gmfns <ioreq_pfn> and <bufioreq_pfn>
301 domid_t domid; /* IN - domain to be serviced */
311 * HVM_map_io_range_to_ioreq_server: Register an I/O range of domain <domi
477 domid_t domain; member in struct:xen_hvm_altp2m_op
[all...]
/freebsd-11-stable/sys/xen/interface/
H A Dmemory.h34 * Increase or decrease the specified domain's memory reservation. Returns the
151 * specified domain (may be DOMID_SELF). Returns -ve errcode on failure.
232 /* Which domain to change the mapping for. */
255 /* Which domain to change the mapping for. */
291 /* Which domain to change the mapping for. */
304 * Returns the pseudo-physical memory map as it was when the domain
334 * Set the pseudo-physical memory map of a domain, as returned by
380 domid_t domain; member in struct:xen_mem_paging_op
416 /* Take the domain default */
469 domid_t domain; member in struct:xen_mem_sharing_op
[all...]
/freebsd-11-stable/sys/dev/isci/scil/
H A Dscif_sas_smp_io_request.c469 fw_controller = fw_device->domain->controller;
549 fw_controller = fw_device->domain->controller;
552 // remove the IO from the list of outstanding requests on the domain
553 // so that we don't damage the domain's fast list of request.
H A Dscif_sas_remote_device.h236 * This field indicates the domain object containing this remote device.
238 struct SCIF_SAS_DOMAIN * domain; member in struct:SCIF_SAS_REMOTE_DEVICE
H A Dscif_sas_smp_phy.c113 SCIF_SAS_CONTROLLER_T * fw_controller = owning_device->domain->controller;
/freebsd-11-stable/tools/test/netfibs/
H A Dreflect.c193 reflect_6(int domain, int type) argument
200 s = socket(domain, type, 0);
/freebsd-11-stable/lib/libc/rpc/
H A Dgetrpcent.c101 char domain[MAXHOSTNAMELEN]; member in struct:nis_state
433 if (st->domain[0] == '\0') {
434 if (getdomainname(st->domain, sizeof(st->domain)) != 0) {
451 rv = yp_match(st->domain, "rpc.byname", buf,
482 if (yp_match(st->domain, "rpc.bynumber", buf,
490 rv = yp_first(st->domain, "rpc.bynumber",
501 rv = yp_next(st->domain, "rpc.bynumber",
/freebsd-11-stable/contrib/sendmail/contrib/
H A Dexpn.pl21 # add magic to deal with cross-domain cnames
580 # Ranking of inputs: best: user@host.domain, okay: user
756 # servers' domain to the address if it doesn't already have a
757 # domain. Since this sometimes fails, save a back reference so
762 local($domain,$newhost);
770 # domain host isn't, keep $host whatever it is
778 # accounted for. They have to do with domain relay hosts.
788 # The first try must always be to cut the domain part out of
822 ($domain = $domain_host) =~ s/^[^\.]+//;
823 $fallback{"$host$domain"}
[all...]
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_socket.c197 linux_to_bsd_domain(int domain) argument
200 switch (domain) {
220 bsd_to_linux_domain(int domain) argument
223 switch (domain) {
700 int domain, retval_socket, type; local
709 domain = linux_to_bsd_domain(args->domain);
710 if (domain == -1)
713 retval_socket = kern_socket(td, domain, type, args->protocol);
719 && domain
[all...]
/freebsd-11-stable/usr.sbin/lpr/lpd/
H A Dlpd.c362 int domain, nfds, s; local
372 domain = -1; /* avoid compile-time warning */
375 domain = AF_UNIX, fromlen = sizeof(fromunix);
381 domain = AF_INET;
411 if (domain == AF_INET) {
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/
H A Dittnotify_config.h502 h->flags = 1; /* domain is enabled by default */ \
518 h->flags = 1; /* domain is enabled by default */ \
561 #define NEW_COUNTER_W(gptr,h,h_tail,name,domain,type) { \
567 h->domainW = name ? _wcsdup(domain) : NULL; \
578 #define NEW_COUNTER_A(gptr,h,h_tail,name,domain,type) { \
583 h->domainA = domain ? __itt_fstrdup(domain) : NULL; \
/freebsd-11-stable/contrib/traceroute/
H A Dtraceroute.c1898 static char domain[MAXHOSTNAMELEN + 1], line[MAXHOSTNAMELEN + 1]; local
1902 if (gethostname(domain, sizeof(domain) - 1) < 0)
1903 domain[0] = '\0';
1905 cp = strchr(domain, '.');
1909 hp = cap_gethostbyname(capdns, domain);
1912 hp = gethostbyname(domain);
1917 domain[0] = '\0';
1920 (void)strncpy(domain, cp, sizeof(domain)
[all...]
/freebsd-11-stable/sys/dev/ocs_fc/
H A Docs_fabric.c176 ocs_domain_save_sparms(node->sport->domain, cbdata->els->els_rsp.virt);
192 if (!node->sport->domain->attached) {
193 node_printf(node, "p2p winner, domain not attached\n");
194 ocs_domain_attach(node->sport->domain, node->sport->p2p_port_id);
197 node_printf(node, "p2p winner, domain already attached\n");
210 /* ext_status has the fc_id, attach domain */
213 ocs_assert(!node->sport->domain->attached, NULL);
214 ocs_domain_attach(node->sport->domain, cbdata->ext_status);
227 * up and the domain ready
346 * @brief Fabric node state machine: Wait for a domain/spor
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_pci.c224 int domain, bus, slot, func, ret; local
250 domain = bus >> 8;
253 if ((domain != dev->pci_domain) ||
/freebsd-11-stable/sys/security/mac/
H A Dmac_socket.c87 * remote socket for UNIX domain sockets rather than keeping a local copy on
351 mac_socket_check_create(struct ucred *cred, int domain, int type, int proto) argument
355 MAC_POLICY_CHECK_NOSLEEP(socket_check_create, cred, domain, type,
357 MAC_CHECK_PROBE4(socket_check_create, error, cred, domain, type,
/freebsd-11-stable/usr.bin/whois/
H A Dwhois.c241 choose_server(char *domain) argument
243 size_t len = strlen(domain);
249 strcasecmp(domain + len - suffix_len,
465 fprintf(fp, "domain %s\r\n", query);
/freebsd-11-stable/usr.sbin/ypserv/
H A Dyp_dnslookup.c118 char **domain; member in struct:circleq_dnsentry
445 q->domain = _res.dnsrch;
526 q->domain = NULL;
/freebsd-11-stable/contrib/ldns/
H A Ddnssec_verify.c1182 const ldns_rdf *domain,
1193 if (res && domain && keys) {
1196 domain, keys, check_time))) {
1199 /* No trusted keys in this domain, we'll have to find some in the parent domain */
1202 parent_domain = ldns_dname_left_chop(domain);
1215 domain,
1221 domain,
1250 const ldns_rdf *domain,
1255 res, domain, key
1181 ldns_fetch_valid_domain_keys_time(const ldns_resolver *res, const ldns_rdf *domain, const ldns_rr_list *keys, time_t check_time, ldns_status *status) argument
1249 ldns_fetch_valid_domain_keys(const ldns_resolver *res, const ldns_rdf *domain, const ldns_rr_list *keys, ldns_status *status) argument
1259 ldns_validate_domain_dnskey_time( const ldns_resolver * res, const ldns_rdf * domain, const ldns_rr_list * keys, time_t check_time ) argument
1353 ldns_validate_domain_dnskey(const ldns_resolver * res, const ldns_rdf * domain, const ldns_rr_list * keys) argument
1362 ldns_validate_domain_ds_time( const ldns_resolver *res, const ldns_rdf * domain, const ldns_rr_list * keys, time_t check_time) argument
1410 ldns_validate_domain_ds(const ldns_resolver *res, const ldns_rdf * domain, const ldns_rr_list * keys) argument
[all...]
/freebsd-11-stable/contrib/wpa/src/eap_common/
H A Deap_common.c257 tlvs->domain = pos;
/freebsd-11-stable/sys/netinet/
H A Dip_gre.c70 extern struct domain inetdomain;
/freebsd-11-stable/sys/dev/pccbb/
H A Dpccbbvar.h65 uint32_t domain; member in struct:cbb_softc
/freebsd-11-stable/usr.sbin/yppoll/
H A Dyppoll.c63 fprintf(stderr, "usage: yppoll [-d domain] [-h host] mapname\n");
100 yprnk.domain = indomain;

Completed in 393 milliseconds

1234567891011>>