HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 126 - 150 of 1841) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/
ptrace-gpr.c 59 int trace_gpr(pid_t child)
64 FAIL_IF(start_trace(child));
65 FAIL_IF(show_gpr(child, gpr));
67 FAIL_IF(show_fpr(child, fpr));
69 FAIL_IF(write_gpr(child, GPR_3));
70 FAIL_IF(write_fpr(child, FPR_3_REP));
71 FAIL_IF(stop_trace(child));
109 printf("Child's exit status not captured\n");
ptrace-vsx.c 41 int trace_vsx(pid_t child)
46 FAIL_IF(start_trace(child));
47 FAIL_IF(show_vsx(child, vsx));
49 FAIL_IF(show_vmx(child, vmx));
56 FAIL_IF(write_vsx(child, vsx));
57 FAIL_IF(write_vmx(child, vmx));
58 FAIL_IF(stop_trace(child));
104 printf("Child's exit status not captured\n");
ptrace-tm-gpr.c 29 printf("Starting the child\n");
91 int trace_tm_gpr(pid_t child)
96 FAIL_IF(start_trace(child));
97 FAIL_IF(show_gpr(child, gpr));
99 FAIL_IF(show_fpr(child, fpr));
101 FAIL_IF(show_ckpt_fpr(child, fpr));
103 FAIL_IF(show_ckpt_gpr(child, gpr));
105 FAIL_IF(write_ckpt_gpr(child, GPR_3));
106 FAIL_IF(write_ckpt_fpr(child, FPR_3_REP));
109 FAIL_IF(stop_trace(child));
    [all...]
ptrace-tm-spd-gpr.c 97 int trace_tm_spd_gpr(pid_t child)
102 FAIL_IF(start_trace(child));
103 FAIL_IF(show_gpr(child, gpr));
105 FAIL_IF(show_fpr(child, fpr));
107 FAIL_IF(show_ckpt_fpr(child, fpr));
109 FAIL_IF(show_ckpt_gpr(child, gpr));
111 FAIL_IF(write_ckpt_gpr(child, GPR_3));
112 FAIL_IF(write_ckpt_fpr(child, FPR_3_REP));
116 FAIL_IF(stop_trace(child));
156 printf("Child's exit status not captured\n")
    [all...]
ptrace-tm-spd-vsx.c 101 int trace_tm_spd_vsx(pid_t child)
106 FAIL_IF(start_trace(child));
107 FAIL_IF(show_vsx(child, vsx));
109 FAIL_IF(show_vmx(child, vmx));
111 FAIL_IF(show_vsx_ckpt(child, vsx));
113 FAIL_IF(show_vmx_ckpt(child, vmx));
121 FAIL_IF(write_vsx_ckpt(child, vsx));
122 FAIL_IF(write_vmx_ckpt(child, vmx));
126 FAIL_IF(stop_trace(child));
172 printf("Child's exit status not captured\n")
    [all...]
ptrace-tm-vsx.c 89 int trace_tm_vsx(pid_t child)
94 FAIL_IF(start_trace(child));
95 FAIL_IF(show_vsx(child, vsx));
97 FAIL_IF(show_vmx(child, vmx));
99 FAIL_IF(show_vsx_ckpt(child, vsx));
101 FAIL_IF(show_vmx_ckpt(child, vmx));
108 FAIL_IF(write_vsx_ckpt(child, vsx));
109 FAIL_IF(write_vmx_ckpt(child, vmx));
111 FAIL_IF(stop_trace(child));
155 printf("Child's exit status not captured\n")
    [all...]
  /external/ltp/testcases/open_posix_testsuite/stress/threads/
helper.c 59 pid_t child; variable
75 ret = kill(child, SIGUSR1);
122 child = fork();
124 if (child == (pid_t) - 1) {
129 /* The child process executes the test */
130 if (child == (pid_t) 0) {
136 perror("Unable to run child application");
146 /* wait for the child process to terminate */
147 chk = waitpid(child, &status, 0);
148 if (chk != child) {
    [all...]
  /external/deqp-deps/SPIRV-Tools/source/opt/
scalar_analysis_simplification.cpp 42 // child.
71 // add node with each term as a child. For instance a large graph built from, X
91 // which are used to flatten the graph. |child| is the node currenty being
95 void GatherAccumulatorsFromChildNodes(SENode* new_node, SENode* child,
219 for (SENode* child : simplified_polynomial->GetChildren()) {
220 if (child->GetType() == SENode::RecurrentAddExpr) {
221 recurrent_expr = child->AsSERecurrentNode();
244 SENode* child,
248 if (child->GetType() == SENode::Constant) {
251 child->AsSEConstantNode()->FoldToSingleValue() * sign
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
scalar_analysis_simplification.cpp 42 // child.
71 // add node with each term as a child. For instance a large graph built from, X
91 // which are used to flatten the graph. |child| is the node currenty being
95 void GatherAccumulatorsFromChildNodes(SENode* new_node, SENode* child,
219 for (SENode* child : simplified_polynomial->GetChildren()) {
220 if (child->GetType() == SENode::RecurrentAddExpr) {
221 recurrent_expr = child->AsSERecurrentNode();
244 SENode* child,
248 if (child->GetType() == SENode::Constant) {
251 child->AsSEConstantNode()->FoldToSingleValue() * sign
    [all...]
  /art/runtime/
subtype_check_info.h 39 * * Next - The value a newly inserted Child would get appended to its path.
105 * forall child ? Children(Class):
106 * child.State == Uninitialized
109 * forall child ? Children(Class):
110 * Next > Child.PathToRoot[Child.Depth-1]
208 // Copies the current PathToRoot into the child.
210 // If assign_next is true, then also assign a new SubtypeCheckInfo for a child by
215 // Returns: A new child >= Initialized state.
217 SubtypeCheckInfo child = *this; // Copy everything (path, next, of) local
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
snippet.py 58 for child in self.children:
59 for snippet in child.FindAll(snippet_type):
63 for child in self.children:
65 if child.type != snippet_type:
68 if not isinstance(child, snippet_type):
72 if getattr(child, attribute) != value:
75 return child
81 for child in self.children:
82 if child.type == snippet_type:
83 yield child
    [all...]
  /external/linux-kselftest/tools/testing/selftests/ptrace/
peeksiginfo.c 44 static int check_error_paths(pid_t child)
73 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, addr_rw);
83 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg,
91 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, addr_ro);
105 int check_direct_path(pid_t child, int shared, int nr)
122 ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, siginfo);
157 pid_t child; local
163 child = fork();
164 if (child == -1) {
167 } else if (child == 0)
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/
ConcreteSyntaxModel.java 98 CsmElement.child(ObservableProperty.NAME),
112 CsmElement.child(ObservableProperty.TYPE),
114 CsmElement.child(ObservableProperty.NAME),
117 CsmElement.conditional(ObservableProperty.DEFAULT_VALUE, IS_PRESENT, CsmElement.sequence(CsmElement.space(), CsmElement.token(GeneratedJavaParserConstants._DEFAULT), CsmElement.space(), CsmElement.child(DEFAULT_VALUE))),
127 child(ObservableProperty.NAME),
146 child(ObservableProperty.NAME),
152 child(ObservableProperty.BODY)
158 child(ObservableProperty.NAME),
172 child(ObservableProperty.NAME),
198 conditional(ObservableProperty.VARIABLES, IS_NOT_EMPTY, child(ObservableProperty.MAXIMUM_COMMON_TYPE))
    [all...]
  /external/antlr/runtime/C/src/
antlr3basetree.c 44 static void addChild (pANTLR3_BASE_TREE tree, pANTLR3_BASE_TREE child);
51 static void setChild (pANTLR3_BASE_TREE tree, ANTLR3_UINT32 i, void * child);
144 addChild (pANTLR3_BASE_TREE tree, pANTLR3_BASE_TREE child)
149 if (child == NULL)
154 if (child->isNilNode(child) == ANTLR3_TRUE)
156 if (child->children != NULL && child->children == tree->children)
160 ANTLR3_FPRINTF(stderr, "ANTLR3: An attempt was made to add a child list to itself!\n");
166 if (child->children != NULL
394 pANTLR3_BASE_TREE child; local
485 pANTLR3_BASE_TREE child; local
    [all...]
  /external/toybox/kconfig/
conf.c 282 struct menu *child; local
319 for (child = menu->list; child; child = child->next) {
320 if (!menu_is_visible(child))
322 if (!child->sym) {
323 printf("%*c %s\n", indent, '*', menu_get_prompt(child));
327 if (child->sym == def_sym) {
332 printf(" %d. %s", cnt, menu_get_prompt(child));
412 struct menu *child; local
473 struct menu *child; local
    [all...]
  /external/yapf/yapf/yapflib/
pytree_unwrapper.py 158 for child in node.children:
164 if (child.type == grammar_token.NAME and
165 child.value in substatement_names):
167 self.Visit(child)
202 for child in node.children:
204 self.Visit(child)
205 if pytree_utils.NodeName(child) == 'ASYNC':
207 for child in node.children[index].children:
208 self.Visit(child)
218 for child in node.children
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 125 fail("did not throw IllegalStateException when add more than one child");
143 fail("did not throw IllegalStateException when add more than one child");
158 fail("did not throw IllegalStateException when add more than one child");
187 fail("did not throw IllegalStateException when add more than one child");
217 fail("did not throw IllegalStateException when add more than one child");
244 fail("did not throw IllegalStateException when add more than one child");
313 MyView child = new MyView(mActivity); local
314 child.setBackgroundDrawable(null);
315 child.setPadding(0, 0, 0, 0);
316 child.setMinimumWidth(30)
335 MyView child = new MyView(mActivity); local
357 MyView child = spy(new MyView(mActivity)); local
371 MyView child = spy(new MyView(mActivity)); local
386 MyView child = spy(new MyView(mActivity)); local
400 MyView child = spy(new MyView(mActivity)); local
415 MyView child = spy(new MyView(mActivity)); local
429 MyView child = new MyView(mActivity); local
453 MyView child = new MyView(mActivity); local
473 MyView child = new MyView(mActivity); local
499 MyView child = new MyView(mActivity); local
518 MyView child = new MyView(mActivity); local
    [all...]
ScrollViewTest.java 141 fail("ScrollView can host only one direct child");
159 fail("ScrollView can host only one direct child");
174 fail("ScrollView can host only one direct child");
184 fail("ScrollView can host only one direct child");
203 fail("ScrollView can host only one direct child");
233 fail("ScrollView can host only one direct child");
258 fail("ScrollView can host only one direct child");
267 fail("ScrollView can host only one direct child");
327 MyView child = new MyView(mActivity); local
328 child.setBackgroundDrawable(null)
349 MyView child = new MyView(mActivity); local
371 MyView child = spy(new MyView(mActivity)); local
385 MyView child = spy(new MyView(mActivity)); local
400 MyView child = spy(new MyView(mActivity)); local
414 MyView child = spy(new MyView(mActivity)); local
429 MyView child = spy(new MyView(mActivity)); local
445 MyView child = new MyView(mActivity); local
466 MyView child = new MyView(mActivity); local
487 MyView child = new MyView(mActivity); local
513 MyView child = new MyView(mActivity); local
532 MyView child = new MyView(mActivity); local
    [all...]
  /cts/suite/audio_quality/lib/src/task/
TaskGeneric.cpp 29 bool deleteChildInstance(TaskGeneric* child, void* /*data*/)
31 delete child;
41 bool TaskGeneric::addChild(TaskGeneric* child)
43 mChildren.push_back(child);
44 child->setParent(this);
48 bool TaskGeneric::forEachChild(bool (*runForEachChild)(TaskGeneric* child, void* data), void* data)
86 bool runChild(TaskGeneric* child, void* data)
89 *result = child->run();
91 LOGE("child type %d returned %d", child->getType(), *result)
    [all...]
  /development/testrunner/
make_tree.py 48 child = self._children_map.get(current_seg)
49 if not child:
50 child = MakeNode(current_seg, self)
51 self._children_map[current_seg] = child
52 return child._AddPath(path_segs)
76 for child in self._children_map.itervalues():
77 child._BuildPrunedMakeList(make_list)
103 child = self._AddPath(path_segs)
104 child._SetLeaf(True)
  /external/curl/docs/examples/
htmltidy.c 47 TidyNode child; local
48 for(child = tidyGetChild(tnod); child; child = tidyGetNext(child) ) {
49 ctmbstr name = tidyNodeGetName(child);
55 for(attr = tidyAttrFirst(child); attr; attr = tidyAttrNext(attr) ) {
66 tidyNodeGetText(doc, child, &buf);
70 dumpNode(doc, child, indent + 4); /* recursive */
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
CoverageNodeImpl.java 67 * @param child
70 public void increment(final ICoverageNode child) {
71 instructionCounter = instructionCounter.increment(child
73 branchCounter = branchCounter.increment(child.getBranchCounter());
74 lineCounter = lineCounter.increment(child.getLineCounter());
75 complexityCounter = complexityCounter.increment(child
77 methodCounter = methodCounter.increment(child.getMethodCounter());
78 classCounter = classCounter.increment(child.getClassCounter());
89 for (final ICoverageNode child : children) {
90 increment(child);
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
rdtsc_buckets.h 128 BUCKET &child = bt.pCurrent->children[id]; local
129 child.pParent = bt.pCurrent;
130 child.id = id;
131 child.start = tsc;
134 bt.pCurrent = &child;
182 BUCKET &child = bt.pCurrent->children[id];
183 child.pParent = bt.pCurrent;
184 child.id = id;
185 child.count += count;
  /external/python/cpython3/Lib/test/
signalinterproctester.py 24 def wait_signal(self, child, signame):
25 if child is not None:
28 child.wait()
57 with self.subprocess_send_signal(pid, "SIGHUP") as child:
58 self.wait_signal(child, 'SIGHUP')
63 with self.subprocess_send_signal(pid, "SIGUSR1") as child:
64 self.wait_signal(child, 'SIGUSR1')
68 with self.subprocess_send_signal(pid, "SIGUSR2") as child:
70 child.wait()
  /external/tcpdump/
makemib 50 * struct mib somename = { desc, oid-octet, type, child-pointer, next-pointer
204 if (child[parent] != "") {
205 for (sib = child[parent]; sib != ""; sib = sibling[sib])
218 if (child[parent] == "") {
219 child[parent] = new
221 sibling[new] = child[parent]
222 child[parent] = new
232 # printf "/* %s c=%s s=%s */\n", newitem, child[item], sibling[item]
234 if (child[item] != "") {
235 dump(child[item]
    [all...]

Completed in 1062 milliseconds

1 2 3 4 56 7 8 91011>>