Searched defs:child (Results 1 - 25 of 821) 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/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/chromium_org/ui/aura/
H A Dlayout_manager.cc17 void LayoutManager::SetChildBoundsDirect(aura::Window* child, argument
19 child->SetBoundsInternal(bounds);
/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...]
/external/chromium_org/chrome/browser/task_profiler/
H A Dtask_profiler_data_serializer_unittest.cc66 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/sandbox/win/src/
H A DWow64.h21 Wow64(TargetProcess* child, HMODULE ntdll) argument
22 : child_(child), ntdll_(ntdll), dll_load_(NULL), continue_load_(NULL) {}
25 // Waits for the 32 bit DLL to get loaded on the child process. This function
32 // the child (one page).
35 // This method receives "notifications" whenever a DLL is mapped on the child.
38 // Returns true if ntdll.dll is mapped on the child.
44 HANDLE continue_load_; // Event to signal to continue execution on the child.
H A Dpolicy_broker.cc22 // target side (the child).
41 bool SetupNtdllImports(TargetProcess *child) { argument
82 return (SBOX_ALL_OK == child->TransferVariable("g_nt", &g_nt, sizeof(g_nt)));
/external/chromium_org/skia/ext/
H A Drefptr_unittest.cc113 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/editing/
H A DRemoveNodePreservingChildrenCommand.cpp45 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/
H A DSkSVGClipPath.cpp28 SkSVGElement* child = *fChildren.begin(); local
29 SkASSERT(child->getType() == SkSVGType_Use);
30 SkSVGUse* use = (SkSVGUse*) child;
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp31 /// @param child - The class that may be the subset
33 /// @return - True if child is a subset of parent, false otherwise.
34 static inline bool inheritsFrom(InstructionContext child, argument
37 if (child == parent)
42 return(inheritsFrom(child, IC_64BIT) ||
43 inheritsFrom(child, IC_OPSIZE) ||
44 inheritsFrom(child, IC_ADSIZE) ||
45 inheritsFrom(child, IC_XD) ||
46 inheritsFrom(child, IC_XS));
48 return(inheritsFrom(child, IC_64BIT_REX
[all...]
/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/chromium_org/ash/system/chromeos/
H A Dlabel_tray_view.cc45 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
[all...]
/external/chromium_org/ash/wm/
H A Dstatus_area_layout_manager.cc35 void StatusAreaLayoutManager::OnWindowAddedToLayout(aura::Window* child) { argument
39 aura::Window* child) {
42 void StatusAreaLayoutManager::OnWindowRemovedFromLayout(aura::Window* child) { argument
46 aura::Window* child, bool visible) {
50 aura::Window* child,
52 // Only need to have the shelf do a layout if the child changing is the status
54 if (child != shelf_->status_area_widget()->GetNativeView() || in_layout_) {
55 SetChildBoundsDirect(child, requested_bounds);
61 if (requested_bounds == child->bounds())
64 SetChildBoundsDirect(child, requested_bound
38 OnWillRemoveWindowFromLayout( aura::Window* child) argument
45 OnChildWindowVisibilityChanged( aura::Window* child, bool visible) argument
49 SetChildBounds( aura::Window* child, const gfx::Rect& requested_bounds) argument
[all...]

Completed in 633 milliseconds

1234567891011>>