HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 1 - 25 of 1144) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libelf/
elf_readall.c 68 Elf *child = elf->state.ar.children; local
70 while (child != NULL)
72 if (child->map_address == NULL)
74 child->map_address = elf->map_address;
75 child->start_offset -= offset;
76 if (child->kind == ELF_K_AR)
77 child->state.ar.offset -= offset;
79 set_address (child, offset);
82 child = child->next
    [all...]
  /external/valgrind/main/helgrind/tests/
tc02_simple_tls.c 6 /* Simple test program, no race: parent only modified x after child
14 /* Unprotected relative to parent, but in child's segment only */
21 pthread_t child; local
25 if (pthread_create(&child, NULL, child_fn, NULL)) {
30 if (pthread_join(child, NULL)) {
tc01_simple_race.c 6 /* Simple test program, has a race. Parent and child both modify x
21 pthread_t child; local
22 if (pthread_create(&child, NULL, child_fn, NULL)) {
27 /* Unprotected relative to child */
30 if (pthread_join(child, NULL)) {
tc05_simple_race.c 6 /* Simple test program, has a race. Parent and child both modify y
26 pthread_t child; local
27 if (pthread_create(&child, NULL, child_fn, NULL)) {
38 if (pthread_join(child, NULL)) {
tc06_two_races.c 24 pthread_t child; local
26 if (pthread_create(&child, NULL, child_fn, NULL)) {
37 if (pthread_join(child, NULL)) {
tc16_byterace.c 13 bytes[2*i + 0] ++; /* child accesses: 0 2 4 6 8 */
21 pthread_t child; local
22 if (pthread_create(&child, NULL, child_fn, NULL)) {
27 /* Unprotected relative to child, but harmless, since different
32 /* Unprotected relative to child, but harmful; same bytes */
36 if (pthread_join(child, NULL)) {
tc09_bad_unlock.c 17 pthread_t child; local
33 // start child and get it to unlock this lock
35 pthread_create( &child, NULL, child_fn, (void*)&mx2 );
36 /* child runs and attempts to unlock our lock. Error
38 pthread_join(child, NULL );
  /external/valgrind/main/memcheck/tests/
noisy_child.c 22 pid_t child; local
29 child = fork();
30 assert(child != -1); /* assert fork did not fail */
32 if (child == 0) {
33 /* I am the child */
err_disable3.c 2 /* Check that a child thread doesn't inherit its parent's disablement
39 pthread_t child; local
49 fprintf(stderr, "\n--------- p: creating child ---------\n\n");
51 r = pthread_create(&child, NULL, child_fn, NULL);
53 sleep(1); // let the child run first (determinism fix)
54 fprintf(stderr, "\n--------- p: join child ---------\n\n");
55 r = pthread_join(child, NULL);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
RemoveNodePreservingChildrenCommand.cpp 45 for (Node* child = m_node->firstChild(); child; child = child->nextSibling())
46 children.append(child);
50 RefPtr<Node> child = children[i].release(); local
51 removeNode(child, m_shouldAssumeContentIsAlwaysEditable);
52 insertNodeBefore(child.release(), m_node, m_shouldAssumeContentIsAlwaysEditable);
  /external/chromium_org/third_party/skia/src/svg/
SkSVGClipPath.cpp 28 SkSVGElement* child = *fChildren.begin(); local
29 SkASSERT(child->getType() == SkSVGType_Use);
30 SkSVGUse* use = (SkSVGUse*) child;
  /external/skia/src/svg/
SkSVGClipPath.cpp 28 SkSVGElement* child = *fChildren.begin(); local
29 SkASSERT(child->getType() == SkSVGType_Use);
30 SkSVGUse* use = (SkSVGUse*) child;
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
RightAlignedHorizontalScrollView.java 38 // Get the width of the child, i.e. the LinearLayout, and scroll to
40 View child = getChildAt(0); local
41 if (child != null) scrollTo(child.getWidth(), 0);
  /external/chromium_org/ash/system/chromeos/
label_tray_view.cc 45 HoverHighlightView* child = new HoverHighlightView(click_listener_); local
49 child->AddIconAndLabel(*icon, message, gfx::Font::NORMAL);
50 child->set_border(
53 child->text_label()->SetMultiLine(true);
54 child->text_label()->SizeToFit(kTrayNotificationContentsWidth);
56 child->AddLabel(message, gfx::Font::NORMAL);
57 child->text_label()->SetMultiLine(true);
58 child->text_label()->SizeToFit(kTrayNotificationContentsWidth +
61 child->text_label()->SetAllowCharacterBreak(true);
62 child->SetExpandable(true)
    [all...]
  /external/chromium_org/chrome/browser/task_profiler/
task_profiler_data_serializer_unittest.cc 66 tracked_objects::BirthOnThreadSnapshot child; local
67 child.location.file_name = "path/to/bar.cc";
68 child.location.function_name = "FizzBoom";
69 child.location.line_number = 433;
70 child.thread_name = "Chrome_IOThread";
87 process_data.tasks.back().birth = child;
97 // Add a parent-child pair.
101 process_data.descendants.back().child = child;
  /external/chromium_org/skia/ext/
refptr_unittest.cc 113 RefPtr<Subclass> child = AdoptRef(new Subclass()); local
114 EXPECT_EQ(1, child->getRefCnt());
116 RefPtr<SkRefCnt> parent = child;
117 EXPECT_TRUE(child);
120 EXPECT_EQ(2, child->getRefCnt());
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowsCollection.cpp 57 Node* child = 0; local
62 for (child = previous->nextSibling(); child; child = child->nextSibling()) {
63 if (isHTMLTableRowElement(child))
64 return toHTMLTableRowElement(child);
70 child = table->firstChild();
72 child = previous->parentNode()->nextSibling();
73 for (; child; child = child->nextSibling())
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/finders/
ChainFinder.java 24 * for the child Finder.
28 private final Finder child; field in class:ChainFinder
30 protected ChainFinder(Finder parent, Finder child) {
32 this.child = Preconditions.checkNotNull(child);
37 return String.format("ChainFinder{%s, %s}", parent, child);
42 return child.find(parent.find(context));
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_collision_shapes_CompoundCollisionShape.cpp 68 btCollisionShape* child = reinterpret_cast<btCollisionShape*>(childId); local
78 shape->addChildShape(trans, child);
95 btCollisionShape* child = reinterpret_cast<btCollisionShape*>(childId); local
101 shape->removeChildShape(child);
  /external/valgrind/main/none/tests/
pth_blockedsig.c 22 fprintf (stdout, "thread CHILD sending SIGUSR1 to thread MAIN\n");
35 pthread_t child; local
50 if (pthread_create (&child, NULL, child_main, NULL) != 0)
53 pthread_join (child, NULL);
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityContainer.java 23 View child = getChildAt(i); local
24 if (child instanceof KeyguardSecurityViewFlipper) {
25 return (KeyguardSecurityViewFlipper) child;
  /system/extras/ext4_utils/
setup_fs.c 15 pid_t child; local
46 child = fork();
47 if (child < 0) {
51 if (child == 0) {
56 while ((pid=waitpid(-1, &status, 0)) != child) {
  /system/extras/tests/bionic/libc/common/
test_clone.c 62 int pid,child; local
72 printf ("child pid %d\n", pid);
75 child = waitpid (pid, &status, 0);
76 printf("waitpid returned %d\n", child);
77 if (child < 0) {
81 printf ("child %d, status 0x%x\n", child, status);
  /cts/tests/tests/holo/src/android/holo/cts/
ReferenceViewGroup.java 55 View child = getChildAt(i); local
56 LayoutParams params = child.getLayoutParams();
59 child.measure(width, height);
81 View child = getChildAt(i); local
82 child.layout(0, 0, child.getMeasuredWidth(), child.getMeasuredHeight());
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Node.java 103 for (Spatial child : children.getArray()){
104 if ((child.refreshFlags & RF_TRANSFORM) != 0)
107 child.setTransformRefresh();
114 for (Spatial child : children.getArray()){
115 if ((child.refreshFlags & RF_LIGHTLIST) != 0)
118 child.setLightListRefresh();
129 for (Spatial child : children.getArray()) {
130 // child bound is assumed to be updated
131 assert (child.refreshFlags & RF_BOUND) == 0;
133 // merge current world bound with child world boun
332 Spatial child = children.get(x); local
351 Spatial child = children.remove(index); local
    [all...]

Completed in 2036 milliseconds

1 2 3 4 5 6 7 8 91011>>