HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 1 - 25 of 1181) 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 46 HoverHighlightView* child = new HoverHighlightView(click_listener_); local
50 child->AddIconAndLabel(*icon, message, gfx::Font::NORMAL);
51 child->set_border(
54 child->text_label()->SetMultiLine(true);
55 child->text_label()->SizeToFit(kTrayNotificationContentsWidth);
57 child->AddLabel(message, gfx::Font::NORMAL);
58 child->text_label()->SetMultiLine(true);
59 child->text_label()->SizeToFit(kTrayNotificationContentsWidth +
62 child->text_label()->SetAllowCharacterBreak(true);
63 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/chrome/browser/ui/views/frame/
top_container_view.cc 24 views::View* child = child_at(i); local
25 if (!child->visible())
27 int child_bottom = child->bounds().bottom();
  /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/bindings/v8/
V8HiddenPropertyName.cpp 67 void V8HiddenPropertyName::setNamedHiddenReference(v8::Handle<v8::Object> parent, const char* name, v8::Handle<v8::Value> child)
70 parent->SetHiddenValue(hiddenReferenceName(name, strlen(name)), child); local
  /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/chromium_org/ui/views/ime/
input_method_bridge_unittest.cc 30 // |child| owns |native_widget|.
34 Widget* child = new Widget; local
38 // |child| owns |native_widget|.
39 child_params.native_widget = new NativeWidgetAura(child);
40 child->Init(child_params);
42 child->GetInputMethod()->OnFocus();
  /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) {

Completed in 1274 milliseconds

1 2 3 4 5 6 7 8 91011>>