Searched defs:child (Results 1 - 25 of 543) sorted by relevance

1234567891011>>

/external/valgrind/main/helgrind/tests/
H A Dtc02_simple_tls.c6 /* 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)) {
H A Dtc01_simple_race.c6 /* 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)) {
H A Dtc05_simple_race.c6 /* 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)) {
H A Dtc06_two_races.c24 pthread_t child; local
26 if (pthread_create(&child, NULL, child_fn, NULL)) {
37 if (pthread_join(child, NULL)) {
H A Dtc16_byterace.c13 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)) {
H A Dtc09_bad_unlock.c17 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/webkit/Source/WebCore/platform/qt/
H A DScrollViewQt.cpp41 void ScrollView::platformRemoveChild(Widget* child) argument
43 child->hide();
/external/valgrind/main/memcheck/tests/
H A Dnoisy_child.c22 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 */
H A Derr_disable3.c2 /* 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/elfutils/libelf/
H A Delf_readall.c68 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
[all...]
H A Delf_end.c105 the child but here we already have the child lock. We
106 solve this problem by giving free the child lock. The
117 struct Elf *child = parent->state.ar.children; local
119 while (child->next != elf)
120 child = child->next;
122 child->next = elf->next;
/external/webkit/Source/WebCore/css/
H A DStyleList.cpp31 void StyleList::append(PassRefPtr<StyleBase> child) argument
33 StyleBase* c = child.get();
34 m_children.append(child);
38 void StyleList::insert(unsigned position, PassRefPtr<StyleBase> child) argument
40 StyleBase* c = child.get();
42 m_children.append(child);
44 m_children.insert(position, child);
/external/webkit/Source/WebCore/editing/
H A DRemoveNodePreservingChildrenCommand.cpp44 for (Node* child = m_node->firstChild(); child; child = child->nextSibling())
45 children.append(child);
49 RefPtr<Node> child = children[i].release(); local
50 removeNode(child);
51 insertNodeBefore(child.release(), m_node);
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp32 /// @param child - The class that may be the subset
34 /// @return - True if child is a subset of parent, false otherwise.
35 static inline bool inheritsFrom(InstructionContext child, argument
38 if (child == parent)
43 return(inheritsFrom(child, IC_64BIT) ||
44 inheritsFrom(child, IC_OPSIZE) ||
45 inheritsFrom(child, IC_ADSIZE) ||
46 inheritsFrom(child, IC_XD) ||
47 inheritsFrom(child, IC_XS));
49 return(inheritsFrom(child, IC_64BIT_REX
[all...]
/external/skia/src/core/
H A DSkTSort.h18 int child = root * 2 + 1; local
19 if (child+1 <= bottom && array[child] < array[child+1]) {
20 child += 1;
22 if (array[root] < array[child]) {
23 SkTSwap<T>(array[root], array[child]);
24 root = child;
/external/skia/src/svg/
H A DSkSVGClipPath.cpp28 SkSVGElement* child = *fChildren.begin(); local
29 SkASSERT(child->getType() == SkSVGType_Use);
30 SkSVGUse* use = (SkSVGUse*) child;
/external/valgrind/main/none/tests/
H A Dpth_blockedsig.c35 pthread_t child; local
50 if (pthread_create (&child, NULL, child_main, NULL) != 0)
53 pthread_join (child, NULL);
/external/chromium/chrome/browser/ui/touch/frame/
H A Dkeyboard_container_view.cc48 View* child) {
50 MakeViewHierarchyUnfocusable(child);
46 ViewHierarchyChanged(bool is_add, View* parent, View* child) argument
/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar_container_view.cc34 InfoBarView* child = static_cast<InfoBarView*>(GetChildViewAt(i)); local
35 top -= child->arrow_height();
36 int child_height = child->total_height();
37 child->SetBounds(0, top, width(), child_height);
H A Dtranslate_message_infobar.cc39 View* child) {
40 if (is_add && (child == this) && (label_ == NULL)) {
53 // the close button is the last child.
54 TranslateInfoBarBase::ViewHierarchyChanged(is_add, parent, child);
37 ViewHierarchyChanged(bool is_add, View* parent, View* child) argument
/external/chromium/third_party/libjingle/source/talk/base/
H A Dtaskparent.cc59 void TaskParent::AddChild(Task *child) { argument
60 children_->insert(child);
106 void TaskParent::OnChildStopped(Task *child) { argument
107 if (child->HasError())
109 children_->erase(child);
/external/elfutils/libdw/
H A Dlibdw_visit_scopes.c106 struct Dwarf_Die_Chain child; local
108 child.parent = root;
109 if (INTUSE(dwarf_child) (&root->die, &child.die) != 0)
114 return __libdw_visit_scopes (depth + 1, &child,
120 child.prune = false;
124 int result = (*previsit) (depth + 1, &child, arg);
129 if (!child.prune)
130 switch (classify_die (&child.die))
135 if (INTUSE(dwarf_haschildren) (&child.die))
151 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (&child
[all...]
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_CompoundCollisionShape.cpp68 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/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DSimpleBatchNode.java29 public int attachChild(Spatial child) { argument
31 if (!(child instanceof Geometry)) {
32 throw new UnsupportedOperationException("BatchNode is BatchMode.Simple only support child of type Geometry, use BatchMode.Complex to use a complex structure");
35 return super.attachChild(child);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DANoopCommand.java34 void removeChild(@SuppressWarnings("unused") Node child) argument
36 // Remove child
37 throw new RuntimeException("Not a child.");
43 // Replace child
44 throw new RuntimeException("Not a child.");

Completed in 408 milliseconds

1234567891011>>