Searched refs:domains (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-13-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_setdomainname.c45 static const char domains[][MAXHOSTNAMELEN] = { variable
104 for (i = 0; i < __arraycount(domains); i++) {
113 ATF_REQUIRE_EQ(sizeof(domains[i]), MAXHOSTNAMELEN);
116 ATF_REQUIRE(setdomainname(domains[i],sizeof(domains[i]) - 1) == 0);
119 ATF_REQUIRE(setdomainname(domains[i],sizeof(domains[i])) == 0);
122 ATF_REQUIRE(strcmp(domains[i], name) == 0);
/freebsd-13-stable/usr.bin/cpuset/
H A Dcpuset.c180 * round-robin:all explicit root domains
182 * round-robin implicit root domains
183 * all explicit root domains and implicit policy
287 domainset_t domains; local
296 DOMAINSET_ZERO(&domains);
334 parsedomainlist(optarg, &domains, &policy);
401 -1, sizeof(domains), &domains, policy) != 0)
448 if (cpuset_setdomain(level, which, id, sizeof(domains),
449 &domains, polic
[all...]
/freebsd-13-stable/lib/lib80211/
H A Dlib80211_regdomain.h98 LIST_HEAD(, regdomain) domains; /* regulatory domains */ member in struct:regdata
H A Dlib80211_regdomain.c101 LIST_INSERT_HEAD(&mt->rdp->domains, mt->rd, next);
454 LIST_FOREACH(dp, &rdp->domains, next) {
474 LIST_FOREACH(dp, &rdp->domains, next) {
587 struct regdomain *dp = LIST_FIRST(&rdp->domains);
684 LIST_FOREACH(dp, &rdp->domains, next) {
699 LIST_FOREACH(dp, &rdp->domains, next) {
/freebsd-13-stable/contrib/ofed/opensm/include/opensm/
H A Dosm_db.h123 cl_list_t domains; member in struct:osm_db
133 * domains
134 * List of initialize domains
/freebsd-13-stable/sys/sys/
H A Ddomain.h75 extern struct domain *domains;
/freebsd-13-stable/sys/kern/
H A Duipc_domain.c77 struct domain *domains; /* registered protocol domains */ variable in typeref:struct:domain
166 * Add a new protocol domain to the list of supported domains
209 * Add a new protocol domain to the list of supported domains
220 dp->dom_next = domains;
221 domains = dp;
279 for (dp = domains; dp != NULL; dp = dp->dom_next)
471 for (dp = domains; dp; dp = dp->dom_next)
485 for (dp = domains; dp; dp = dp->dom_next)
501 for (dp = domains; d
[all...]
H A Dkern_cpuset.c491 ("invalid preferred domain in domains %p", domain));
520 * Are any of the domains in the mask empty? If so, silently
522 * domains are present, we must return failure.
537 /* Remove empty domains from the set and recompute. */
564 * only valid domains. Preferred must include the preferred domain
760 /* Count the number of domains that are changing. */
776 struct domainset *orig, struct domainlist *domains)
790 set->cs_domain = domainset_shadow(domain, orig, domains);
794 cpuset_update_domain(nset, set->cs_domain, orig, domains);
807 struct domainlist domains; local
775 cpuset_update_domain(struct cpuset *set, struct domainset *domain, struct domainset *orig, struct domainlist *domains) argument
999 cpuset_shadow(struct cpuset *set, struct cpuset **nsetp, const cpuset_t *mask, const struct domainset *domain, struct setlist *cpusets, struct domainlist *domains) argument
[all...]
/freebsd-13-stable/sys/dev/pci/
H A Dpci_subr.c35 * provide PCI domains.
296 static TAILQ_HEAD(, pci_domain) domains = TAILQ_HEAD_INITIALIZER(domains);
311 TAILQ_FOREACH(d, &domains, pd_link) {
329 TAILQ_INSERT_TAIL(&domains, d, pd_link);
/freebsd-13-stable/sys/net/route/
H A Droute_tables.c205 for (dom = domains; dom; dom = dom->dom_next) {
239 for (dom = domains; dom; dom = dom->dom_next) {
283 for (dom = domains; dom; dom = dom->dom_next) {
/freebsd-13-stable/contrib/unbound/contrib/
H A Dwarmup.cmd4 rem -- Warm up DNS cache script by your own MRU domains or from
24 echo Warming up cache by MRU domains...
/freebsd-13-stable/sys/dev/isci/scil/
H A Dscif_sas_controller.h132 SCIF_SAS_DOMAIN_T domains[SCI_MAX_DOMAINS]; member in struct:SCIF_SAS_CONTROLLER
H A Dscif_sas_controller.c418 *domain_handle = &fw_controller->domains[port_index];
590 if(fw_controller->domains[index].parent.state_machine.current_state_id ==
986 fw_domain = &fw_controller->domains[domain_index];
1131 fw_domain = &fw_controller->domains[index];
1141 { //the controller has done clear affiliation work to all its domains.
1207 fw_domain = &fw_controller->domains[index];
H A Dscif_sas_controller_states.c140 &fw_controller->domains[index], index, fw_controller
H A Dscif_sas_controller_state_handlers.c157 * @brief This method stops all the domains associated to this
186 fw_domain = &fw_controller->domains[index];
230 //stop all the domains and their remote devices.
258 "Controller:0x%x Status:0x%x unable to stop domains.\n",
315 scif_sas_domain_initialize(&fw_controller->domains[index]);
425 &fw_controller->domains[index].parent.state_machine,
428 status = fw_controller->domains[index].operation.status;
/freebsd-13-stable/contrib/ofed/opensm/opensm/
H A Dosm_db_files.c130 cl_list_construct(&p_db->domains);
151 while ((p_domain = cl_list_remove_head(&p_db->domains)) != NULL) {
155 cl_list_destroy(&p_db->domains);
199 cl_list_init(&p_db->domains, 5);
276 cl_list_insert_tail(&p_db->domains, p_domain);
/freebsd-13-stable/tools/tools/ath/athrd/
H A Dathrd.c336 * Regulator domains ending in a number (e.g. APL1,
338 * information. Regulator domains ending in a letter
391 } domains[] = { variable in typeref:struct:__anon16253
542 for (i = 0; i < nitems(domains); i++)
543 if (strcasecmp(domains[i].name, name) == 0) {
544 *rd = domains[i].rd;
555 for (i = 0; i < nitems(domains); i++)
556 if (domains[i].rd == rd)
557 return domains[i].name;
566 printf("\nRegulatory domains
[all...]
/freebsd-13-stable/usr.sbin/ypbind/
H A Dypbind.c139 /* No more than MAX_DOMAINS simultaneous domains */
155 static int domains = 0; variable
198 if (domains >= MAX_DOMAINS) {
226 domains++;
474 domains++;
580 domains--;
774 * establish a new binding. Note that we treat non-default domains
884 domains--;
/freebsd-13-stable/sys/x86/iommu/
H A Dintel_drv.c473 LIST_INIT(&unit->domains);
1067 if (!LIST_EMPTY(&dmar->domains)) {
1215 LIST_FOREACH(domain, &unit->domains, link) {
1293 db_printf("domains:\n");
1294 LIST_FOREACH(domain, &unit->domains, link) {
H A Dintel_ctx.c594 if (LIST_EMPTY(&dmar->domains))
596 LIST_INSERT_HEAD(&dmar->domains, domain, link);
840 LIST_FOREACH(domain, &dmar->domains, link) {
H A Dintel_dmar.h146 LIST_HEAD(, dmar_domain) domains; member in struct:dmar_unit
/freebsd-13-stable/sys/dev/ocs_fc/
H A Docs_hw.c379 ocs_memset(hw->domains, 0, sizeof(hw->domains));
805 ocs_memset(hw->domains, 0, sizeof(hw->domains));
1375 ocs_memset(hw->domains, 0, sizeof(hw->domains));
8218 hw->domains[fcfi] = domain;
8237 hw->domains[fcfi] = NULL;
8267 if (domain != hw->domains[fcfi]) {
8269 domain, hw->domains[fcf
[all...]
H A Docs_hw.h1019 ocs_domain_t *domains[SLI4_MAX_FCFI]; member in struct:ocs_hw_s
/freebsd-13-stable/sbin/dhclient/
H A Ddhclient.c2709 int domains = 1; local
2740 domains++;
2746 if (domains > 6)
/freebsd-13-stable/sys/vm/
H A Duma_core.c2443 int domains, i, cnt; local
2489 domains = vm_ndomains;
2491 domains = 1;
2519 for (i = 0; i < domains; i++) {
2562 for (i = 0; i < domains; i++) {
3680 * If 'rr' is 1, search all domains starting from 'domain'. Otherwise check
4049 /* Avoid allocs targeting empty domains. */
4135 /* Avoid allocs targeting empty domains. */
4420 * correct domains.
4465 * FIRSTTOUCH domains nee
[all...]

Completed in 231 milliseconds

12