Searched defs:node (Results 1 - 25 of 262) sorted by relevance

1234567891011

/osnet-11/usr/src/lib/fm/topo/modules/sun4/pcibus/
H A Dpci_sun4.c38 pci_fru_compute(topo_mod_t *mod, tnode_t *node, nvlist_t *in, nvlist_t **out) argument
40 return (pci_fru_cmn(mod, node, in, out));
/osnet-11/usr/src/lib/sun_sas/common/
H A Dverify.c39 di_node_t node; local
58 node = di_init(path, DINFOCPYALL);
59 if (node == DI_NODE_NIL) {
65 state = di_state(node);
69 di_fini(node);
71 "devinfo node is not online state: %d", state);
76 di_fini(node);
H A DSun_sasRefreshAdapterConfiguration.c30 * Discover an HBA node with matching path.
35 find_matching_hba(di_node_t node, void *arg) argument
42 if (IS_STUB_NODE(node)) {
46 rval = di_prop_lookup_ints(DDI_DEV_T_ANY, node,
51 if ((devpath = di_devfs_path(node)) == NULL) {
60 /* Found a node. No need to walk any more. */
/osnet-11/usr/src/cmd/hal/hald/solaris/
H A Ddevinfo_ieee1394.c36 HalDevice *devinfo_ieee1394_add(HalDevice *parent, di_node_t node, char *devfs_path, char *device_type);
37 static HalDevice *devinfo_scsa1394_add(HalDevice *d, di_node_t node, gchar *devfs_path);
49 devinfo_ieee1394_add(HalDevice *parent, di_node_t node, char *devfs_path, char *device_type) argument
59 if ((di_compatible_names (node, &compat) < 1) ||
64 if ((driver_name = di_driver_name (node)) == NULL) {
69 d = devinfo_scsa1394_add (parent, node, devfs_path);
76 devinfo_scsa1394_add(HalDevice *parent, di_node_t node, gchar *devfs_path) argument
82 devinfo_set_default_properties (d, parent, node, devfs_path);
H A Ddevinfo_misc.c73 devinfo_computer_add(HalDevice *parent, di_node_t node, char *devfs_path, char *device_type) argument
127 devinfo_keyboard_add(HalDevice *parent, di_node_t node, char *devfs_path, argument
133 if (strcmp(di_node_name(node), "keyboard") != 0) {
139 devinfo_set_default_properties(d, parent, node, devfs_path);
164 devinfo_mouse_add(HalDevice *parent, di_node_t node, char *devfs_path, argument
170 if (strcmp(di_node_name(node), "mouse") != 0) {
176 devinfo_set_default_properties(d, parent, node, devfs_path);
199 devinfo_default_add(HalDevice *parent, di_node_t node, char *devfs_path, char *device_type) argument
205 /* ignore all children of the 'pseudo' node except lofi */
210 driver_name = di_driver_name (node);
[all...]
H A Ddevinfo_pci.c31 HalDevice *devinfo_pci_add (HalDevice *parent, di_node_t node, char *devfs_path, char *device_type);
42 HalDevice *devinfo_pci_add (HalDevice *parent, di_node_t node, char *devfs_path, char *device_type) argument
63 devinfo_set_default_properties (d, parent, node, devfs_path);
68 if (di_prop_lookup_ints (DDI_DEV_T_ANY, node, "vendor-id", &i) > 0) {
71 if (di_prop_lookup_ints (DDI_DEV_T_ANY, node, "device-id", &i) > 0) {
74 if (di_prop_lookup_ints (DDI_DEV_T_ANY, node, "subsystem-vendor-id", &i) > 0) {
77 if (di_prop_lookup_ints (DDI_DEV_T_ANY, node, "subsystem-id", &i) > 0) {
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_file.c62 topo_file_load(topo_mod_t *mod, tnode_t *node, const char *name, argument
74 topo_dprintf(mod->tm_hdl, TOPO_DBG_SNAP, "%s: mod=0x%p, node=0x%p, "
76 __func__, (void *)mod, (void *)node,
134 if (topo_xml_enum(mod, tfp->tf_tmap, node) < 0) {
H A Dtopo_list.c159 topo_child_next(tnode_t *pnode, tnode_t *node) argument
165 if (node == NULL) {
174 index = topo_node_hash(node->tn_phash, node->tn_instance) + 1;
175 for (nhp = node->tn_phash; nhp != NULL; nhp = topo_list_next(nhp)) {
H A Dtopo_protocol.c41 topo_node_asru(tnode_t *node, nvlist_t **asru, nvlist_t *priv, int *err) argument
45 if (topo_prop_getprop(node, TOPO_PGROUP_PROTOCOL,
50 topo_hdl_nvdup(node->tn_hdl, ap, asru) < 0) {
62 topo_node_fru(tnode_t *node, nvlist_t **fru, nvlist_t *priv, int *err) argument
66 if (topo_prop_getprop(node, TOPO_PGROUP_PROTOCOL, TOPO_PROP_FRU,
71 topo_hdl_nvdup(node->tn_hdl, fp, fru) < 0) {
83 topo_node_resource(tnode_t *node, nvlist_t **resource, int *err) argument
86 return (topo_prop_get_fmri(node, TOPO_PGROUP_PROTOCOL,
91 topo_node_label(tnode_t *node, char **label, int *err) argument
94 return (topo_prop_get_string(node, TOPO_PGROUP_PROTOCO
99 topo_node_asru_set(tnode_t *node, nvlist_t *asru, int flag, int *err) argument
128 topo_node_fru_set(tnode_t *node, nvlist_t *fru, int flag, int *err) argument
155 topo_node_label_set(tnode_t *node, char *label, int *err) argument
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/i86pc/pcibus/common/
H A Dpci_i86pc.c42 platform_pci_label(topo_mod_t *mod, tnode_t *node, nvlist_t *in, argument
45 return (pci_label_cmn(mod, node, in, out));
49 platform_pci_fru(topo_mod_t *mod, tnode_t *node, nvlist_t *in, argument
52 return (pci_fru_cmn(mod, node, in, out));
56 * return true if pciexbus node whose parent is a pciexrc node
66 * Look for down-stream switch "2" on riser card. First find this node's parent.
67 * If it is a pciexfn node and it has dev=2 and node 6 levels further up
95 * Look for down-stream switch "4" on riser card. First find this node'
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/sun4u/pcibus/common/
H A Dpci_sun4u.c41 platform_pci_label(topo_mod_t *mod, tnode_t *node, nvlist_t *in, argument
44 return (pci_label_cmn(mod, node, in, out));
47 platform_pci_fru(topo_mod_t *mod, tnode_t *node, nvlist_t *in, argument
50 return (pci_fru_compute(mod, node, in, out));
/osnet-11/usr/src/grub/grub2/grub-core/font/
H A Dfont_cmd.c50 struct grub_font_node *node; local
53 for (node = grub_font_list; node; node = node->next)
55 grub_font_t font = node->value;
/osnet-11/usr/src/lib/libc/port/gen/
H A Dtfind.c48 typedef struct node { void *key; struct node *llink, *rlink; } NODE; struct
51 /* tfind - find a node, or return 0 */
/osnet-11/usr/src/lib/libuuid/common/
H A Detheraddr.c50 arp_get(uuid_node_t *node) argument
85 bcopy(&ar.arp_ha.sa_data, node, 6);
100 get_ethernet_address(uuid_node_t *node) argument
104 if (arp_get(node) == 0)
113 bcopy(state.wa_etheraddr, node, state.wa_etheraddrlen);
H A Duuid_misc.h68 uuid_node_t node; /* saved node ID */ member in struct:__anon2707
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dkeypad.c58 t_decode *node, *saved; local
70 /* First node of tree. */
71 node = (t_decode *) malloc(sizeof *node);
72 if (node == (t_decode *) 0)
75 *root = saved = node;
77 node->child = node->sibling = (t_decode *) 0;
78 node->ch = *str++;
79 node
[all...]
H A Dwgetch.c115 t_decode *node; local
177 node = (t_decode *) __m_screen->_decode;
184 while (node->ch != ch) {
185 node = node->sibling;
186 if (node == (t_decode *) 0)
191 if (node->key != 0) {
193 return __m_return_int("wgetch", node->key);
213 node = node
[all...]
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dkeypad.c60 t_decode *node, *saved; local
72 /* First node of tree. */
73 node = (t_decode *) malloc(sizeof (*node));
74 if (node == NULL)
77 *root = saved = node;
79 node->child = node->sibling = NULL;
80 node->ch = *str++;
81 node
[all...]
/osnet-11/usr/src/lib/sun_fc/common/
H A DHBANPIVPort.cc75 char node[MAXPATHLEN]; local
96 sprintf(node, "%s/%s", dir, dirp->d_name);
97 if ((count = readlink(node,buf,sizeof(buf)))) {
/osnet-11/usr/src/lib/libprtdiag/common/
H A Dcpu.c57 * requires as input a legal prom node pointer. If a NULL
85 get_ecache_size(Prom_node *node) argument
90 if (cache_size_p = (int *)get_prop_val(find_prop(node,
94 if (cache_size_p = (int *)get_prop_val(find_prop(node,
98 if (cache_size_p = (int *)get_prop_val(find_prop(node,
174 /* Do not display a failed CPU node */
/osnet-11/usr/src/lib/libslp/clib/
H A Dslp_search.c55 struct node { char *key; struct node *llink, *rlink; }; struct
56 typedef struct node NODE;
79 NODE *q; /* New node if key not found */
92 if (q != NULL) { /* Allocate new node */
93 *rootp = q; /* Link new node to old */
94 q->key = key; /* Initialize new node */
/osnet-11/usr/src/lib/libnsctl/common/
H A Dhash.c47 hash_node_t *node; local
49 node = (hash_node_t *)malloc(sizeof (hash_node_t));
50 if (!node) {
53 node->key = strdup(key);
54 node->data = data;
61 node->next = hash[ index ];
62 hash[ index ] = node;
71 * Searches the hash to find a node.
75 * pointer to node if found.
81 hash_node_t *node; local
97 hash_node_t *node, *prev; local
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/common/ipmi/common/
H A Dipmi_methods.c126 ipmi_fru_label(topo_mod_t *mod, tnode_t *node, topo_version_t vers, argument
154 (topo_node_instance(node) + offset));
168 * the fan/psu itself or the parent node.
174 ipmi_fru_fmri(topo_mod_t *mod, tnode_t *node, topo_version_t vers, argument
194 if (topo_node_resource(node, &fru, &err) != 0)
197 if (topo_node_resource(topo_node_parent(node), &fru, &err) != 0)
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_set.c79 * Delete or update a particular child node
88 struct profile_node *section, *node; local
117 retval = profile_find_node(section, *cpp, old_value, 0, &state, &node);
120 retval = profile_set_relation_value(node, new_value);
122 retval = profile_remove_node(node);
140 struct profile_node *section, *node; local
162 retval = profile_find_node(section, *cpp, 0, 0, &state, &node);
165 retval = profile_remove_node(node);
186 struct profile_node *section, *node; local
212 retval = profile_find_node(section, *cpp, 0, 1, &state, &node);
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DChecker.pm144 The given link to I<NAME> does not have a matching node in the current
145 POD. This also happend when a single word node name is not enclosed in
301 =item * alternative text/node '%s' contains non-escaped | or /
670 =item C<$checker-E<gt>node()>
679 sub node { subroutine
684 # add node, order important!
709 # add node, order important!
760 # first build the node names from the paragraph text
762 foreach($self->node()) {
765 # we have more than one word. Use the first as a node, to
[all...]

Completed in 66 milliseconds

1234567891011