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

1234567891011>>

/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/util/
H A Dfs_skels.c63 if (svn_skel__matches_atom(skel->children, "md5")
64 && skel->children->next->is_atom)
67 if (svn_skel__matches_atom(skel->children, "sha1")
68 && skel->children->next->is_atom)
81 && svn_skel__matches_atom(skel->children, "revision")
82 && skel->children->next->is_atom)
98 if (svn_skel__matches_atom(skel->children, "transaction"))
100 else if (svn_skel__matches_atom(skel->children, "committed"))
102 else if (svn_skel__matches_atom(skel->children, "dead"))
107 if (skel->children
[all...]
/freebsd-11-stable/sys/dev/adb/
H A Dadbvar.h50 device_t children[16]; member in struct:adb_softc
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/
H A Dypxfrd_extern.h44 extern int children;
H A Dypxfrd_server.c51 int children = 0; variable
125 if (children < MAX_CHILDREN && fork()) {
126 children++;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_util.c70 uint_t c, children; local
74 &child, &children) != 0)
77 for (c = 0; c < children; c++) {
H A Dzpool_vdev.c587 uint_t c, children; local
616 &child, &children) != 0) {
655 for (c = 0; c < children; c++) {
855 uint_t children; local
872 * for spares there may be no children, and therefore no
876 &child, &children) != 0) || (children == 0)) {
884 if (num_logs(newroot) == children) {
949 uint_t c, children; local
962 &child, &children) !
1129 uint_t c, children; local
1283 int c, children = 0; local
1464 uint_t c, children; local
[all...]
/freebsd-11-stable/usr.sbin/rpc.ypupdated/
H A Dypupdated_extern.h29 extern int children;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp29 for (const Stmt *Child : S->children())
43 for (const Stmt *Child : S->children())
59 for (const Stmt *Child : S->children())
71 for (const Stmt *Child : S->children())
/freebsd-11-stable/contrib/subversion/subversion/libsvn_wc/
H A Dtree_conflicts.c94 && svn_skel__matches_atom(skel->children, "version")
95 && skel->children->next->is_atom
96 && skel->children->next->next->is_atom
97 && skel->children->next->next->next->is_atom
98 && skel->children->next->next->next->next->is_atom);
109 || !svn_skel__matches_atom(skel->children, "conflict"))
113 skel = skel->children->next;
165 skel->children->next->data,
166 skel->children->next->len);
177 skel->children
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h110 Definition *children; // An array of "num_children" Definition entries, member in struct:lldb_private::FormatEntity::Entry::Definition
116 : string(s ? s : ""), printf_format(f ? f : ""), children(),
129 void AppendEntry(const Entry &&entry) { children.push_back(entry); }
134 children.clear();
151 const size_t n = children.size();
152 const size_t m = rhs.children.size();
154 if (!(children[i] == rhs.children[i]))
157 if (children != rhs.children)
172 std::vector<Entry> children; member in struct:lldb_private::FormatEntity::Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DTimer.cpp33 parent->children.push_back(this);
50 // print all children first, then print the total under that.
51 for (const auto &child : children)
76 for (const auto &child : children)
/freebsd-11-stable/cddl/usr.sbin/zfsd/
H A Dvdev.cc206 std::list<Vdev> children; local
209 return (children);
214 return (children);
217 children.push_back(Vdev(m_poolConfig, vdevChildren[c]));
219 return (children);
245 std::list<Vdev> children; local
256 children = vd.Children();
257 children_it = children.begin();
258 for (;children_it != children.end(); children_it++) {
/freebsd-11-stable/sys/sparc64/sparc64/
H A Djbusppm.c114 device_t *children, tomatillo; local
149 &children, &nchildren) != 0) {
150 device_printf(dev, "could not get children\n");
155 if (ofw_bus_get_type(children[j]) != NULL &&
156 strcmp(ofw_bus_get_type(children[j]),
158 ofw_bus_get_compat(children[j]) != NULL &&
159 strcmp(ofw_bus_get_compat(children[j]),
161 ((bus_get_resource_start(children[j],
163 tomatillo = children[j];
167 free(children, M_TEM
[all...]
/freebsd-11-stable/sys/dev/le/
H A Dlebuffer_sbus.c126 int children; local
128 children = 0;
133 if (children != 0) {
147 children++;
155 device_t *children; local
159 if (device_get_children(dev, &children, &nchildren) == 0) {
161 lebuffer_destroy_dinfo(device_get_ivars(children[i]));
162 device_delete_child(dev, children[i]);
164 free(children, M_TEMP);
/freebsd-11-stable/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-11-stable/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
259 child_range children() {
264 const_child_range children() const {
265 return const_child_range(const_cast<ObjCAtTryStmt *>(this)->children());
322 child_range children() { function in class:clang::ObjCAtTryStmt
326 const_child_range children() const { function in class:clang::ObjCAtTryStmt
360 child_range children() { return child_range(&Throw, &Throw+1); } function in class:clang::ObjCAtThrowStmt
362 const_child_range children() const { function in class:clang::ObjCAtThrowStmt
395 child_range children() { return child_range(&SubStmt, &SubStmt + 1); } function in class:clang::ObjCAutoreleasePoolStmt
397 const_child_range children() const { function in class:clang::ObjCAutoreleasePoolStmt
[all...]
H A DStmtCXX.h57 child_range children() { return child_range(&HandlerBlock, &HandlerBlock+1); } function in class:clang::CXXCatchStmt
59 const_child_range children() const { function in class:clang::CXXCatchStmt
118 child_range children() { function in class:clang::final
122 const_child_range children() const { function in class:clang::final
216 child_range children() { function in class:clang::CXXForRangeStmt
220 const_child_range children() const { function in class:clang::CXXForRangeStmt
301 child_range children() { function in class:clang::MSDependentExistsStmt
305 const_child_range children() const { function in class:clang::MSDependentExistsStmt
429 child_range children() { function in class:clang::final
434 const_child_range children() cons function in class:clang::final
497 child_range children() { function in class:clang::CoreturnStmt
504 const_child_range children() const { function in class:clang::CoreturnStmt
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree-ssa-math-opts.c120 struct occurrence *children; member in struct:occurrence
148 whose children list is headed by CHILDREN. */
150 occ_new (basic_block bb, struct occurrence *children) argument
158 occ->children = children;
186 occ->next = new_occ->children;
187 new_occ->children = occ;
195 insert_bb (new_occ, dom, &occ->children);
204 two children out of NEW_OCC and OCC. First, remove OCC from
248 its children
[all...]
/freebsd-11-stable/sys/arm/altera/socfpga/
H A Dsocfpga_rstmgr.c187 struct sysctl_oid_list *children; local
191 children = SYSCTL_CHILDREN(device_get_sysctl_tree(sc->dev));
193 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "fpga2hps",
196 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "lwhps2fpga",
199 SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "hps2fpga",
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dskel.c165 for (elt = skel->children; elt; elt = elt->next)
184 for (elt = skel->children; elt; elt = elt->next)
274 /* Parse the children. */
276 svn_skel_t *children = NULL;
277 svn_skel_t **tail = &children;
320 s->children = children;
444 for (child = skel->children; child; child = child->next)
520 for (child = skel->children; child; child = child->next)
591 if (skel->children)
272 svn_skel_t *children = NULL; local
[all...]
/freebsd-11-stable/tests/sys/kern/
H A Dptrace_test.c615 pid_t children[2], fpid, wpid; local
625 children[0] = fpid;
628 wpid = waitpid(children[0], &status, 0);
629 ATF_REQUIRE(wpid == children[0]);
633 ATF_REQUIRE(ptrace(PT_FOLLOW_FORK, children[0], NULL, 1) != -1);
636 ATF_REQUIRE(ptrace(PT_CONTINUE, children[0], (caddr_t)1, 0) != -1);
638 children[1] = handle_fork_events(children[0], NULL);
639 ATF_REQUIRE(children[1] > 0);
641 ATF_REQUIRE(ptrace(PT_CONTINUE, children[
671 pid_t children[2], fpid, wpid; local
722 pid_t children[2], fpid, wpid; local
803 pid_t children[2], fpid, wpid; local
874 pid_t children[2], fpid, wpid; local
940 pid_t children[2], fpid, wpid; local
1095 pid_t children[2], fpid, wpid; local
1158 pid_t children[2], fpid, wpid; local
1730 pid_t children[2], fpid, wpid; local
[all...]
/freebsd-11-stable/sys/dev/nand/
H A Dnfc_rb.c118 device_t *children; local
121 if (device_get_children(dev, &children, &n) != 0) {
124 dev = children[0];
125 free(children, M_TEMP);
127 if (device_get_children(dev, &children, &n) != 0) {
130 dev = children[0];
131 free(children, M_TEMP);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dvarobj.c62 /* Language info for this variable and its children */
85 convenience when constructing this object's children. */
100 /* The number of (immediate) children this variable has */
106 /* A list of this object's children */
107 struct varobj_child *children; member in struct:varobj
109 /* Description of the root variable. Points to root variable for children. */
119 /* Every variable keeps a linked list of its children, described
249 static void cplus_class_num_children (struct type *type, int children[3]);
291 /* The number of children of PARENT. */
390 /* Is the variable X one of our "fake" children
1764 int children; local
2113 int children, dont_know; local
2168 cplus_class_num_children(struct type *type, int children[3]) argument
2273 int children[3]; local
[all...]
/freebsd-11-stable/tools/regression/geom/ConfCmp/
H A DConfCmp.c54 LIST_HEAD(, node) children;
89 LIST_INIT(&np->children);
125 LIST_INSERT_HEAD(&mt->cur->children, np, siblings);
141 LIST_FOREACH(np, &mt->cur->children, siblings) {
226 LIST_FOREACH(np1, &np->children, siblings)
236 LIST_FOREACH(np1, &np->children, siblings)
239 np1 = LIST_FIRST(&np->children);
307 n1a = LIST_FIRST(&n1->children);
308 n2a = LIST_FIRST(&n2->children);
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/zfs/
H A Dzfs_comutil.c52 uint_t children; local
55 &child, &children) != 0) {
58 for (c = 0; c < children; c++) {

Completed in 180 milliseconds

1234567891011>>