| /tools/libs/stat/ |
| A D | xenstat.c | 169 if (node->domains == NULL) { in xenstat_get_node() 185 tmp = realloc(node->domains, in xenstat_get_node() 191 node->domains = tmp; in xenstat_get_node() 254 free(node->domains); in xenstat_get_node() 264 if (node->domains) { in xenstat_free_node() 266 free(node->domains[i].name); in xenstat_free_node() 272 free(node->domains); in xenstat_free_node() 286 return &(node->domains[i]); in xenstat_node_domain() 461 node->domains[i].vcpus = malloc(node->domains[i].num_vcpus in xenstat_collect_vcpus() 500 free(node->domains[i].vcpus); in xenstat_free_vcpus() [all …]
|
| A D | xenstat_solaris.c | 281 if (node->domains[i].id == 0) in xenstat_collect_networks() 283 if (!collect_dom_networks(node, priv, &node->domains[i])) in xenstat_collect_networks() 391 if (node->domains[i].id == 0) in xenstat_collect_vbds() 393 if (!collect_dom_vbds(node, priv, &node->domains[i])) in xenstat_collect_vbds()
|
| A D | xenstat_priv.h | 51 xenstat_domain *domains; /* Array of length num_domains */ member
|
| /tools/hotplug/Linux/init.d/ |
| A D | sysconfig.xendomains.in | 6 # The xendomains script can send SysRq requests to domains on shutdown. 9 # of the domains ("s"). 50 # Directory to save running domains to when the system (dom0) is 51 # shut down. Will also be used to restore domains from if # XENDOMAINS_RESTORE 53 # (e.g. because you rather shut domains down). 86 # This variable determines whether saved domains from XENDOMAINS_SAVE 94 # This variable sets the directory where domains configurations 96 # Leave empty if you don't want to start domains automatically 99 # set: It will first restore saved domains and then only start domains 108 # If this variable is set to "true", only the domains started via config [all …]
|
| /tools/ocaml/xenstored/ |
| A D | connections.ml | 22 domains: (int, Connection.t) Hashtbl.t; RecordField 30 domains = Hashtbl.create 37; 50 Hashtbl.add cons.domains (Domain.get_id dom) con; 68 Hashtbl.find cons.domains 96 Hashtbl.remove cons.domains id; 106 Hashtbl.iter (fun _ c -> fct c) cons.domains 118 cons.domains [] 207 Hashtbl.length cons.domains, !nb_ops_dom, !nb_watchs_dom) 211 let domains = Hashtbl.fold (fun _ con accu -> Connection.debug con :: accu) cons.domains [] in 212 String.concat "" (domains @ anonymous) [all …]
|
| A D | xenstored.ml | 31 fct store cons domains c 55 let process_domains store cons domains = 63 Process.do_input store cons domains con; 64 Process.do_output store cons domains con; 67 Domains.iter domains do_io_domain 211 doms := Some domains; 212 domains 421 let rw_sock, domains = 426 rw, domains 442 rw_sock, domains [all …]
|
| A D | domains.ml | 17 let debug fmt = Logging.debug "domains" fmt 18 let error fmt = Logging.error "domains" fmt 19 let warn fmt = Logging.warn "domains" fmt 51 type domains = { type 57 domains that are carrying some penalty and so are below the 58 maximum credit, and another queue for domains that have run out of 69 mutable n_paused: int; (* Number of domains with zero or negative credit *) 70 mutable n_penalised: int; (* Number of domains with less than maximum credit *) 106 (* Functions to handle queues of domains given that the domain might be deleted while in a queue. *)
|
| A D | oxenstored.conf.in | 12 # Limits applied to domains whose writes cause other domains' transaction 40 # multiple other domains can suffer conflicts caused by any of those 41 # domains, so the flag must be set to true.
|
| A D | process.ml | 338 let do_isintroduced con _t domains _cons data = 552 let do_transaction_end con t domains cons data = 575 let do_introduce con t domains cons data = 585 if Domains.exist domains domid then 586 let edom = Domains.find domains domid in 602 let do_release con t domains cons data = 610 let fire_spec_watches = Domains.exist domains domid in 611 Domains.del domains domid; 618 let do_resume con _t domains _cons data = 626 if Domains.exist domains domid [all …]
|
| A D | Makefile | 51 domains \
|
| /tools/xentop/ |
| A D | TODO | 3 Use prompting to search for domains 19 Full management: pause, destroy, create domains 32 Monitor only domains with specified domain IDs 34 Monitor only domains with specified node IDs
|
| A D | xentop.c | 1178 xenstat_domain **domains; in top() local 1199 if(domains == NULL) in top() 1213 tmp = domains[0]; in top() 1214 domains[0] = domains[dom0_index]; in top() 1215 domains[dom0_index] = tmp; in top() 1231 adjust_field_widths(domains[i]); in top() 1239 do_domain(domains[i]); in top() 1241 do_vcpu(domains[i]); in top() 1243 do_network(domains[i]); in top() 1245 do_vbd(domains[i]); in top() [all …]
|
| /tools/flask/policy/modules/ |
| A D | xen.te | 100 # it does not need to be defined here and should not be used for domains. 102 # The system user and role are used for utility domains and pseudo-domains. In 103 # systems where users and roles are not being used for separation, all domains
|
| A D | guest_features.te | 1 # Allow all domains to use PMU (but not to change its settings --- that's what 5 # Allow all domains to enable the Argo interdomain communication hypercall; 13 # and stub domains for early boot output, so don't audit even when we deny it.
|
| A D | domU.te | 16 # Allow the hypervisor to build domains of type domU_t 20 # domains of other types, or add more make_device_model lines for this type.
|
| A D | all_system_role.te | 1 # Allow all domains to use system_r so that systems that are not using the
|
| A D | prot_domU.te | 3 # map memory belonging to those domains.
|
| A D | dom0.te | 71 # domains, see the definitions of create_domain and manage_domain. 161 # Allow the hypervisor to build domains of type dom0_t
|
| A D | vm_role.cons | 29 # further limited to only restricting those domains using the vm_r role.
|
| A D | xenstore.te | 14 # Xenstore queries domaininfo on all domains
|
| /tools/xenstored/ |
| A D | domain.h | 180 void domain_check_acc_add(const struct node *node, struct hashtable *domains); 181 void domain_check_acc(struct hashtable *domains);
|
| A D | domain.c | 2046 struct hashtable *domains = arg; in domain_check_acc_init_sub() local 2062 if (hashtable_add(domains, &dom->domid, dom)) { in domain_check_acc_init_sub() 2072 struct hashtable *domains; in domain_check_acc_init() local 2074 domains = create_hashtable(NULL, "domain_check", domhash_fn, domeq_fn, in domain_check_acc_init() 2076 if (!domains) in domain_check_acc_init() 2079 if (hashtable_iterate(domhash, domain_check_acc_init_sub, domains)) { in domain_check_acc_init() 2080 hashtable_destroy(domains); in domain_check_acc_init() 2084 return domains; in domain_check_acc_init() 2093 dom = hashtable_search(domains, &domid); in domain_check_acc_add() 2120 void domain_check_acc(struct hashtable *domains) in domain_check_acc() argument [all …]
|
| /tools/flask/policy/policy/ |
| A D | security_classes | 3 # These classes are not used by the hypervisor, but may be used by domains or
|
| A D | initial_sids | 17 # Initial SIDs used by the toolstack for domains without defined labels
|
| /tools/xl/ |
| A D | xl_info.c | 903 uint32_t domains[100]; in main_uptime() local 914 domains[nb_doms] = find_domain(dom); in main_uptime() 916 print_uptime(short_mode, domains, nb_doms); in main_uptime()
|