Searched defs:tree (Results 1 - 25 of 36) sorted by relevance

12

/osnet-11/usr/src/lib/libprtdiag/common/
H A Dkstat.c58 * fhc, environ, sysctrl. Each board in the tree should have
63 read_platform_kstats(Sys_tree *tree, struct system_kstat_data *sys_kstat, argument
81 for (bnode = tree->bd_list; bnode != NULL; bnode = bnode->next) {
379 * fhc, environ, sysctrl. Each board in the tree should have
384 read_sun4u_kstats(Sys_tree *tree, struct system_kstat_data *sys_kstat) argument
427 read_platform_kstats(tree, sys_kstat, bdp, ep);
H A Dprom.c92 platform_disp_prom_version(Sys_tree *tree) argument
97 bnode = tree->bd_list;
H A Dcpu.c113 display_cpu_devices(Sys_tree *tree) argument
135 bnode = tree->bd_list;
H A Ddisplay_sun4u.c57 display(Sys_tree *tree, argument
72 exit_code = error_check(tree, kstats);
99 display_memorysize(tree, kstats, &grps, &memory_total);
105 display_cpu_devices(tree);
108 display_memoryconf(tree, &grps);
111 (void) display_io_devices(tree);
118 display_hp_fail_fault(tree, kstats);
121 root, tree, kstats);
129 error_check(Sys_tree *tree, struct system_kstat_data *kstats) argument
132 tree
142 disp_fail_parts(Sys_tree *tree) argument
155 display_hp_fail_fault(Sys_tree *tree, struct system_kstat_data *kstats) argument
167 display_diaginfo(int flag, Prom_node *root, Sys_tree *tree, struct system_kstat_data *kstats) argument
183 resolve_board_types(Sys_tree *tree) argument
[all...]
H A Dpdevinfo_sun4u.c63 * tree-walking functions which contain sun4u specifics were moved
84 Prom_node *root_node; /* root node of OBP device tree */
93 /* set the the system tree fields */
152 * Walk the PROM device tree and build the system tree and root tree.
162 walk(Sys_tree *tree, Prom_node *root, int id) argument
189 * board# property. But the PROM tree does not exactly follow
218 add_node(tree, pnode);
245 add_node(tree, pnod
[all...]
H A Dlibdevinfo_sun4u.c55 static Prom_node *walk_di_tree(Sys_tree *tree, Prom_node *root,
69 * walk libdevinfo's device tree instead of walking OBP's
70 * device tree.
73 walk_di_tree(Sys_tree *tree, Prom_node *root, di_node_t di_node) argument
138 add_node(tree, pnode);
160 add_node(tree, pnode);
172 pnode->child = walk_di_tree(tree, pnode, curnode);
177 return (walk_di_tree(tree, root, curnode));
179 pnode->sibling = walk_di_tree(tree, root, curnode);
408 * libdevinfo for getting the device tree instea
[all...]
H A Dpdevinfo_sun4v.c62 * tree-walking functions which contain sun4v specifics were moved
84 Prom_node *root_node; /* root node of OBP device tree */
101 /* set the the system tree fields */
142 * sun4v_Walk the PROM device tree and build the system tree and root tree.
148 sun4v_walk(Sys_tree *tree, Prom_node *root, int id) argument
175 * board# property. But the PROM tree does not exactly follow
198 add_node(tree, pnode);
205 add_node(tree, pnod
[all...]
H A Dmemory.c88 display_memorysize(Sys_tree *tree, struct system_kstat_data *kstats, argument
113 display_memoryconf(Sys_tree *tree, struct grp_info *grps) argument
H A Dio.c265 display_io_devices(Sys_tree *tree) argument
281 bnode = tree->bd_list;
806 * in the device tree. To get back to that level,
/osnet-11/usr/src/lib/libresolv2/include/isc/
H A Dtree.h0 /* tree.h - declare structures used by tree library
4 * vix 27jun86 [broken out of tree.c]
6 * $Id: tree.h,v 1.3 2005/04/27 04:56:18 sra Exp $
47 tree; typedef in typeref:struct:tree_s
50 void tree_init __P((tree **));
51 tree_t tree_srch __P((tree **, int (*)(), tree_t));
52 tree_t tree_add __P((tree **, int (*)(), tree_t, void (*)()));
53 int tree_delete __P((tree **, int (*)(), tree_t, void (*)()));
54 int tree_trav __P((tree **, in
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/Perldoc/
H A DToTk.pm16 sub tree { shift->_perldoc_elem('tree' , @_) } subroutine
44 my($tk_opt, $tree);
45 $tree = $self->{'tree' };
75 (($Tk::Pod::VERSION >= 4) ? ('-tree' => $tree) : ())
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dkeypad.c53 * Add a function key string to the decode tree.
72 /* First node of tree. */
83 /* Find node to insert function key sequence into the tree. */
107 /* Insert string into the tree; node->child == null. */
129 __m_decode_free(t_decode **tree) argument
131 if (*tree != NULL) {
132 __m_decode_free(&(*tree)->sibling);
133 __m_decode_free(&(*tree)->child);
134 free(*tree);
135 *tree
143 __m_decode_init(t_decode **tree) argument
[all...]
/osnet-11/usr/src/lib/libast/common/path/
H A Dpathexists.c43 struct Tree_s* tree; member in struct:Tree_s
62 static Tree_t tree; local
64 t = &tree;
75 for (t = p->tree; t && (*cmp)(s, t->name); t = t->next);
84 t->next = p->tree;
85 p->tree = t;
110 p->next = t->tree;
111 t->tree = p;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DConcise.pm124 print $walkHandle tree($cv->ROOT, 0);
135 } elsif ($order eq "tree") {
137 print $walkHandle tree(main_root, 0);
187 } elsif ($o eq "-tree") {
188 $order = "tree";
712 sub tree { subroutine
723 push @lines, tree($kid, $level+1);
795 B::Concise - Walk Perl syntax tree, printing concise info about ops
806 tree in one of several space-efficient text formats suitable for debugging
808 the order they appear in the OP tree, i
[all...]
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dexpand.c217 * scan tree and add each name that matches the given pattern
219 static int scantree(Dt_t *tree, const char *pattern, struct argnod **arghead) argument
225 np = (Namval_t*)dtfirst(tree);
226 for(;np && !nv_isnull(np);(np = (Namval_t*)dtnext(tree,np)))
/osnet-11/usr/src/lib/libsmb/common/
H A Dsmb_kmod.c233 smb_netconnectinfo_t *tree; local
256 tree = &item->nsi_un.nsi_tree;
257 free(tree->ci_username);
258 free(tree->ci_share);
291 smb_netconnectinfo_t *tree; local
324 tree = &items->nsi_un.nsi_tree;
325 rc = smb_netconnectinfo_decode(tree, data, len,
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dwalk_rtree.c57 krb5_principal **tree);
103 krb5_principal **tree,
144 retval = rtree_capath_tree(context, client, server, capvals, tree);
148 retval = rtree_hier_tree(context, client, server, tree, realm_sep);
209 * Build a tree given a set of profile values retrieved by
222 krb5_principal *tree, *pprinc; local
225 tree = pprinc = NULL;
234 tree = calloc(nprincs + 1, sizeof(krb5_principal));
235 if (tree == NULL) {
240 tree[
100 krb5_walk_realm_tree( krb5_context context, const krb5_data *client, const krb5_data *server, krb5_principal **tree, int realm_sep) argument
338 krb5_principal *tree, *pprinc; local
[all...]
/osnet-11/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_principal.c150 unsigned int tree=0, ntree=1, i=0; local
199 for (tree=0; tree < ntree; ++tree) {
201 LDAP_SEARCH(subtree[tree], ldap_context->lrparams->search_scope, filter, principal_attributes);
229 } /* end of for (tree= ... */
H A Dldap_principal2.c108 unsigned int tree=0, ntrees=1, princlen=0; local
164 for (tree=0; tree < ntrees && *nentries == 0; ++tree) {
166 LDAP_SEARCH(subtree[tree], ldap_context->lrparams->search_scope, filter, principal_attributes);
214 } /* for (tree=0 ... */
574 int tree = 0, ntrees = 0, princlen = 0, numlentries = 0; local
603 for (tree = 0; found_entry == FALSE && tree < ntrees; ++tree) {
[all...]
/osnet-11/usr/src/lib/libprtdiag_psr/sparc/opl/common/
H A Dopl.c88 void display_cpu_devices(Sys_tree *tree);
90 void display_memoryconf(Sys_tree *tree, struct grp_info *grps);
92 void display_io_devices(Sys_tree *tree);
93 void display_diaginfo(int flag, Prom_node *root, Sys_tree *tree,
101 static void opl_disp_hw_revisions(Sys_tree *tree, Prom_node *root);
163 display_io_devices(Sys_tree *tree) argument
180 bnode = tree->bd_list;
249 display_cpu_devices(Sys_tree *tree) argument
290 for (bnode = tree->bd_list; bnode != NULL; bnode = bnode->next) {
338 * The internal cpu tree buil
507 display_memoryconf(Sys_tree *tree, struct grp_info *grps) argument
664 display_diaginfo(int flag, Prom_node *root, Sys_tree *tree, struct system_kstat_data *kstats) argument
676 opl_disp_hw_revisions(Sys_tree *tree, Prom_node *root) argument
[all...]
/osnet-11/usr/src/lib/libidmap/common/
H A Didmap_cache.c132 avl_tree_t tree; member in struct:sid2uid_gid_cache
144 avl_tree_t tree; member in struct:pid2sid_winname_cache
156 avl_tree_t tree; member in struct:winname2uid_gid_cache
289 avl_create(&idmap_cache.sid2uid_gid.tree,
301 avl_create(&idmap_cache.uid2sid_winname.tree,
314 avl_create(&idmap_cache.gid2sid_winname.tree,
327 avl_create(&idmap_cache.winname2uid_gid.tree,
354 &idmap_cache.sid2uid_gid.tree, &cookie)) != NULL) {
358 avl_destroy(&idmap_cache.sid2uid_gid.tree);
359 avl_create(&idmap_cache.sid2uid_gid.tree,
[all...]
/osnet-11/usr/src/lib/fm/libfmd_zfs/common/
H A Dfmd_zfs.c35 #define ZR_VDEV_FOUND 1 /* we found the vdev in the tree */
45 vdev_replacing_parent(zpool_handle_t *zhp, char *vdev, nvlist_t *tree) argument
50 if (nvlist_lookup_nvlist_array(tree, ZPOOL_CONFIG_CHILDREN,
53 zpool_vdev_name(NULL, zhp, tree, B_FALSE, B_FALSE);
91 /* The vdev couldn't be found at this level of the tree */
/osnet-11/usr/src/grub/grub2/grub-core/fs/
H A Dsfs.c155 struct grub_sfs_btree *tree;
164 tree = (struct grub_sfs_btree *) treeblock;
176 for (i = grub_be_to_cpu16 (tree->nodes) - 1; i >= 0; i--)
179 #define EXTNODE(tree, index) \
180 ((struct grub_sfs_btree_node *) (((char *) &(tree)->node[0]) \
181 + (index) * (tree)->nodesize))
183 /* Follow the tree down to the leaf level. */
184 if ((grub_be_to_cpu32 (EXTNODE(tree, i)->key) <= block)
185 && !tree->leaf)
187 next = grub_be_to_cpu32 (EXTNODE (tree,
153 struct grub_sfs_btree *tree; local
[all...]
H A Dhfs.c102 /* The key as used on disk in a catalog tree. This is used to lookup
116 /* The key as used on disk in a extent overflow tree. Using this key
185 int tree = 0;
215 in the tree. */
216 if (tree && cache)
233 tree = 1;
347 /* Lookup the root node of the extent overflow tree. */
358 /* Lookup the root node of the catalog tree. */
368 /* Lookup the root directory node in the catalog tree using the
728 The index of the node on top of the tree i
184 int tree = 0; local
[all...]
H A Djfs.c79 /* The head of the tree used to find extents. */
93 /* A node in the extent tree. */
106 /* The tree of directory entries. */
109 /* Pointers to the previous and next tree headers of other nodes on
127 /* An internal node in the dirents tree. */
136 /* A leaf node in the dirents tree. */
149 /* A leaf in the dirents tree. This one is used if the previously
181 /* The tree describing the extents of the file. */
184 struct grub_jfs_treehead tree; member in struct:grub_jfs_inode::__anon404::__anon405
189 /* The tree describin
291 } tree; local
[all...]

Completed in 62 milliseconds

12