Searched refs:children (Results 1 - 25 of 348) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_user/zfs_list/
H A Dzfs_list_003_pos.ksh36 # Verify 'zfs list -r' could recursively display any children
55 log_assert "Verify 'zfs list -r' could display any children recursively."
58 children="$TESTPOOL/$TESTFS"
61 children="$children $TESTPOOL/$TESTFS/$fs"
68 for fs in $children ; do
73 log_pass "'zfs list -r' could display any children recursively."
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_create/
H A Dzpool_create_draid_001_pos.ksh58 for children in {$((parity + 2))..24}; do
59 vdevs=$(echo $TESTDIR/file.{01..${children}})
68 for children in $children_counts; do
69 vdevs=$(echo $TESTDIR/file.{01..${children}})
H A Dzpool_create_draid_003_pos.ksh34 # 1) Test valid stripe/spare combinations given the number of children.
35 # 2) Test invalid stripe/spare/children combinations outside the allow limits.
61 children=$(random_int_between $min_children 32)
63 draid="draid${parity}:${data}d:${children}c:${spares}s"
65 draid_vdevs=$(echo $TESTDIR/file.{01..$children})
75 children=32
76 draid_vdevs=$(echo $TESTDIR/file.{01..$children})
89 # Exceeds maximum data disks (limited by total children)
101 # Spares are limited: spares < children - (parity + data).
106 # The required children argumen
[all...]
/freebsd-current/sys/dev/adb/
H A Dadbvar.h49 device_t children[16]; member in struct:adb_softc
/freebsd-current/usr.sbin/rpc.ypxfrd/
H A Dypxfrd_extern.h44 extern int children;
/freebsd-current/tests/sys/cddl/zfs/tests/cli_user/zfs_list/
H A Dzfs_list_003_pos.ksh36 # Verify 'zfs list -r' could recursively display any children
64 log_assert "Verify 'zfs list -r' could display any children recursively."
67 children="$TESTPOOL/$TESTFS"
70 children="$children $TESTPOOL/$TESTFS/$fs"
77 for fs in $children ; do
86 log_pass "'zfs list -r' could display any children recursively."
/freebsd-current/sys/kern/
H A Dsysctl_security_jail_children.sh42 origin_max=$(sysctl -n security.jail.children.max)
43 origin_cur=$(sysctl -n security.jail.children.cur)
49 # - maxallowed.family wants to set children.max=4
50 # - it means that its parent (maxallowed) should have at least children.max=5
51 # - it makes the origin (parent of maxallowed) provide children.max=6 minimum
55 test $origin_max -ge 6 || atf_skip "Not high enough children.max limit for the test."
58 atf_check_equal "$((origin_cur + 1))" "$(sysctl -n security.jail.children.cur)"
59 atf_check_equal "0" "$(jexec childfree sysctl -n security.jail.children.max)"
60 atf_check_equal "0" "$(jexec childfree sysctl -n security.jail.children.cur)"
62 jail -c name=maxallowed children
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Dgraid1_11.sh22 local children
24 children=$(pgrep -P "$1")
25 for pid in $children ; do
28 echo "$children"
49 children=""
62 children="${children:+${children},}$!"
68 pkill -P ${children} -x dd
70 # Reap background children
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/synctask_core/
H A Dtst.list_children.ksh21 # Listing zfs children should work correctly.
26 log_assert "Listing zfs children should work correctly."
43 # 0 children handled correctly
46 for s in zfs.list.children("$TESTPOOL/$TESTFS") do
55 for s in zfs.list.children("$TESTPOOL") do
68 for s in zfs.list.children("$TESTPOOL/$TESTFS") do
80 # All children appear exactly once
88 for s in zfs.list.children("$TESTPOOL/$TESTFS") do
103 zfs.list.children("$TESTPOOL/not-a-fs")
108 zfs.list.children("no
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h114 /// The number of children of this node in the tree of format strings.
117 const Definition *children = nullptr; member in struct:lldb_private::FormatEntity::Entry::Definition
134 const Definition *children,
136 : name(name), type(t), num_children(num_children), children(children),
143 const Definition (&children)[N],
145 return Definition(name, t, N, children, keep_separator);
161 void AppendEntry(const Entry &&entry) { children.push_back(entry); }
166 children.clear();
182 const size_t n = children
132 Definition(const char *name, const FormatEntity::Entry::Type t, const uint64_t num_children, const Definition *children, const bool keep_separator = false) argument
142 DefinitionWithChildren(const char *name, const FormatEntity::Entry::Type t, const Definition (&children)[N], bool keep_separator = false) argument
201 std::vector<Entry> children; member in struct:lldb_private::FormatEntity::Entry
[all...]
/freebsd-current/usr.sbin/rpc.ypupdated/
H A Dypupdated_extern.h28 extern int children;
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/redundancy/
H A Dredundancy_draid_spare1.ksh66 children=$(random_int_between $min_children 16)
68 draid="draid${parity}:${data}d:${children}c:${spares}s"
70 setup_test_env $TESTPOOL $draid $children
H A Dredundancy_draid_spare2.ksh44 children=10
45 draid="draid${parity}:${data}d:${children}c:${spares}s"
47 setup_test_env $TESTPOOL $draid $children
/freebsd-current/sys/contrib/openzfs/cmd/zpool/
H A Dzpool_util.c87 uint_t c, children; local
91 &child, &children) != 0)
94 for (c = 0; c < children; c++) {
H A Dzpool_vdev.c494 uint_t c, children; local
532 &child, &children) != 0) {
572 for (c = 0; c < children; c++) {
814 uint_t children; local
832 * for spares there may be no children, and therefore no
836 &child, &children) != 0) || (children == 0)) {
844 if (num_logs(newroot) == children) {
966 uint_t c, children; local
979 &child, &children) !
1145 uint_t c, children; local
1353 draid_config_by_type(nvlist_t *nv, const char *type, uint64_t children) argument
1521 int c, children = 0; local
1779 uint_t c, children; local
[all...]
/freebsd-current/contrib/llvm-project/lld/Common/
H A DTimer.cpp34 parent.children.push_back(this);
41 // print all children first, then print the total under that.
42 for (const auto &child : children)
68 for (const auto &child : children)
/freebsd-current/contrib/googletest/googletest/test/
H A Dgtest_xml_test_utils.py58 order of the children as they are not guaranteed to be in any
134 Returns them as the values of a dictionary keyed by the IDs of the children.
149 Dictionary where keys are the IDs of the children.
152 children = {}
169 self.assertNotIn(child_id, children)
170 children[child_id] = child
172 if 'detail' not in children:
177 children['detail'] = child.ownerDocument.createCDATASection(
181 children['detail'].nodeValue += child.nodeValue
184 return children
[all...]
/freebsd-current/sys/contrib/openzfs/module/zcommon/
H A Dzfs_comutil.c51 uint_t children; local
54 &child, &children) != 0) {
57 for (c = 0; c < children; c++) {
76 uint_t children; local
79 &child, &children) != 0) {
82 for (c = 0; c < children; c++) {
/freebsd-current/sys/contrib/ck/src/
H A Dck_barrier_mcs.c60 /* Leaf threads do not have any children. */
61 barrier[i].children[0] = ((i << 1) + 1 >= nthr) ?
65 barrier[i].children[1] = ((i << 1) + 2 >= nthr) ?
117 * Wait until all children have reached the barrier and are done waiting
118 * for their children.
126 /* Inform parent thread and its children have arrived at the barrier. */
135 /* Inform children of successful barrier. */
136 ck_pr_store_uint(barrier[state->vpid].children[0], state->sense);
137 ck_pr_store_uint(barrier[state->vpid].children[1], state->sense);
/freebsd-current/cddl/usr.sbin/zfsd/
H A Dvdev.cc203 std::list<Vdev> children; local
206 return (children);
211 return (children);
214 children.push_back(Vdev(m_poolConfig, vdevChildren[c]));
216 return (children);
242 std::list<Vdev> children; local
253 children = vd.Children();
254 children_it = children.begin();
255 for (;children_it != children.end(); children_it++) {
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/cmd/
H A Ddraid.c45 #define MAP_CHILDREN "children"
129 * which are indexed by the number of children. The caller is responsible
339 " children: %llu\n"
406 alloc_new_map(uint64_t children, uint64_t nperms, uint64_t seed, argument
416 map->dm_children = children;
433 * Allocate the fixed permutation map for N children.
436 alloc_fixed_map(uint64_t children, draid_map_t **mapp) argument
442 error = vdev_draid_lookup_map(children, &fixed_map);
496 uint64_t children = map->dm_children; local
498 uint64_t ndisks = children
607 uint64_t children = map->dm_children; local
704 eval_maps(uint64_t children, int passes, uint64_t *map_seed, draid_map_t **best_mapp, double *best_ratiop, double *avg_ratiop) argument
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DStmtObjC.h67 child_range children() { function in class:clang::ObjCForCollectionStmt
71 const_child_range children() const { function in class:clang::ObjCForCollectionStmt
119 child_range children() { return child_range(&Body, &Body + 1); } function in class:clang::ObjCAtCatchStmt
121 const_child_range children() const { function in class:clang::ObjCAtCatchStmt
155 child_range children() { function in class:clang::ObjCAtFinallyStmt
159 const_child_range children() const { function in class:clang::ObjCAtFinallyStmt
263 child_range children() {
268 const_child_range children() const {
269 return const_child_range(const_cast<ObjCAtTryStmt *>(this)->children());
347 child_range children() { function in class:clang::final
351 const_child_range children() const { function in class:clang::final
385 child_range children() { return child_range(&Throw, &Throw+1); } function in class:clang::ObjCAtThrowStmt
387 const_child_range children() const { function in class:clang::ObjCAtThrowStmt
420 child_range children() { return child_range(&SubStmt, &SubStmt + 1); } function in class:clang::ObjCAutoreleasePoolStmt
422 const_child_range children() const { function in class:clang::ObjCAutoreleasePoolStmt
[all...]
/freebsd-current/sys/arm/altera/socfpga/
H A Dsocfpga_rstmgr.c183 struct sysctl_oid_list *children; local
187 children = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev));
189 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "fpga2hps",
193 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "lwhps2fpga",
197 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "hps2fpga",
/freebsd-current/tests/sys/kern/
H A Dptrace_test.c635 pid_t children[2], fpid, wpid; local
645 children[0] = fpid;
648 wpid = waitpid(children[0], &status, 0);
649 REQUIRE_EQ(wpid, children[0]);
653 ATF_REQUIRE(ptrace(PT_FOLLOW_FORK, children[0], NULL, 1) != -1);
656 ATF_REQUIRE(ptrace(PT_CONTINUE, children[0], (caddr_t)1, 0) != -1);
658 children[1] = handle_fork_events(children[0], NULL);
659 ATF_REQUIRE(children[1] > 0);
661 ATF_REQUIRE(ptrace(PT_CONTINUE, children[
691 pid_t children[2], fpid, wpid; local
742 pid_t children[2], fpid, wpid; local
824 pid_t children[2], fpid, wpid; local
892 pid_t children[2], fpid, wpid; local
955 pid_t children[2], fpid, wpid; local
1105 pid_t children[2], fpid, wpid; local
1168 pid_t children[2], fpid, wpid; local
1740 pid_t children[2], fpid, wpid; local
[all...]
/freebsd-current/tools/regression/geom/ConfCmp/
H A DConfCmp.c52 LIST_HEAD(, node) children;
87 LIST_INIT(&np->children);
123 LIST_INSERT_HEAD(&mt->cur->children, np, siblings);
139 LIST_FOREACH(np, &mt->cur->children, siblings) {
224 LIST_FOREACH(np1, &np->children, siblings)
234 LIST_FOREACH(np1, &np->children, siblings)
237 np1 = LIST_FIRST(&np->children);
305 n1a = LIST_FIRST(&n1->children);
306 n2a = LIST_FIRST(&n2->children);

Completed in 364 milliseconds

1234567891011>>