Searched refs:parent (Results 1 - 25 of 2044) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/perl/cpan/autodie/t/lib/
H A Dlethal.pm6 use parent qw(autodie);
/openbsd-current/gnu/usr.bin/perl/cpan/autodie/t/lib/pujHa/
H A Dghach.pm20 use parent qw(autodie);
/openbsd-current/gnu/usr.bin/perl/cpan/autodie/t/lib/autodie/test/
H A Dbadname.pm2 use parent qw(autodie);
H A Dmissing.pm2 use parent qw(autodie);
/openbsd-current/regress/usr.sbin/ospfd/
H A DPassFd.pm21 use parent 'Exporter';
H A Dtestfd.pl27 socketpair(my $parent, my $child, AF_UNIX, SOCK_STREAM, PF_UNSPEC)
36 close($parent)
37 or do { warn "Close parent socket failed: $!"; _exit(1); };
44 # parent process
47 my $fd = recvfd($parent)
H A DTap.pm23 use parent 'Exporter';
59 socketpair(my $parent, my $child, AF_UNIX, SOCK_STREAM, PF_UNSPEC)
69 close($parent) or do {
70 warn "Close parent socket failed: $!";
80 # parent process
83 my $tap = recvfd($parent)
/openbsd-current/lib/libelf/
H A Delf_next.c39 Elf *parent; local
44 if ((parent = e->e_parent) == NULL) {
49 assert(parent->e_kind == ELF_K_AR);
50 assert(parent->e_cmd == ELF_C_READ);
51 assert(e->e_rawfile > parent->e_rawfile);
53 next = e->e_rawfile - parent->e_rawfile + (off_t) e->e_rawsize;
60 parent->e_u.e_ar.e_next = (next >= (off_t) parent->e_rawsize) ?
67 * This check is performed after updating the parent descriptor's
72 if (next > (off_t) parent
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Det-forest.c46 et_forest_occurrence_t parent; member in struct:et_forest_occurrence
108 et_forest_occurrence_t parent; local
113 parent = node->parent;
115 if (! parent)
118 grandparent = parent->parent;
125 if (node == parent->left)
127 if (parent == grandparent->left)
134 node2 = parent
[all...]
/openbsd-current/usr.bin/mandoc/
H A Deqn.c513 * Allocate a box as the last child of the parent node.
516 eqn_box_alloc(struct eqn_node *ep, struct eqn_box *parent) argument
521 bp->parent = parent;
522 bp->parent->args++;
523 bp->font = bp->parent->font;
526 if (NULL != parent->first) {
527 parent->last->next = bp;
528 bp->prev = parent->last;
530 parent
543 eqn_box_makebinary(struct eqn_node *ep, struct eqn_box *parent) argument
662 struct eqn_box *cur, *nbox, *parent, *split; local
[all...]
/openbsd-current/usr.sbin/nsd/
H A Drbtree.c69 right->left->parent = node;
71 right->parent = node->parent;
73 if (node->parent != RBTREE_NULL) {
74 if (node == node->parent->left) {
75 node->parent->left = right;
77 node->parent->right = right;
83 node->parent = right;
96 left->right->parent = node;
98 left->parent
191 rbnode_type *parent = RBTREE_NULL; local
258 change_parent_ptr(rbtree_type* rbtree, rbnode_type* parent, rbnode_type* old, rbnode_type* new) argument
520 rbnode_type *parent; local
539 rbnode_type *parent; local
[all...]
/openbsd-current/usr.sbin/unbound/util/
H A Drbtree.c113 right->left->parent = node;
115 right->parent = node->parent;
117 if (node->parent != RBTREE_NULL) {
118 if (node == node->parent->left) {
119 node->parent->left = right;
121 node->parent->right = right;
127 node->parent = right;
140 left->right->parent = node;
142 left->parent
235 rbnode_type *parent = RBTREE_NULL; local
305 change_parent_ptr(rbtree_type* rbtree, rbnode_type* parent, rbnode_type* old, rbnode_type* new) argument
573 rbnode_type *parent; local
592 rbnode_type *parent; local
[all...]
/openbsd-current/sbin/unwind/libunbound/util/
H A Drbtree.c113 right->left->parent = node;
115 right->parent = node->parent;
117 if (node->parent != RBTREE_NULL) {
118 if (node == node->parent->left) {
119 node->parent->left = right;
121 node->parent->right = right;
127 node->parent = right;
140 left->right->parent = node;
142 left->parent
235 rbnode_type *parent = RBTREE_NULL; local
305 change_parent_ptr(rbtree_type* rbtree, rbnode_type* parent, rbnode_type* old, rbnode_type* new) argument
573 rbnode_type *parent; local
592 rbnode_type *parent; local
[all...]
/openbsd-current/lib/libc/gen/
H A Dtree.c70 rbe_set(struct rb_entry *rbe, struct rb_entry *parent) argument
72 RBE_PARENT(rbe) = parent;
101 struct rb_entry *parent; local
109 parent = RBE_PARENT(rbe);
110 RBE_PARENT(tmp) = parent;
111 if (parent != NULL) {
112 if (rbe == RBE_LEFT(parent))
113 RBE_LEFT(parent) = tmp;
115 RBE_RIGHT(parent) = tmp;
125 parent
135 struct rb_entry *parent; local
169 struct rb_entry *parent, *gparent, *tmp; local
218 rbe_remove_color(const struct rb_type *t, struct rb_tree *rbt, struct rb_entry *parent, struct rb_entry *rbe) argument
310 struct rb_entry *child, *parent, *old = rbe; local
406 struct rb_entry *parent = NULL; local
553 struct rb_entry *parent = NULL; local
568 struct rb_entry *parent = NULL; local
627 _rb_set_parent(const struct rb_type *t, void *node, void *parent) argument
[all...]
/openbsd-current/sys/kern/
H A Dsubr_tree.c70 rbe_set(struct rb_entry *rbe, struct rb_entry *parent) argument
72 RBE_PARENT(rbe) = parent;
101 struct rb_entry *parent; local
109 parent = RBE_PARENT(rbe);
110 RBE_PARENT(tmp) = parent;
111 if (parent != NULL) {
112 if (rbe == RBE_LEFT(parent))
113 RBE_LEFT(parent) = tmp;
115 RBE_RIGHT(parent) = tmp;
125 parent
135 struct rb_entry *parent; local
169 struct rb_entry *parent, *gparent, *tmp; local
218 rbe_remove_color(const struct rb_type *t, struct rb_tree *rbt, struct rb_entry *parent, struct rb_entry *rbe) argument
310 struct rb_entry *child, *parent, *old = rbe; local
405 struct rb_entry *parent = NULL; local
546 struct rb_entry *parent = NULL; local
560 struct rb_entry *parent = NULL; local
613 _rb_set_parent(const struct rb_type *t, void *node, void *parent) argument
[all...]
/openbsd-current/usr.sbin/tcpdump/
H A Dmakemib124 # new OBJECT IDENTIFIER ::= { parent value }
127 function oidadd(new, parent, value) {
130 gsub(/[-&\/]/,"",parent)
131 # check if parent missing
132 if (oid[parent] == 0) {
133 printf "/* parse problem: no parent for %s.%s(%d) */\n", \
134 parent, new, value
137 # check if parent.value already exists
140 parent, new, value, oid[new]
143 # check for new name for parent
[all...]
/openbsd-current/gnu/usr.bin/binutils/gprof/
H A Dcg_arcs.h7 * With pointers to the symbols of the parent and the child, a count
9 * parent of this child and the next child of this parent.
13 Sym *parent; /* source vertice of arc */ member in struct:arc
15 unsigned long count; /* # of calls from parent to child */
18 struct arc *next_parent; /* next parent of CHILD */
27 extern void arc_add PARAMS ((Sym * parent, Sym * child, unsigned long count));
28 extern Arc *arc_lookup PARAMS ((Sym * parent, Sym * child));
H A Dcg_dfn.c212 * Prepare for visiting the children of PARENT. Push a parent onto
216 pre_visit (parent)
217 Sym *parent;
227 dfn_stack[dfn_depth].sym = parent;
229 parent->cg.top_order = DFN_BUSY;
231 print_name (parent);
241 post_visit (parent)
242 Sym *parent;
247 print_name (parent);
253 if (parent
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gprof/
H A Dcg_arcs.h7 * With pointers to the symbols of the parent and the child, a count
9 * parent of this child and the next child of this parent.
13 Sym *parent; /* source vertice of arc */ member in struct:arc
15 unsigned long count; /* # of calls from parent to child */
18 struct arc *next_parent; /* next parent of CHILD */
27 extern void arc_add (Sym * parent, Sym * child, unsigned long count);
28 extern Arc *arc_lookup (Sym * parent, Sym * child);
/openbsd-current/gnu/usr.bin/perl/cpan/autodie/t/
H A Dautodie_skippy.pm5 use parent qw(autodie::skip);
/openbsd-current/gnu/usr.bin/perl/dist/Filter-Simple/t/lib/Filter/Simple/
H A DExportTest.pm4 use parent qw(Exporter);
/openbsd-current/regress/sys/kern/sosplice/
H A DChild.pm21 use parent 'Proc';
/openbsd-current/lib/libc/thread/
H A Datfork.c45 _thread_atfork(void (*prepare)(void), void (*parent)(void), argument
54 af->fn_parent = parent;
70 pthread_atfork(void (*prep)(void), void (*parent)(void), void (*child)(void)) argument
72 return (_thread_atfork(prep, parent, child, NULL));
/openbsd-current/usr.sbin/smtpd/
H A Dexpand.c56 node->parent = expand->parent;
61 expand->parent &&
62 expand->parent->type == EXPAND_USERNAME &&
63 !strcmp(expand->parent->u.user, node->u.user)) {
77 xn->parent = expand->parent;
78 if (xn->parent)
79 xn->depth = xn->parent->depth + 1;
137 if (e1->parent
[all...]
/openbsd-current/sys/arch/sh/dev/
H A Dshb.c50 shb_match(struct device *parent, void *vcf, void *aux) argument
62 shb_attach(struct device *parent, struct device *self, void *aux) argument
70 shb_search(struct device *parent, void *vcf, void *aux) argument
74 if ((*cf->cf_attach->ca_match)(parent, cf, NULL) == 0)
76 config_attach(parent, cf, NULL, shb_print);

Completed in 199 milliseconds

1234567891011>>