Searched refs:children (Results 26 - 50 of 157) sorted by relevance

1234567

/freebsd-9.3-release/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_new_introspect.c178 char **children; local
182 dbus_connection_list_registered(con, path, &children);
183 for (i = 0; children[i]; i++)
184 wpabuf_printf(xml, "<node name=\"%s\"/>", children[i]);
185 dbus_free_string_array(children);
/freebsd-9.3-release/sys/dev/iicbus/
H A Diiconf.c367 device_t *children, bus; local
369 if ((error = device_get_children(dev, &children, &nkid)) != 0)
372 free(children, M_TEMP);
375 bus = children[0];
377 free(children, M_TEMP);
/freebsd-9.3-release/sys/dev/cxgbe/
H A Dt4_sge.c721 struct sysctl_oid_list *children)
724 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "buffer_sizes",
728 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "fl_pktshift", CTLFLAG_RD,
731 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "fl_pad", CTLFLAG_RD,
734 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "spg_len", CTLFLAG_RD,
737 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "cong_drop", CTLFLAG_RD,
740 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "buffer_packing", CTLFLAG_RD,
744 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "fl_pack", CTLFLAG_RD,
935 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); local
938 oid = SYSCTL_ADD_NODE(&pi->ctx, children, OID_AUT
720 t4_sge_sysctls(struct adapter *sc, struct sysctl_ctx_list *ctx, struct sysctl_oid_list *children) argument
2301 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); local
2336 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); local
2378 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); local
2420 struct sysctl_oid_list *children; local
2500 struct sysctl_oid_list *children; local
2794 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); local
2843 struct sysctl_oid_list *children = SYSCTL_CHILDREN(oid); local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dutil.c74 uint_t c, children; local
118 if (nvlist_lookup_nvlist_array(nv, ctype, &child, &children) != 0)
121 for (c = 0; c < children; c++) {
/freebsd-9.3-release/usr.sbin/cron/cron/
H A Ddo_command.c87 int children = 0; local
149 * do not care to watch for our children's deaths this way -- we
157 * because of this, we have to wait() for our children here, as well.
348 children++;
429 children++;
558 /* wait for children to die.
560 for (; children > 0; children--)
566 getpid(), children))
/freebsd-9.3-release/sys/dev/ata/chipsets/
H A Data-acerlabs.c271 device_t *children; local
282 if (!device_get_children(GRANDPARENT(dev), &children, &nchildren)) {
284 if (pci_get_devid(children[i]) == ATA_ALI_1533) {
285 pci_write_config(children[i], 0x58,
286 pci_read_config(children[i], 0x58, 1) &
288 pci_write_config(children[i], 0x58,
289 pci_read_config(children[i], 0x58, 1) |
294 free(children, M_TEMP);
H A Data-via.c385 device_t *children; local
388 if (device_get_children(device_get_parent(dev), &children, &nchildren))
392 if (pci_get_devid(children[i]) == ATA_VIA8363 ||
393 pci_get_devid(children[i]) == ATA_VIA8371 ||
394 pci_get_devid(children[i]) == ATA_VIA8662 ||
395 pci_get_devid(children[i]) == ATA_VIA8361) {
396 u_int8_t reg76 = pci_read_config(children[i], 0x76, 1);
401 pci_write_config(children[i], 0x75, 0x80, 1);
402 pci_write_config(children[i], 0x76, (reg76 & 0x0f) | 0xd0, 1);
407 free(children, M_TEM
[all...]
/freebsd-9.3-release/sys/dev/et/
H A Dif_et.c2441 struct sysctl_oid_list *children, *parent; local
2446 children = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev));
2448 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "rx_intr_npkts",
2451 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "rx_intr_delay",
2454 SYSCTL_ADD_INT(ctx, children, OID_AUTO, "tx_intr_nsegs",
2457 SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "timer",
2460 tree = SYSCTL_ADD_NODE(ctx, children, OID_AUTO, "stats", CTLFLAG_RD,
2484 children = SYSCTL_CHILDREN(tree);
2485 ET_SYSCTL_STAT_ADD64(ctx, children, "bytes",
2487 ET_SYSCTL_STAT_ADD64(ctx, children, "frame
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_import.c127 uint_t c, children; local
134 &child, &children) == 0) {
135 for (c = 0; c < children; c++)
442 uint_t children = 0; local
582 if (id >= children) {
590 for (c = 0; c < children; c++)
595 children = id + 1;
610 if (max_id < children) {
611 for (c = max_id; c < children; c++)
613 children
1516 uint_t c, children; local
[all...]
H A Dlibzfs_status.c135 uint_t c, vsc, children; local
153 &children) == 0) {
154 for (c = 0; c < children; c++)
169 &children) == 0) {
170 for (c = 0; c < children; c++)
/freebsd-9.3-release/contrib/dtc/
H A Dlivetree.c64 struct node *build_node(struct property *proplist, struct node *children) argument
72 new->children = children;
120 p = &parent->children;
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DEvaluatedExprVisitor.h84 /// \brief The basis case walks all of the children of the statement or
87 for (Stmt::child_range C = S->children(); C; ++C)
H A DStmtCXX.h58 child_range children() { return child_range(&HandlerBlock, &HandlerBlock+1); } function in class:clang::CXXCatchStmt
115 child_range children() { function in class:clang::CXXTryStmt
202 child_range children() { function in class:clang::CXXForRangeStmt
281 child_range children() { function in class:clang::MSDependentExistsStmt
H A DStmtObjC.h68 child_range children() { function in class:clang::ObjCForCollectionStmt
116 child_range children() { return child_range(&Body, &Body + 1); } function in class:clang::ObjCAtCatchStmt
147 child_range children() { function in class:clang::ObjCAtFinallyStmt
247 child_range children() {
306 child_range children() { function in class:clang::ObjCAtTryStmt
339 child_range children() { return child_range(&Throw, &Throw+1); } function in class:clang::ObjCAtThrowStmt
369 child_range children() { return child_range(&SubStmt, &SubStmt + 1); } function in class:clang::ObjCAutoreleasePoolStmt
/freebsd-9.3-release/sys/compat/linsysfs/
H A Dlinsysfs.c149 device_t *children, parent; local
217 device_get_children(dev, &children, &nchildren);
219 if (children[i])
220 linsysfs_run_bus(children[i], dir, scsi, new_path, prefix);
/freebsd-9.3-release/sys/dev/atkbdc/
H A Datkbdc_ebus.c180 int children, error, rid, unit; local
235 /* Attach children. */
236 children = 0;
241 if (children >= 2) {
243 "<%s>: only two children per 8042 supported\n",
288 children++;
/freebsd-9.3-release/usr.bin/gprof/
H A Dlookup.c103 for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) {
/freebsd-9.3-release/usr.bin/make/
H A DGNode.h100 * its children was out-of-date */
167 /* TRUE if one of this target's children was made */
170 int unmade; /* The number of unmade children */
188 Lst children; member in struct:GNode
/freebsd-9.3-release/usr.sbin/ypserv/
H A Dyp_extern.h67 extern int children;
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dpex-common.c66 obj->children = NULL;
317 obj->children = XRESIZEVEC (long, obj->children, obj->count);
318 obj->children[obj->count - 1] = pid;
488 if (obj->funcs->wait (obj, obj->children[i], &obj->status[i],
560 /* If the caller forgot to wait for the children, we do it here, to
573 if (obj->children != NULL)
574 free (obj->children);
/freebsd-9.3-release/contrib/llvm/include/llvm/Analysis/
H A DRegionInfo.h218 RegionSet children; member in class:llvm::Region
234 /// verifyRegionNest - Verify if the region and its children are valid
447 /// @param moveChildren Move the children of this region, that are also
483 iterator begin() { return children.begin(); }
484 iterator end() { return children.end(); }
486 const_iterator begin() const { return children.begin(); }
487 const_iterator end() const { return children.end(); }
512 // Mark the exit of the region as visited, so that the children of the
553 /// are direct children of this Region. It does not iterate over any
/freebsd-9.3-release/sys/sparc64/sparc64/
H A Dupa.c196 device_t *children, schizo; local
233 &children, &nchildren) != 0) {
234 device_printf(dev, "could not get children\n");
239 if (ofw_bus_get_type(children[j]) != NULL &&
240 strcmp(ofw_bus_get_type(children[j]),
242 ofw_bus_get_compat(children[j]) != NULL &&
243 strcmp(ofw_bus_get_compat(children[j]),
245 ((bus_get_resource_start(children[j],
247 schizo = children[j];
251 free(children, M_TEM
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DRegionInfo.cpp337 To->children.push_back(*I);
339 children.clear();
344 assert(std::find(begin(), end(), SubRegion) == children.end()
348 children.push_back(SubRegion);
353 assert(SubRegion->children.size() == 0
354 && "SubRegions that contain children are not supported");
367 SubRegion->children.push_back(*I);
372 children.clear();
373 children.insert(children
[all...]
/freebsd-9.3-release/sys/isa/
H A Disa_common.c498 device_t *children, child; local
503 * Create all the non-hinted children by calling drivers'
508 if (device_get_children(dev, &children, &nchildren))
520 free(children, M_TEMP);
525 idev = DEVTOISA(children[i]);
539 child = children[i];
551 free(children, M_TEMP);
558 if (device_get_children(dev, &children, &nchildren))
563 child = children[i];
579 child = children[
877 device_t *children; local
[all...]
/freebsd-9.3-release/sys/dev/utopia/
H A Dutopia.c510 struct sysctl_oid_list *children, const struct utopia_methods *m)
525 if (SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "phy_regs",
530 if (SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "phy_loopback",
535 if (SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "phy_type",
540 if (SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "phy_name",
545 if (SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "phy_stats",
550 if (SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "phy_state",
554 if (SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "phy_carrier",
508 utopia_attach(struct utopia *utp, struct ifatm *ifatm, struct ifmedia *media, struct mtx *lock, struct sysctl_ctx_list *ctx, struct sysctl_oid_list *children, const struct utopia_methods *m) argument

Completed in 361 milliseconds

1234567