Home
last modified time | relevance | path

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

/freebsd-12.1/sbin/rcorder/
H A Drcorder.c341 pnode = emalloc(sizeof(*pnode)); in add_provide()
349 pnode->next->last = pnode; in add_provide()
352 f_pnode->pnode = pnode; in add_provide()
535 pnode = emalloc(sizeof(*pnode)); in make_fake_provision()
543 pnode->next->last = pnode; in make_fake_provision()
546 f_pnode->pnode = pnode; in make_fake_provision()
578 for (pnode = Hash_GetValue(entry); pnode; pnode = pnode->next) { in insert_before()
745 pnode = p->pnode; in do_file()
747 pnode->next->last = pnode->last; in do_file()
750 pnode->last->next = pnode->next; in do_file()
[all …]
/freebsd-12.1/sys/compat/lindebugfs/
H A Dlindebugfs.c181 struct pfs_node *pnode; in debugfs_create_file() local
193 pnode = parent->d_pfs_node; in debugfs_create_file()
195 pnode = debugfs_root; in debugfs_create_file()
198 dnode->d_pfs_node = pfs_create_file(pnode, name, debugfs_fill, in debugfs_create_file()
214 struct pfs_node *pnode; in debugfs_create_dir() local
223 pnode = parent->d_pfs_node; in debugfs_create_dir()
225 pnode = debugfs_root; in debugfs_create_dir()
242 struct pfs_node *pnode; in debugfs_create_symlink() local
256 pnode = parent->d_pfs_node; in debugfs_create_symlink()
258 pnode = debugfs_root; in debugfs_create_symlink()
[all …]
/freebsd-12.1/usr.sbin/makefs/
H A Dmtree.c156 fsnode *pnode; in mtree_file_path() local
163 for (pnode = node->parent; pnode && depth < MAKEFS_MAX_TREE_DEPTH - 1; in mtree_file_path()
164 pnode = pnode->parent) { in mtree_file_path()
165 if (strcmp(pnode->name, ".") == 0) in mtree_file_path()
167 rp[++depth] = pnode->name; in mtree_file_path()
/freebsd-12.1/contrib/ipfilter/tools/
H A Dippool.c139 ip_pool_node_t pnode; local
141 void *ptr = &pnode;
145 bzero((char *)&pnode, sizeof(pnode));
240 err = load_poolnode(role, poolname, &pnode, ttl, ioctl);
242 err = remove_poolnode(role, poolname, &pnode, ioctl);
/freebsd-12.1/contrib/gcc/
H A Dstmt.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()
H A Dc-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()
H A Ddwarf2out.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()
H A Dtree.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()
/freebsd-12.1/contrib/unbound/validator/
H A Dautotrust.h94 rbnode_type pnode; member
H A Dautotrust.c352 tp->autr->pnode.key = tp; in autr_tp_create()
363 if(!rbtree_insert(&anchors->autr->probe, &tp->autr->pnode)) { in autr_tp_create()
880 (void)rbtree_insert(&anchors->autr->probe, &tp->autr->pnode); in parse_var_line()
2075 (void)rbtree_insert(&env->anchors->autr->probe, &tp->autr->pnode); in set_next_probe()
2106 pd.pnode.key = &key; in autr_tp_remove()
2419 (void)rbtree_insert(&env->anchors->autr->probe, &tp->autr->pnode); in todo_probe()
/freebsd-12.1/sys/dev/ofw/
H A Dofw_bus_subr.c824 phandle_t pnode; in ofw_bus_parse_xref_list_internal() local
836 pnode = elems[i++]; in ofw_bus_parse_xref_list_internal()
837 if (OF_getencprop(OF_node_from_xref(pnode), in ofw_bus_parse_xref_list_internal()
853 *producer = pnode; in ofw_bus_parse_xref_list_internal()
/freebsd-12.1/sys/fs/tmpfs/
H A Dtmpfs_vnops.c87 struct tmpfs_node *dnode, *pnode; in tmpfs_lookup1() local
111 pnode = dnode->tn_dir.tn_parent; in tmpfs_lookup1()
112 tmpfs_ref_node(pnode); in tmpfs_lookup1()
114 pnode, cnp->cn_lkflags, vpp); in tmpfs_lookup1()
115 tmpfs_free_node(tm, pnode); in tmpfs_lookup1()
/freebsd-12.1/contrib/jemalloc/src/
H A Dctl.c1095 const ctl_named_node_t *pnode = node; in ctl_lookup() local
1112 if (node == pnode) { in ctl_lookup()