Searched refs:cur_node (Results 1 - 17 of 17) sorted by relevance

/opensolaris-onvv-gate/usr/src/lib/udapl/libdat/common/
H A Ddat_dictionary.c173 DAT_DICTIONARY_NODE *cur_node; local
178 cur_node = p_dictionary->head;
179 p_dictionary->head = cur_node->next;
181 dat_os_free(cur_node, sizeof (DAT_DICTIONARY_NODE));
262 DAT_DICTIONARY_NODE *cur_node, *prev_node, *next_node; local
267 cur_node = entry;
274 dat_status = dat_dictionary_key_dup(key, &cur_node->key);
283 cur_node->data = data;
284 cur_node->next = next_node;
285 cur_node
307 DAT_DICTIONARY_NODE *cur_node; local
343 DAT_DICTIONARY_NODE *cur_node; local
379 DAT_DICTIONARY_NODE *cur_node, *prev_node, *next_node; local
[all...]
/opensolaris-onvv-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_provider.c220 DAPL_PROVIDER_LIST_NODE *cur_node; local
223 cur_node = g_dapl_provider_list.head;
224 g_dapl_provider_list.head = cur_node->next;
226 dapl_os_free(cur_node, sizeof (DAPL_PROVIDER_LIST_NODE));
245 DAPL_PROVIDER_LIST_NODE *cur_node, *prev_node, *next_node; local
252 cur_node = dapl_os_alloc(sizeof (DAPL_PROVIDER_LIST_NODE));
254 if (NULL == cur_node) {
272 (void) dapl_os_memcpy(cur_node->name, name, len);
273 cur_node->name[len] = '\0';
274 cur_node
305 DAPL_PROVIDER_LIST_NODE *cur_node; local
332 DAPL_PROVIDER_LIST_NODE *cur_node, *prev_node, *next_node; local
[all...]
H A Ddapl_osd.c363 DAPL_PROVIDER_LIST_NODE *cur_node; local
376 cur_node = g_dapl_provider_list.head;
377 g_dapl_provider_list.head = cur_node->next;
379 hca_ptr = (DAPL_HCA *) cur_node->data.extension;
513 dapl_os_free(cur_node, sizeof (DAPL_PROVIDER_LIST_NODE));
/opensolaris-onvv-gate/usr/src/lib/mpapi/libmpscsi_vhci/common/
H A DMP_GetMPLogicalUnitProperties.c68 di_node_t cur_node = DI_NODE_NIL; local
101 cur_node = di_drv_first_node("scsi_vhci", root_node);
102 if (DI_NODE_NIL == cur_node) {
112 cur_node = di_child_node(cur_node);
114 while (DI_NODE_NIL != cur_node) {
116 instNum = di_instance(cur_node);
117 majorNum = di_driver_major(cur_node);
131 cur_node = di_sibling_node(cur_node);
[all...]
/opensolaris-onvv-gate/usr/src/uts/sparc/os/
H A Dcpr_sparc.c358 static pnode_t cur_node; local
362 cur_node = prom_nextnode(0);
373 if ((cur_node = prom_childnode(cur_node)) == 0) {
385 name = cpr_build_nodename(cur_node);
387 long_match = cur_node;
389 short_match = cur_node;
392 } while ((cur_node = prom_nextnode(cur_node)) != 0);
405 cur_node
[all...]
/opensolaris-onvv-gate/usr/src/lib/auditd_plugins/remote/
H A Dtransport.c952 transq_node_t *cur_node; local
1117 cur_node = transq_hdr.head;
1118 while (cur_node != NULL && !break_flag) {
1119 if (cur_node->seq_num != r_seq_num) {
1120 cur_node = cur_node->next;
1126 &(cur_node->seq_token), &in_buf_mic,
1148 transq_dequeue(cur_node);
1190 cur_node->seq_num));
1191 cur_node
1514 transq_node_t *cur_node = transq_hdr.head; local
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_vss.c119 * cur_node - where in the share for the command
123 * of the cur_node
130 * By using the cur_node passed in, a new node is found or
139 smb_node_t *cur_node, char *buf, smb_node_t **vss_cur_node,
184 snapname, cur_node, gmttoken, vss_root_node);
186 /* find snapshot node corresponding to cur_node */
187 err = smb_vss_lookup_node(sr, cur_node, fsrootvp,
188 snapname, cur_node, gmttoken, vss_cur_node);
138 smb_vss_lookup_nodes(smb_request_t *sr, smb_node_t *root_node, smb_node_t *cur_node, char *buf, smb_node_t **vss_cur_node, smb_node_t **vss_root_node) argument
H A Dsmb_pathname.c103 * *cur_node (in)
106 * cur_node should have at least one reference on it.
148 smb_node_t *cur_node,
200 if (cur_node == NULL)
201 cur_node = root_node;
203 local_cur_node = cur_node;
216 err = smb_vss_lookup_nodes(sr, root_node, cur_node,
333 smb_node_t *root_node, smb_node_t *cur_node, smb_node_t **dir_node,
352 ASSERT(cur_node);
377 dnode = cur_node;
143 smb_pathname_reduce( smb_request_t *sr, cred_t *cred, const char *path, smb_node_t *share_root_node, smb_node_t *cur_node, smb_node_t **dir_node, char *last_component) argument
332 smb_pathname(smb_request_t *sr, char *path, int flags, smb_node_t *root_node, smb_node_t *cur_node, smb_node_t **dir_node, smb_node_t **ret_node, cred_t *cred) argument
[all...]
H A Dsmb_common_open.c304 smb_node_t *cur_node = NULL; local
404 cur_node = op->fqi.fq_dnode ?
409 * created on cur_node
417 if (cur_node == sr->tid_tree->t_snode) {
430 "%s%s", cur_node->od_name, pn->pn_sname);
432 op->fqi.fq_dnode = cur_node->n_dnode;
436 sr->tid_tree->t_snode, cur_node, &op->fqi.fq_dnode,
/opensolaris-onvv-gate/usr/src/cmd/vi/misc/
H A Dctags.c173 static void add_node(NODE *node, NODE *cur_node);
980 add_node(node, cur_node)
981 NODE *node, *cur_node;
985 dif = strcmp(node->entry, cur_node->entry);
987 if (node->file == cur_node->file) {
997 if (!cur_node->been_warned)
1002 node->file, cur_node->file,
1005 cur_node->been_warned = TRUE;
1010 if (cur_node->left != NULL)
1011 add_node(node, cur_node
[all...]
/opensolaris-onvv-gate/usr/src/lib/libparted/common/lib/
H A Dregexec.c66 regmatch_t *prev_idx_match, Idx cur_node,
1437 Idx idx, cur_node;
1458 cur_node = dfa->init_node;
1477 update_regs (dfa, pmatch, prev_idx_match, cur_node, idx, nmatch);
1479 if (idx == pmatch[0].rm_eo && cur_node == mctx->last_node)
1494 cur_node = pop_fail_stack (fs, &idx, nmatch, pmatch,
1507 cur_node = proceed_next_node (mctx, nmatch, pmatch, &idx, cur_node,
1510 if (BE (! REG_VALID_INDEX (cur_node), 0))
1512 if (BE (cur_node
1434 Idx idx, cur_node; local
1554 update_regs(const re_dfa_t *dfa, regmatch_t *pmatch, regmatch_t *prev_idx_match, Idx cur_node, Idx cur_idx, Idx nmatch) argument
1881 Idx cur_node = inv_eclosure->elems[ecl_idx]; local
1907 Idx cur_node = inv_eclosure->elems[ecl_idx]; local
3087 Idx cur_node = cur_nodes->elems[cur_idx]; local
3171 Idx cur_node = cur_nodes->elems[idx]; local
3210 Idx cur_node; local
[all...]
/opensolaris-onvv-gate/usr/src/uts/sun4u/serengeti/io/
H A Dsbdp_cpu.c588 pnode_t parent, cur_node; local
596 for (cur_node = prom_childnode(parent); cur_node != OBP_NONODE;
597 cur_node = prom_nextnode(cur_node)) {
599 if (prom_getprop(cur_node, OBP_PORTID, (caddr_t)&portid) < 0)
602 if ((portid == argp->portid) && (cur_node != argp->node))
606 argp->result_node = cur_node;
/opensolaris-onvv-gate/usr/src/uts/common/io/1394/
H A Ds1394_hotplug.c996 * onode->cur_node == NULL iff we couldn't read cfgrom in the
998 * match_GUIDs couldn't set cur_node).
1000 if (NODE_MATCHED(onode) == B_FALSE || (onode->cur_node ==
1002 CFGROM_VALID(onode->cur_node) == B_FALSE) ||
1004 cur_node) == B_FALSE)))) {
1006 if (onode->cur_node != NULL && CFGROM_VALID(onode) ==
1007 B_TRUE && CFGROM_VALID(onode->cur_node) == B_FALSE)
1012 if (onode->cur_node != NULL && LINK_ACTIVE(onode) ==
1013 B_TRUE && LINK_ACTIVE(onode->cur_node) == B_FALSE)
H A Ds1394_bus_reset.c879 hal->old_tree[hal_node_num_old].cur_node =
892 tmp->old_node->cur_node = tmp;
H A Ds1394_dev_disc.c1934 * the old_node field of the current node and cur_node field of the old
1980 ret = s1394_offline_node(hal, onode->cur_node);
2009 onode->cur_node = nnode;
/opensolaris-onvv-gate/usr/src/uts/common/io/sfe/
H A Dsfe.c379 sfe_search_pci_dev_subr(dev_info_t *cur_node, int vendor_id, int device_id) argument
385 if (cur_node == NULL) {
391 vid = ddi_prop_get_int(DDI_DEV_T_ANY, cur_node,
393 did = ddi_prop_get_int(DDI_DEV_T_ANY, cur_node,
398 return (cur_node);
402 if ((child_id = ddi_get_child(cur_node)) != NULL) {
409 } while ((cur_node = ddi_get_next_sibling(cur_node)) != NULL);
/opensolaris-onvv-gate/usr/src/uts/common/sys/1394/
H A Ds1394.h279 s1394_node_t *cur_node; member in struct:s1394_node_s

Completed in 293 milliseconds