Searched refs:child (Results 176 - 200 of 445) sorted by relevance

1234567891011>>

/openbsd-current/regress/usr.sbin/relayd/
H A DClient.pm44 sub child { subroutine
/openbsd-current/regress/usr.sbin/httpd/tests/
H A DClient.pm46 sub child { subroutine
/openbsd-current/regress/lib/libc/sys/
H A Dt_kevent.c80 pid_t child; local
100 child = fork();
101 if (child == 0) {
114 err(1, "child: could not recvmsg");
117 printf("child (pid %d): received kq fd %d\n", getpid(), kq);
147 waitpid(child, &status, 0);
/openbsd-current/usr.sbin/mtree/
H A Dmtree.h48 struct _node *parent, *child; /* up, down */ member in struct:_node
/openbsd-current/gnu/llvm/lld/MachO/
H A DExportTrie.cpp53 Edge(StringRef s, TrieNode *node) : substring(s), child(node) {}
56 struct TrieNode *child; member in struct:__anon1255::Edge
109 // Compute size of all child edges.
113 + getULEB128Size(edge.child->offset); // Offset len.
139 // Append each child edge substring and node offset.
144 buf += encodeULEB128(edge.child->offset, buf);
/openbsd-current/usr.sbin/makefs/
H A Dcd9660.c1309 if (iterator->child != 0) {
1311 iterator->child, this_node,
1324 assert(iterator->child == NULL);
1683 cd9660node *child; local
1712 TAILQ_FOREACH(child, &node->cn_children, cn_next_child) {
1714 cd9660_compute_record_size(diskStructure, child);
1715 if ((cd9660_compute_record_size(diskStructure, child) +
1723 cd9660_compute_record_size(diskStructure, child);
1735 for (child = TAILQ_NEXT(node->dot_dot_record, cn_next_child);
1736 child !
[all...]
/openbsd-current/sys/dev/pcmcia/
H A Dpcmcia.c131 pf->child == NULL)
133 config_suspend(pf->child, act);
140 pf->child == NULL)
142 config_deactivate(pf->child);
205 pf->child = NULL;
218 pf->child = config_found_sm(&sc->dev, &paa, pcmcia_print,
220 if (pf->child) {
258 if (pf->child == NULL)
261 sc->dev.dv_xname, pf->child->dv_xname, pf->number));
262 if ((error = config_detach(pf->child, flag
[all...]
/openbsd-current/gnu/usr.sbin/mkhybrid/src/
H A Dtree.c105 static void DECL(delete_directory, (struct directory * parent, struct directory * child));
1235 struct directory * child; local
1246 child = find_or_create_directory(reloc_dir, whole_path,
1251 child = find_or_create_directory(this_dir, whole_path,
1255 dflag = scan_directory_tree(child, whole_path, s_entry);
1467 struct directory * child; local
1501 child = find_or_create_directory(reloc_dir, whole_path,
1503 scan_directory_tree(child, whole_path, s_entry1);
1597 struct directory * child; local
1599 child
[all...]
/openbsd-current/usr.bin/mandoc/
H A Dmandocdb.c1425 if (NULL != n->child)
1426 putmdockey(mpage, n->child, m, taboo);
1445 * We're only searching for one thing: the first text child in
1454 (head = head->child) != NULL &&
1458 body->child != NULL) {
1555 for (n = n->child; n; n = n->next) {
1568 for (n = n->child; n != NULL; n = n->next) {
1586 putmdockey(mpage, n->child,
1592 if (NULL != n->child)
1607 putmdockey(mpage, n->child, mas
[all...]
H A Dtree.c51 print_mdoc(mdoc->first->child, 0);
61 print_man(man->first->child, 0);
197 if (n->child)
198 print_mdoc(n->child, indent +
280 if (n->child)
281 print_man(n->child, indent +
/openbsd-current/gnu/gcc/gcc/
H A Dtree-sra.c157 /* Helper function for above macro. Return next child in group. */
159 next_child_for_group (struct sra_elt *child, struct sra_elt *group) argument
163 /* Find the next child in the parent. */
164 if (child)
165 child = child->sibling;
167 child = group->parent->children;
170 while (child)
175 if (!tree_int_cst_lt (child->element, TREE_OPERAND (g_elt, 0))
176 && !tree_int_cst_lt (TREE_OPERAND (g_elt, 1), child
528 lookup_element(struct sra_elt *parent, tree child, tree type, enum insert_option insert) argument
590 tree child; local
1298 instantiate_missing_elements_1(struct sra_elt *elt, tree child, tree type) argument
[all...]
H A Dtree-ssa-math-opts.c183 /* BB dominates OCC_BB. OCC becomes NEW_OCC's child: remove OCC
223 /* No place was found as a child of IDOM. Make BB a sibling of IDOM. */
369 struct occurrence *child, *next; local
373 child = occ->children;
378 if (!child)
385 return child;
/openbsd-current/sys/dev/pci/drm/i915/gt/
H A Dintel_context.c432 struct intel_context *child, *next; local
440 for_each_child_safe(ce, child, next)
441 intel_context_put(child);
580 struct intel_context *child)
588 GEM_BUG_ON(intel_context_is_pinned(child));
589 GEM_BUG_ON(intel_context_is_child(child));
590 GEM_BUG_ON(intel_context_is_parent(child));
593 list_add_tail(&child->parallel.child_link,
595 child->parallel.parent = parent;
579 intel_context_bind_parent_child(struct intel_context *parent, struct intel_context *child) argument
/openbsd-current/gnu/lib/libiberty/src/
H A Dfibheap.c289 /* Attach the child list of the minimum node to the root list of the heap.
290 If there is no child list, we don't do squat. */
291 for (x = ret->child, orig = NULL; x != orig && x != NULL; x = y)
394 /* Make NODE a child of PARENT. */
399 if (parent->child == NULL)
400 parent->child = node;
402 fibnode_insert_before (parent->child, node);
408 /* Remove NODE from PARENT's child list. */
468 if (node->parent != NULL && node->parent->child == node)
469 node->parent->child
[all...]
/openbsd-current/lib/libssl/
H A Dtls13_key_schedule.c175 CBB cbb, child; local
186 if (!CBB_add_u8_length_prefixed(&cbb, &child))
188 if (!CBB_add_bytes(&child, tls13_plabel, strlen(tls13_plabel)))
190 if (!CBB_add_bytes(&child, label, label_len))
192 if (!CBB_add_u8_length_prefixed(&cbb, &child))
194 if (!CBB_add_bytes(&child, context->data, context->len))
/openbsd-current/usr.bin/ssh/
H A Dsshbuf.c48 u_int refcount; /* Tracks self and number of child buffers */
49 struct sshbuf *parent; /* If child, pointer to parent */
126 sshbuf_set_parent(struct sshbuf *child, struct sshbuf *parent) argument
130 if ((r = sshbuf_check_sanity(child)) != 0 ||
133 if (child->parent != NULL && child->parent != parent)
135 child->parent = parent;
136 child->parent->refcount++;
172 * yet. The last child's call to sshbuf_free should decrement our
180 * If we are a child, th
[all...]
/openbsd-current/gnu/usr.bin/perl/t/io/
H A Dpipe.t240 # check that child is reaped if the piped program can't be executed
246 my $child = 0;
250 $child = wait;
254 is($child, -1, 'child reaped if piped program cannot be executed');
259 # while a pipe close is waiting on a child process
/openbsd-current/usr.sbin/snmpd/
H A Dtraphandler.c332 pid_t child = -1; local
341 switch (child = fork()) {
392 waitpid(child, &status, 0);
395 log_warnx("child %i exited due to receipt of signal %i",
396 child, WTERMSIG(status));
398 log_warnx("child %i exited with status %i",
399 child, WEXITSTATUS(status));
401 log_debug("child %i finished", child);
445 /* cmd1 is a child o
[all...]
/openbsd-current/sys/dev/usb/
H A Dupd.c102 SLIST_ENTRY(upd_sensor) dep_next; /* next in the child list */
393 struct upd_sensor *child; local
398 SLIST_FOREACH(child, &sensor->children, dep_next)
399 upd_sensor_invalidate(sc, child);
406 struct upd_sensor *child; local
439 SLIST_FOREACH(child, &sensor->children, dep_next)
440 upd_sensor_invalidate(sc, child);
/openbsd-current/regress/lib/libssl/bytestring/
H A Dbytestringtest.c422 CBB cbb, child; local
428 CHECK_GOTO(CBB_add_u8_length_prefixed(&cbb, &child));
429 CHECK_GOTO(!CBB_finish(&child, &out_buf, &out_size));
532 CBB cbb, child, contents; local
538 CHECK_GOTO(CBB_add_u8_length_prefixed(&cbb, &child));
539 CHECK_GOTO(CBB_add_u8(&child, 1));
543 * Since we wrote to |cbb|, |child| is now invalid and attempts to write
546 CHECK_GOTO(!CBB_add_u8(&child, 1));
547 CHECK_GOTO(!CBB_add_u16(&child, 1));
548 CHECK_GOTO(!CBB_add_u24(&child,
[all...]
/openbsd-current/lib/libcrypto/x509/
H A Dx509_asid.c986 * Figure out whether parent contains child.
989 asid_contains(ASIdOrRanges *parent, ASIdOrRanges *child) argument
994 if (child == NULL || parent == child)
1001 for (c = 0; c < sk_ASIdOrRange_num(child); c++) {
1002 if (!extract_min_max(sk_ASIdOrRange_value(child, c), &c_min,
1023 * Test whether child is a subset of parent.
1026 X509v3_asid_subset(ASIdentifiers *child, ASIdentifiers *parent) argument
1028 if (child == NULL || child
[all...]
/openbsd-current/sys/arch/arm/arm/
H A Dcpu.c692 int count, node, child; local
712 for (child = OF_child(node); child != 0; child = OF_peer(child)) {
713 if (OF_getproplen(child, "turbo-mode") == 0)
727 for (child = OF_child(node); child != 0; child = OF_peer(child)) {
[all...]
/openbsd-current/sys/dev/fdt/
H A Dfusbtc.c266 int child; local
276 for (child = OF_child(sc->sc_node); child != 0; child = OF_peer(child)){
277 if (!OF_is_compatible(child, "usb-c-connector"))
279 len = OF_getproplen(child, "power-role");
281 OF_getprop(child, "power-role", role, len);
/openbsd-current/gnu/llvm/lldb/source/DataFormatters/
H A DFormattersHelpers.cpp92 for (auto child : children)
93 filter_sp->AddExpressionPath(child);
/openbsd-current/gnu/llvm/clang/utils/
H A DClangDataFormat.py122 child = value.GetChildAtIndex(i, 0, False)
123 found = searchForType(child, searched)

Completed in 398 milliseconds

1234567891011>>