Home
last modified time | relevance | path

Searched refs:pnode (Results 1 – 13 of 13) sorted by relevance

/trueos/usr.sbin/notifyd/
HDpathwatch.c121 static void _path_node_update(path_node_t *pnode, uint32_t flags, vnode_t *vnode);
282 _vnode_add_pnode(vnode_t *vnode, path_node_t *pnode) in _vnode_add_pnode() argument
288 if (vnode->path_node[i] == pnode) return; in _vnode_add_pnode()
295 vnode->path_node[i] = pnode; in _vnode_add_pnode()
311 vnode->path_node[vnode->path_node_count++] = pnode; in _vnode_add_pnode()
386 _vnode_create(const char *path, uint32_t type, path_node_t *pnode) in _vnode_create() argument
404 _vnode_add_pnode(vnode, pnode); in _vnode_create()
441 _vnode_add_pnode(vnode, pnode); in _vnode_create()
465 _vnode_create_real_path(const char *path, uint32_t type, path_node_t *pnode) in _vnode_create_real_path() argument
469 if (path == NULL) return _vnode_create(path, type, pnode); in _vnode_create_real_path()
[all …]
HDpathwatch.h82 void path_node_close(path_node_t *pnode);
/trueos/sbin/rcorder/
HDrcorder.c103 provnode *pnode; member
284 provnode *pnode, *head; in add_provide() local
339 pnode = emalloc(sizeof(*pnode)); in add_provide()
340 pnode->head = RESET; in add_provide()
341 pnode->in_progress = RESET; in add_provide()
342 pnode->fnode = fnode; in add_provide()
343 pnode->next = head->next; in add_provide()
344 pnode->last = head; in add_provide()
345 head->next = pnode; in add_provide()
346 if (pnode->next != NULL) in add_provide()
[all …]
/trueos/usr.sbin/makefs/
HDmtree.c146 fsnode *pnode; in mtree_file_path() local
153 for (pnode = node->parent; pnode && depth < MAKEFS_MAX_TREE_DEPTH; in mtree_file_path()
154 pnode = pnode->parent) { in mtree_file_path()
155 if (strcmp(pnode->name, ".") == 0) in mtree_file_path()
157 rp[++depth] = pnode->name; in mtree_file_path()
/trueos/contrib/ipfilter/tools/
HDippool.c154 ip_pool_node_t pnode; local
156 void *ptr = &pnode;
160 bzero((char *)&pnode, sizeof(pnode));
245 err = load_poolnode(role, poolname, &pnode, ttl, ioctl);
247 err = remove_poolnode(role, poolname, &pnode, ioctl);
/trueos/contrib/unbound/validator/
HDautotrust.h93 rbnode_t pnode; member
HDautotrust.c353 tp->autr->pnode.key = tp; in autr_tp_create()
364 if(!rbtree_insert(&anchors->autr->probe, &tp->autr->pnode)) { in autr_tp_create()
878 (void)rbtree_insert(&anchors->autr->probe, &tp->autr->pnode); in parse_var_line()
2030 (void)rbtree_insert(&env->anchors->autr->probe, &tp->autr->pnode); in set_next_probe()
2061 pd.pnode.key = &key; in autr_tp_remove()
2369 (void)rbtree_insert(&env->anchors->autr->probe, &tp->autr->pnode); in todo_probe()
/trueos/contrib/gcc/
HDstmt.c2828 case_node_ptr pnode; in node_has_low_bound() local
2853 for (pnode = node->parent; pnode; pnode = pnode->parent) in node_has_low_bound()
2854 if (tree_int_cst_equal (low_minus_one, pnode->high)) in node_has_low_bound()
2874 case_node_ptr pnode; in node_has_high_bound() local
2904 for (pnode = node->parent; pnode; pnode = pnode->parent) in node_has_high_bound()
2905 if (tree_int_cst_equal (high_plus_one, pnode->low)) in node_has_high_bound()
HDc-common.c4386 handle_used_attribute (tree *pnode, tree name, tree ARG_UNUSED (args), in handle_used_attribute() argument
4389 tree node = *pnode; in handle_used_attribute()
4446 handle_externally_visible_attribute (tree *pnode, tree name, in handle_externally_visible_attribute() argument
4451 tree node = *pnode; in handle_externally_visible_attribute()
HDdwarf2out.c6421 limbo_die_node *node, **pnode; in break_out_includes() local
6456 for (node = limbo_die_list, pnode = &limbo_die_list; in break_out_includes()
6467 *pnode = node->next; in break_out_includes()
6470 pnode = &node->next; in break_out_includes()
HDtree.c3714 handle_dll_attribute (tree * pnode, tree name, tree args, int flags, in handle_dll_attribute() argument
3717 tree node = *pnode; in handle_dll_attribute()
/trueos/contrib/texinfo/info/
HDsession.c1050 char *pnode; in backward_move_node_structure() local
1052 pnode = xstrdup (info_parsed_nodename); in backward_move_node_structure()
1056 strcmp (info_parsed_nodename, pnode) == 0) in backward_move_node_structure()
1060 free (pnode); in backward_move_node_structure()
1065 free (pnode); in backward_move_node_structure()
/trueos/contrib/jemalloc/src/
HDctl.c744 const ctl_named_node_t *pnode = node; in ctl_lookup() local
760 if (node == pnode) { in ctl_lookup()