Searched refs:child (Results 276 - 300 of 542) sorted by relevance

<<11121314151617181920>>

/freebsd-9.3-release/sys/arm/xscale/i8134x/
H A Di81342_pci.c331 i81342_pci_alloc_resource(device_t bus, device_t child, int type, int *rid, argument
361 rv = rman_reserve_resource(rm, start, end, count, flags, child);
371 if (bus_activate_resource(child, type, *rid, rv)) {
384 i81342_pci_activate_resource(device_t bus, device_t child, int type, int rid, argument
402 i81342_pci_setup_intr(device_t dev, device_t child, struct resource *ires, argument
407 return (BUS_SETUP_INTR(device_get_parent(dev), child, ires, flags,
414 i81342_pci_teardown_intr(device_t dev, device_t child, struct resource *res, argument
417 return (BUS_TEARDOWN_INTR(device_get_parent(dev), child, res, cookie));
480 i81342_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) argument
496 i81342_write_ivar(device_t dev, device_t child, in argument
[all...]
/freebsd-9.3-release/sys/dev/ata/
H A Data-pci.h578 int ata_pci_read_ivar(device_t dev, device_t child, int which, uintptr_t *result);
579 int ata_pci_write_ivar(device_t dev, device_t child, int which, uintptr_t value);
580 uint32_t ata_pci_read_config(device_t dev, device_t child, int reg, int width);
581 void ata_pci_write_config(device_t dev, device_t child, int reg,
583 int ata_pci_print_child(device_t dev, device_t child);
584 int ata_pci_child_location_str(device_t dev, device_t child, char *buf,
586 struct resource * ata_pci_alloc_resource(device_t dev, device_t child, int type, int *rid, u_long start, u_long end, u_long count, u_int flags);
587 int ata_pci_release_resource(device_t dev, device_t child, int type, int rid, struct resource *r);
588 int ata_pci_setup_intr(device_t dev, device_t child, struct resource *irq, int flags, driver_filter_t *filter, driver_intr_t *function, void *argument, void **cookiep);
589 int ata_pci_teardown_intr(device_t dev, device_t child, struc
[all...]
/freebsd-9.3-release/sys/dev/vge/
H A Dif_vge.c2502 struct sysctl_oid_list *child, *parent; local
2508 child = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->vge_dev));
2510 SYSCTL_ADD_INT(ctx, child, OID_AUTO, "int_holdoff",
2512 SYSCTL_ADD_INT(ctx, child, OID_AUTO, "rx_coal_pkt",
2514 SYSCTL_ADD_INT(ctx, child, OID_AUTO, "tx_coal_pkt",
2528 tree = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, "stats", CTLFLAG_RD,
2535 child = SYSCTL_CHILDREN(tree);
2536 VGE_SYSCTL_STAT_ADD32(ctx, child, "frames",
2538 VGE_SYSCTL_STAT_ADD32(ctx, child, "good_frames",
2540 VGE_SYSCTL_STAT_ADD32(ctx, child, "fifo_oflow
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_status.c133 nvlist_t **child; local
152 if (nvlist_lookup_nvlist_array(vdev, ZPOOL_CONFIG_CHILDREN, &child,
155 if (find_vdev_problem(child[c], func, ignore_replacing))
168 if (nvlist_lookup_nvlist_array(vdev, ZPOOL_CONFIG_L2CACHE, &child,
171 if (find_vdev_problem(child[c], func, ignore_replacing))
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_read_support_compression_program.c124 pid_t child; member in struct:program_filter
219 * Shut down the child, return ARCHIVE_OK if it exited normally.
222 * we won't reap the child again, but we will return the same status
223 * (including error message if the child came to a bad end).
228 /* Close our side of the I/O with the child. */
238 if (state->child != 0) {
239 /* Reap the child. */
242 = waitpid(state->child, &state->exit_status, 0);
244 state->child = 0;
257 /* If the child die
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/kadm5/
H A Dpassword_quality.c146 pid_t child; local
173 child = pipe_execv(&in, &out, &error, program, p, NULL);
174 if (child < 0) {
202 waitpid(child, &status, 0);
210 if (waitpid(child, &status, 0) < 0) {
/freebsd-9.3-release/sys/dev/cpufreq/
H A Dichss.c135 device_t child; local
144 * Thus, we only add a child to cpu 0.
197 child = BUS_ADD_CHILD(parent, 20, "ichss", 0);
198 if (child == NULL) {
199 device_printf(parent, "add SpeedStep child failed\n");
204 bus_set_resource(child, SYS_RES_IOPORT, 0, pmbase + ICHSS_BM_OFFSET,
206 bus_set_resource(child, SYS_RES_IOPORT, 1, pmbase + ICHSS_CTRL_OFFSET,
/freebsd-9.3-release/sys/dev/iicbus/
H A Dmax6690.c178 phandle_t child; local
186 child = ofw_bus_get_node(dev);
189 prop_len = OF_getprop(child, "hwsensor-location", location,
202 prop_len = OF_getprop(child, "hwsensor-id", id, sizeof(id));
207 prop_len = OF_getprop(child, "hwsensor-zone", id, sizeof(id));
/freebsd-9.3-release/sys/dev/pci/
H A Dpci_pci.c114 * Is a resource from a child device sub-allocated from one of our
901 device_t child; local
906 child = device_add_child(dev, "pci", sc->secbus);
907 if (child != NULL)
947 pcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) argument
963 pcib_write_ivar(device_t dev, device_t child, int which, uintptr_t value) argument
984 device_t child, int type, int *rid, u_long start, u_long end, u_long count,
993 flags & ~RF_ACTIVE, child);
1001 pcib_child_name(child));
1010 if (bus_activate_resource(child, typ
983 pcib_suballoc_resource(struct pcib_softc *sc, struct pcib_window *w, device_t child, int type, int *rid, u_long start, u_long end, u_long count, u_int flags) argument
1359 pcib_alloc_resource(device_t dev, device_t child, int type, int *rid, u_long start, u_long end, u_long count, u_int flags) argument
1443 pcib_adjust_resource(device_t bus, device_t child, int type, struct resource *r, u_long start, u_long end) argument
1455 pcib_release_resource(device_t dev, device_t child, int type, int rid, struct resource *r) argument
1478 pcib_alloc_resource(device_t dev, device_t child, int type, int *rid, u_long start, u_long end, u_long count, u_int flags) argument
[all...]
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dsys-tree.h530 struct type *child, *parent, *old = elm; \
533 child = RB_RIGHT(elm, field); \
535 child = RB_LEFT(elm, field); \
541 child = RB_RIGHT(elm, field); \
544 if (child) \
545 RB_PARENT(child, field) = parent; \
548 RB_LEFT(parent, field) = child; \
550 RB_RIGHT(parent, field) = child; \
553 RB_ROOT(head) = child; \
578 if (child) \
[all...]
/freebsd-9.3-release/sys/sys/
H A Dtree.h530 struct type *child, *parent, *old = elm; \
533 child = RB_RIGHT(elm, field); \
535 child = RB_LEFT(elm, field); \
541 child = RB_RIGHT(elm, field); \
544 if (child) \
545 RB_PARENT(child, field) = parent; \
548 RB_LEFT(parent, field) = child; \
550 RB_RIGHT(parent, field) = child; \
553 RB_ROOT(head) = child; \
578 if (child) \
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/libevent/WIN32-Code/
H A Dtree.h513 struct type *child, *parent, *old = elm; \
516 child = RB_RIGHT(elm, field); \
518 child = RB_LEFT(elm, field); \
524 child = RB_RIGHT(elm, field); \
527 if (child) \
528 RB_PARENT(child, field) = parent; \
531 RB_LEFT(parent, field) = child; \
533 RB_RIGHT(parent, field) = child; \
536 RB_ROOT(head) = child; \
561 if (child) \
[all...]
/freebsd-9.3-release/sys/dev/ale/
H A Dif_ale.c780 struct sysctl_oid_list *child, *parent; local
787 child = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->ale_dev));
789 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "int_rx_mod",
792 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "int_tx_mod",
820 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "process_limit",
840 ALE_SYSCTL_STAT_ADD32(ctx, child, "reset_brk_seq",
844 tree = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, "stats", CTLFLAG_RD,
851 child = SYSCTL_CHILDREN(tree);
852 ALE_SYSCTL_STAT_ADD32(ctx, child, "good_frames",
854 ALE_SYSCTL_STAT_ADD32(ctx, child, "good_bcast_frame
[all...]
/freebsd-9.3-release/sys/dev/alc/
H A Dif_alc.c1126 struct sysctl_oid_list *child, *parent; local
1133 child = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->alc_dev));
1135 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "int_rx_mod",
1138 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "int_tx_mod",
1166 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "process_limit",
1185 tree = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, "stats", CTLFLAG_RD,
1192 child = SYSCTL_CHILDREN(tree);
1193 ALC_SYSCTL_STAT_ADD32(ctx, child, "good_frames",
1195 ALC_SYSCTL_STAT_ADD32(ctx, child, "good_bcast_frames",
1197 ALC_SYSCTL_STAT_ADD32(ctx, child, "good_mcast_frame
[all...]
/freebsd-9.3-release/contrib/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...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DLiveVariables.cpp317 Expr *child = cast<PseudoObjectExpr>(S)->getResultExpr(); local
318 if (!child) return;
319 if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(child))
320 child = OV->getSourceExpr();
321 child = child->IgnoreParens();
322 val.liveStmts = LV.SSetFact.add(val.liveStmts, child);
343 if (Stmt *child = *it)
344 AddLiveStmt(val.liveStmts, LV.SSetFact, child);
/freebsd-9.3-release/sys/mips/malta/
H A Dgt_pci.c580 gt_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) argument
596 gt_write_ivar(device_t dev, device_t child, int which, uintptr_t result) argument
609 gt_pci_alloc_resource(device_t bus, device_t child, int type, int *rid, argument
636 rv = rman_reserve_resource(rm, start, end, count, flags, child);
646 if (bus_activate_resource(child, type, *rid, rv)) {
656 gt_pci_activate_resource(device_t bus, device_t child, int type, int rid, argument
673 gt_pci_setup_intr(device_t dev, device_t child, struct resource *ires, argument
698 intr_event_add_handler(event, device_get_nameunit(child), filt,
706 gt_pci_teardown_intr(device_t dev, device_t child, struct resource *res, argument
/freebsd-9.3-release/contrib/llvm/lib/Support/Unix/
H A DProgram.inc260 // Create a child process.
261 int child = fork();
262 switch (child) {
318 PI.Pid = child;
348 // Parent process: Wait for the child process to terminate.
358 // Kill the child.
365 // Wait for child to die
374 MakeErrMsg(ErrMsg, "Error waiting for child process");
/freebsd-9.3-release/sys/dev/exca/
H A Dexca.c601 exca_reset(struct exca_softc *sc, device_t child)
810 exca_activate_resource(struct exca_softc *exca, device_t child, int type,
817 err = BUS_ACTIVATE_RESOURCE(device_get_parent(exca->dev), child,
830 BUS_DEACTIVATE_RESOURCE(device_get_parent(exca->dev), child,
836 exca_deactivate_resource(struct exca_softc *exca, device_t child, int type,
851 return (BUS_DEACTIVATE_RESOURCE(device_get_parent(exca->dev), child,
857 exca_alloc_resource(struct exca_softc *sc, device_t child, int type, int *rid,
881 device_printf(child, "requested interrupt %ld-%ld,"
890 res = BUS_ALLOC_RESOURCE(up, child, type, rid,
896 if (bus_activate_resource(child, typ
599 exca_reset(struct exca_softc *sc, device_t child) argument
808 exca_activate_resource(struct exca_softc *exca, device_t child, int type, int rid, struct resource *res) argument
834 exca_deactivate_resource(struct exca_softc *exca, device_t child, int type, int rid, struct resource *res) argument
[all...]
/freebsd-9.3-release/sys/kern/
H A Dkern_exit.c128 * and rusage for wait(). Check for child processes and orphan them.
403 * Place onto zombproc. Unlink from parent's child list.
426 if (q != NULL) /* only need this if any child is S_ZOMB */
786 * If we got the child via a ptrace 'attach', we need to give it back
972 * allows to request other signal for child exit
1200 * collect it's child exit status even if child is being
1204 * switch-over from parent to child. At this point due to
1205 * re-parenting the parent loses the child to debugger and a
1208 * to successfully wait until the child become
1247 proc_reparent(struct proc *child, struct proc *parent) argument
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_addr.c1134 * Figure out whether parent contains child.
1137 IPAddressOrRanges *child, int length)
1143 if (child == NULL || parent == child)
1149 for (c = 0; c < sk_IPAddressOrRange_num(child); c++) {
1150 if (!extract_min_max(sk_IPAddressOrRange_value(child, c),
1220 IPAddrBlocks *child = NULL; local
1245 if ((child = sk_IPAddressFamily_dup(ext)) == NULL) {
1262 for (j = 0; j < sk_IPAddressFamily_num(child); j++) {
1263 IPAddressFamily *fc = sk_IPAddressFamily_value(child,
1136 addr_contains(IPAddressOrRanges *parent, IPAddressOrRanges *child, int length) argument
[all...]
/freebsd-9.3-release/contrib/binutils/libiberty/
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...]
/freebsd-9.3-release/contrib/gcclibs/libiberty/
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...]
/freebsd-9.3-release/sys/sparc64/pci/
H A Dpsycho.c534 * child devices.
1086 psycho_read_ivar(device_t dev, device_t child, int which, uintptr_t *result) argument
1157 psycho_setup_intr(device_t dev, device_t child, struct resource *ires, argument
1175 return (bus_generic_setup_intr(dev, child, ires, flags, filt, intr,
1180 psycho_alloc_resource(device_t bus, device_t child, int type, int *rid, argument
1200 return (bus_generic_alloc_resource(bus, child, type, rid,
1213 child);
1218 if ((flags & RF_ACTIVE) != 0 && bus_activate_resource(child, type,
1227 psycho_activate_resource(device_t bus, device_t child, int type, int rid, argument
1236 return (bus_generic_activate_resource(bus, child, typ
1257 psycho_adjust_resource(device_t bus, device_t child, int type, struct resource *r, u_long start, u_long end) argument
1302 psycho_setup_device(device_t bus, device_t child) argument
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dradix.c616 isc_radix_node_t *parent, *child; local
648 child = parent->l;
652 child = parent->r;
662 radix->head = child;
664 parent->parent->r = child;
667 parent->parent->l = child;
669 child->parent = parent->parent;
676 child = node->r;
679 child = node->l;
682 child
[all...]

Completed in 465 milliseconds

<<11121314151617181920>>