Home
last modified time | relevance | path

Searched refs:child (Results 1 – 15 of 15) sorted by relevance

/dalvik/tests/063-process-manager/
Dexpected.txt3 spawning child #1
4 spawning child
6 child died
9 spawning child #2
10 spawning child
12 child died
Dinfo.txt1 Test that spawning a child process and then reaping it (a) works and (b)
/dalvik/docs/
Ddex-format.css115 table.bnf td:first-child {
120 table.bnf td:first-child td {
144 table.guide td:first-child {
149 table.guide td:first-child + td {
184 table.leb128 td:first-child {
190 table.leb128 td:first-child + td {
196 table.leb128 td:first-child + td + td {
202 table.leb128 td:first-child + td + td + td {
216 table.format td:first-child {
221 table.format td:first-child + td {
[all …]
Ddalvik-bytecode.css82 table.instruc td:first-child {
89 table.instruc td:first-child + td {
96 table.instruc td:first-child + td i {
101 table.instruc td:first-child + td + td {
106 table.instruc td:first-child + td + td + td {
121 table.supplement td:first-child {
127 table.supplement td:first-child + td {
133 table.supplement td:first-child + td + td {
149 table.math td:first-child {
155 table.math td:first-child + td {
[all …]
Dinstruction-formats.css66 table.letters td:first-child {
72 table.letters td:first-child + td {
77 table.letters td:first-child + td + td {
111 table.format th:first-child {
115 table.format th:first-child + th {
119 table.format th:first-child + th + th {
123 table.format th:first-child + th + th + th {
Dprettify.js328 for (var child = node.firstChild; child; child = child.nextSibling) {
329 normalizedHtml(child, out);
366 for (var child = node.firstChild; child; child = child.nextSibling) {
367 normalizedHtml(child, out);
/dalvik/docs/opcodes/
Dopcode.css83 table.instruc td:first-child {
90 table.instruc td:first-child + td {
97 table.instruc td:first-child + td i {
102 table.instruc td:first-child + td + td {
107 table.instruc td:first-child + td + td + td {
122 table.supplement td:first-child {
128 table.supplement td:first-child + td {
134 table.supplement td:first-child + td + td {
150 table.math td:first-child {
156 table.math td:first-child + td {
[all …]
/dalvik/tests/063-process-manager/src/
DMain.java8 child(); in main()
15 static private void child() throws Exception { in child() method in Main
/dalvik/vm/
DSync.c1745 static bool objectInChildList(const Object* parent, Object* child) in objectInChildList() argument
1753 return expandObjHas(&LW_MONITOR(lock)->historyChildren, child); in objectInChildList()
1772 static void linkParentToChild(Object* parent, Object* child) in linkParentToChild() argument
1776 assert(IS_LOCK_FAT(&child->lock)); in linkParentToChild()
1777 assert(parent != child); in linkParentToChild()
1781 assert(!expandObjHas(&mon->historyChildren, child)); in linkParentToChild()
1782 expandObjAddEntry(&mon->historyChildren, child); in linkParentToChild()
1784 mon = LW_MONITOR(child->lock); in linkParentToChild()
1793 static void unlinkParentFromChild(Object* parent, Object* child) in unlinkParentFromChild() argument
1797 assert(IS_LOCK_FAT(&child->lock)); in unlinkParentFromChild()
[all …]
/dalvik/tests/084-class-init/
Dexpected.txt6 Fields (child thread): 111222333444
/dalvik/dx/src/com/android/dx/ssa/
DDomFront.java132 for (SsaBasicBlock child : node.getDomChildren()) { in debugPrintDomChildren()
136 sb.append(child); in debugPrintDomChildren()
DSsaRenamer.java398 for (SsaBasicBlock child : block.getDomChildren()) { in process()
399 if (child != block) { in process()
404 startsForBlocks[child.getIndex()] = childStart; in process()
DSsaMethod.java809 SsaBasicBlock child = curDomChildren.get(i); in forEachBlockDepthFirstDom() local
810 stack.add(child); in forEachBlockDepthFirstDom()
DSsaBasicBlock.java185 public void addDomChild(SsaBasicBlock child) { in addDomChild() argument
186 domChildren.add(child); in addDomChild()
/dalvik/tools/dmtracedump/
DTraceDump.c1356 void addInclusiveTime(MethodEntry *parent, MethodEntry *child, in addInclusiveTime() argument
1363 if (strcmp(child->className, debugClassName) == 0) in addInclusiveTime()
1367 int childIsRecursive = (child->recursiveEntries > 0); in addInclusiveTime()
1370 if (child->recursiveEntries == 0) { in addInclusiveTime()
1371 child->elapsedInclusive += elapsedTime; in addInclusiveTime()
1372 } else if (child->recursiveEntries == 1) { in addInclusiveTime()
1373 child->recursiveInclusive += elapsedTime; in addInclusiveTime()
1375 child->numCalls[childIsRecursive] += 1; in addInclusiveTime()
1381 child->className, child->recursiveEntries, in addInclusiveTime()
1382 elapsedTime, child->elapsedInclusive, in addInclusiveTime()
[all …]