Searched refs:child (Results 1 - 25 of 444) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/subtest/
H A Dbasic.t38 my $indented = $tb->child;
76 my $indented = $tb->child;
80 my $indented2 = $indented->child('with name');
86 $indented->$ok( 1, 'after child' );
102 ok 3 - after child
115 my $child = $tb->child('expected to fail');
116 $child->$plan( tests => 3 );
117 $child->$ok(1);
118 $child
[all...]
/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp74 /// @param child - The class that may be the subset
76 /// @return - True if child is a subset of parent, false otherwise.
77 static inline bool inheritsFrom(InstructionContext child, argument
81 if (child == parent)
86 return(inheritsFrom(child, IC_64BIT, AdSize64) ||
87 (noPrefix && inheritsFrom(child, IC_OPSIZE, noPrefix)) ||
88 inheritsFrom(child, IC_ADSIZE) ||
89 (noPrefix && inheritsFrom(child, IC_XD, noPrefix)) ||
90 (noPrefix && inheritsFrom(child, IC_XS, noPrefix)));
92 return(inheritsFrom(child, IC_64BIT_REX
[all...]
/openbsd-current/regress/usr.sbin/ospfd/
H A Dtestfd.pl27 socketpair(my $parent, my $child, AF_UNIX, SOCK_STREAM, PF_UNSPEC)
29 $child->fcntl(F_SETFD, 0)
35 # child process
40 sendfd($child, $fd)
45 close($child)
46 or die "Close child socket failed: $!";
H A DTap.pm59 socketpair(my $parent, my $child, AF_UNIX, SOCK_STREAM, PF_UNSPEC)
61 $child->fcntl(F_SETFD, 0)
68 # child process
73 my @cmd = ($ENV{SUDO}, '-C', $child->fileno()+1, $opentap,
74 $child->fileno(), $tap_number);
81 close($child)
82 or croak "Close child socket failed: $!";
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dcrash3.C7 Node* child[2]; member in struct:Node
/openbsd-current/regress/lib/libpthread/fcntl/
H A Dfcntl.c49 int flags, newflags, child; local
54 CHECKe(child = fork());
55 switch(child) {
56 case 0: /* child */
67 printf ("parent %d flags = %x\n", child, newflags);
/openbsd-current/gnu/usr.bin/binutils/gprof/
H A Dcall_graph.c41 Sym *child;
44 child = sym_lookup (&symtab, self_pc);
46 if (child == NULL || parent == NULL)
50 child will probably point to line symbols instead of function
52 line number in the calling routing, but the child should always
58 while (child >= symtab.base && ! child->is_func)
59 --child;
61 if (child < symtab.base)
66 if (sym_id_arc_is_present (&syms[INCL_ARCS], parent, child)
40 Sym *child; local
[all...]
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.
14 Sym *child; /* dest vertice of arc */ member in struct:arc
15 unsigned long count; /* # of calls from parent to child */
17 double child_time; /* child-time inherited along arc */
19 struct arc *next_child; /* next child of PARENT */
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.c63 is_numbered (child)
64 Sym *child;
66 return child->cg.top_order != DFN_NAN && child->cg.top_order != DFN_BUSY;
74 is_busy (child)
75 Sym *child;
77 if (child->cg.top_order == DFN_NAN)
92 find_cycle (child)
93 Sym *child;
103 if (child
[all...]
H A Dcg_arcs.c59 arc_lookup (parent, child)
61 Sym *child;
65 if (!parent || !child)
67 printf ("[arc_lookup] parent == 0 || child == 0\n");
70 DBG (LOOKUPDEBUG, printf ("[arc_lookup] parent %s child %s\n",
71 parent->name, child->name));
74 DBG (LOOKUPDEBUG, printf ("[arc_lookup]\t parent %s child %s\n",
75 arc->parent->name, arc->child->name));
76 if (child->addr >= arc->child
175 Sym *child; local
451 Sym *old_head, *child; local
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gprof/
H A Dcall_graph.c38 Sym *child;
41 child = sym_lookup (&symtab, self_pc);
43 if (child == NULL || parent == NULL)
47 child will probably point to line symbols instead of function
49 line number in the calling routing, but the child should always
55 while (child >= symtab.base && ! child->is_func)
56 --child;
58 if (child < symtab.base)
63 if (sym_id_arc_is_present (&syms[INCL_ARCS], parent, child)
37 Sym *child; local
[all...]
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.
14 Sym *child; /* dest vertice of arc */ member in struct:arc
15 unsigned long count; /* # of calls from parent to child */
17 double child_time; /* child-time inherited along arc */
19 struct arc *next_child; /* next child of PARENT */
27 extern void arc_add (Sym * parent, Sym * child, unsigned long count);
28 extern Arc *arc_lookup (Sym * parent, Sym * child);
H A Dcg_arcs.c59 arc_lookup (Sym *parent, Sym *child) argument
63 if (!parent || !child)
65 printf ("[arc_lookup] parent == 0 || child == 0\n");
68 DBG (LOOKUPDEBUG, printf ("[arc_lookup] parent %s child %s\n",
69 parent->name, child->name));
72 DBG (LOOKUPDEBUG, printf ("[arc_lookup]\t parent %s child %s\n",
73 arc->parent->name, arc->child->name));
74 if (child->addr >= arc->child->addr
75 && child
88 arc_add(Sym *parent, Sym *child, unsigned long count) argument
167 Sym *child; local
360 inherit_flags(Sym *child) argument
441 Sym *old_head, *child; local
[all...]
H A Dcg_dfn.c63 is_numbered (Sym *child) argument
65 return child->cg.top_order != DFN_NAN && child->cg.top_order != DFN_BUSY;
73 is_busy (Sym *child) argument
75 if (child->cg.top_order == DFN_NAN)
90 find_cycle (Sym *child) argument
100 if (child == head)
104 if (child->cg.cyc.head != child && child
[all...]
/openbsd-current/sys/dev/mii/
H A Dmii.c66 struct mii_softc *child; local
90 for (child = LIST_FIRST(&mii->mii_phys); child != NULL;
91 child = LIST_NEXT(child, mii_list)) {
92 if (child->mii_phy == ma.mii_phyno) {
137 if ((child = (struct mii_softc *)config_found_sm(parent, &ma,
142 LIST_INSERT_HEAD(&mii->mii_phys, child, mii_list);
143 child->mii_offset = offset;
155 struct mii_softc *child, *nchil local
212 struct mii_softc *child; local
233 struct mii_softc *child; local
246 struct mii_softc *child; local
262 struct mii_softc *child; local
[all...]
/openbsd-current/gnu/llvm/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A Drun.py25 child = spawn('scp foo user@example.com:.')
26 child.expect('(?i)password')
27 child.sendline(mypassword)
83 access the child spawn object or any other variable defined in run()
84 (event_count, child, and extra_args are the most useful). A callback may
87 sent to the child. 'extra_args' is not used by directly run(). It provides
96 child = spawn(command, maxread=2000, logfile=logfile, cwd=cwd, env=env,
99 child = spawn(command, timeout=timeout, maxread=2000, logfile=logfile,
115 index = child.expect(patterns)
116 if isinstance(child
[all...]
H A Dreplwrap.py38 self.child = pexpect.spawn(cmd_or_spawn, echo=False, encoding='utf-8')
40 self.child = cmd_or_spawn
41 if self.child.echo:
44 self.child.setecho(False)
45 self.child.waitnoecho()
61 self.child.expect(orig_prompt)
62 self.child.sendline(prompt_change)
65 return self.child.expect_exact([self.prompt, self.continuation_prompt],
88 self.child.sendline(cmdlines[0])
91 res.append(self.child
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D920810-1.c8 t*child=(t*)malloc(size); local
9 memcpy(child,clas,clas->size);
10 child->super=clas;
11 child->name=0;
12 child->size=size;
13 return child;
/openbsd-current/regress/sys/kern/pledge/execpromise/
H A DMakefile9 run-no-child-pledge: ${PROG}
11 REGRESS_TARGETS+= run-no-child-pledge
13 run-abort-child: ${PROG}
16 REGRESS_TARGETS+= run-abort-child
18 run-ENOSYS-child: ${PROG}
21 REGRESS_TARGETS+= run-ENOSYS-child
/openbsd-current/regress/sys/kern/sosplice/
H A DChild.pm31 sub child { subroutine
/openbsd-current/regress/usr.bin/mandoc/mdoc/Vt/
H A DMakefile3 REGRESS_TARGETS = noarg spacing font child
/openbsd-current/lib/libc/thread/
H A Datfork.c46 void (*child)(void), void *dso)
55 af->fn_child = child;
70 pthread_atfork(void (*prep)(void), void (*parent)(void), void (*child)(void)) argument
72 return (_thread_atfork(prep, parent, child, NULL));
45 _thread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void), void *dso) argument
/openbsd-current/regress/sys/kern/ptrace2/
H A Dptrace_test.c55 * A variant of ATF_REQUIRE that is suitable for use in child
140 pid_t child, wpid; local
143 ATF_REQUIRE((child = fork()) != -1);
144 if (child == 0) {
154 wpid = waitpid(child, &status, 0);
156 ATF_REQUIRE(wpid == child);
160 /* Continue the child ignoring the SIGSTOP. */
161 ATF_REQUIRE(ptrace(PT_CONTINUE, child, (caddr_t)1, 0) != -1);
164 wpid = waitpid(child, &status, 0);
166 ATF_REQUIRE(wpid == child);
184 pid_t child, wpid; local
231 pid_t child, debugger, wpid; local
328 pid_t child, debugger, fpid, wpid; local
[all...]
/openbsd-current/usr.bin/rdist/
H A Dchild.c1 /* $OpenBSD: child.c,v 1.28 2022/12/26 19:16:02 jmc Exp $ */
54 * Structure for child rdist processes mainted by the parent
57 char *c_name; /* Name of child */
78 * Remove a child that has died (exited)
82 removechild(CHILD *child) argument
87 child->c_name, child->c_pid, child->c_readfd);
90 * Find the child in the list
94 if (pc == child)
130 copychild(CHILD *child) argument
149 addchild(CHILD *child) argument
170 readchild(CHILD *child) argument
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.threads/
H A Dkilled.c38 pthread_t child; local
41 pthread_create (&child, 0, child_func, 0);

Completed in 319 milliseconds

1234567891011>>