Searched defs:components (Results 1 - 6 of 6) sorted by relevance
/osnet-11/usr/src/grub/grub2/grub-core/gfxmenu/ |
H A D | gui_string_util.c | 52 /* Count the path components in path. */ 53 int components = 1; local 56 components++; 58 char **path_array = grub_malloc (components * sizeof (*path_array)); 65 for (i = 0; i < components; i++) 70 for (i = 0; i < components && p; i++) 91 for (i = components - 1; i >= 0; --i) 122 for (i = 0; i < components; i++) 127 /* For all components but the first, prefix with a slash. */ 136 for (i = 0; i < components; [all...] |
H A D | gui_canvas.c | 1 /* gui_canvas.c - GUI container allowing manually placed components. */ 25 /* TODO Add layering so that components can be properly overlaid. */ 41 struct component_node components; member in struct:grub_gui_canvas 52 for (cur = self->components.next; cur; cur = next) 87 for (cur = self->components.next; cur; cur = cur->next) 201 node->next = self->components.next; 202 self->components.next = node; 212 prev = &self->components; 213 for (cur = self->components.next; cur; prev = cur, cur = cur->next) 233 for (cur = self->components [all...] |
/osnet-11/usr/src/lib/fm/topo/modules/sun4v/sun4vpi/common/ |
H A D | sun4vpi.c | 160 mde_cookie_t *components; local 187 * Find the top of the components graph in the PRI using the machine 191 MD_STR_COMPONENTS, MD_STR_FWD, &components, &csize); 192 if (num_components < 0 || components == NULL) { 196 topo_mod_dprintf(mod, "could not find components in PRI\n"); 202 * There should be a single components node. But scan all of the 206 * We continue to walk components nodes until they are all exhausted 211 topo_mod_dprintf(mod, "enumerating %d components hierarchies\n", 224 skip = pi_skip_node(mod, pi.mdp, components[idx]); 227 * We have found a components nod [all...] |
/osnet-11/usr/src/lib/krb5/kdb/ |
H A D | kdb_convert.c | 178 kdbe_data_t *components; local 195 p->k_components.k_components_val = components 203 memset(components, 0, princ->length * sizeof(kdbe_data_t)); 205 components[i].k_data.utf8str_t_val = NULL; 207 components[i].k_magic = princ->data[i].magic; 208 if (data_to_utf8str(&components[i].k_data, princ->data[i]) < 0) { 211 free(components[j].k_data.utf8str_t_val); 212 components[j].k_data.utf8str_t_val = NULL; 214 free(components); 259 kdbe_data_t *components; local [all...] |
/osnet-11/usr/src/lib/libhotplug/common/ |
H A D | libhotplug.c | 536 char components[MAXPATHLEN]; local 548 (void) memset(components, 0, MAXPATHLEN); 555 /* Trace back to the root node, accumulating components */ 558 (void) strlcat(components, "/", MAXPATHLEN); 559 (void) strlcat(components, parent->hp_name, MAXPATHLEN); 573 * node, then append the accumulated components in reverse order. 583 ((s = strrchr(components, '/')) != NULL)) 588 * components[] is an empty string, restore it to be "/". 591 if (components[0] == '\0') 592 (void) strlcat(components, "/", MAXPATHLE [all...] |
/osnet-11/usr/src/lib/libpool/common/ |
H A D | pool.c | 71 * libpool users manipulate configuration components via the API 84 * The key components in a libpool configuration are : 2240 * When transferring resource components using pool_resource_transfer, 2241 * this function is invoked to choose which actual components will be 2247 pool_component_t **components = NULL, *moved[] = { NULL, NULL }; local 2257 if ((components = pool_query_resource_components(conf, src, &ncomponent, 2262 qsort(components, ncomponent, sizeof (pool_elem_t *), 2268 for (i = 0; size > 0 && components[i] != NULL; i++) { 2269 if (!cpu_is_requested(components[i])) { 2270 moved[0] = components[ [all...] |
Completed in 33 milliseconds