Searched refs:child_context (Results 1 - 4 of 4) sorted by relevance

/external/compiler-rt/test/lsan/TestCases/
H A Dswapcontext.cc27 ucontext_t child_context; local
28 getcontext(&child_context);
29 child_context.uc_stack.ss_sp = child_stack;
30 child_context.uc_stack.ss_size = kStackSize / 2;
31 child_context.uc_link = &orig_context;
32 makecontext(&child_context, Child, 0);
33 if (swapcontext(&orig_context, &child_context) < 0) {
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dswapcontext_test.cc16 ucontext_t child_context; variable
42 if (swapcontext(&child_context, &orig_context) < 0) {
52 getcontext(&child_context);
53 child_context.uc_stack.ss_sp = child_stack;
54 child_context.uc_stack.ss_size = kStackSize / 2;
56 child_context.uc_link = &orig_context;
58 makecontext(&child_context, (void (*)())Child, 1, mode);
59 if (swapcontext(&orig_context, &child_context) < 0) {
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Daliaspass.py142 for child_context in context.children:
143 for descendent_child in cls._YieldAllContexts(child_context):
/external/chromium_org/cc/resources/
H A Dresource_provider_unittest.cc1633 TextureStateTrackingContext* child_context = child_context_owned.get(); local
1681 EXPECT_CALL(*child_context, bindTexture(GL_TEXTURE_2D, child_texture_id))
1683 EXPECT_CALL(*child_context,
1685 EXPECT_CALL(*child_context,
1688 *child_context,
1691 *child_context,
1693 EXPECT_CALL(*child_context,
1698 Mock::VerifyAndClearExpectations(child_context);
1703 EXPECT_CALL(*child_context, bindTexture(GL_TEXTURE_2D, child_texture_id));
1705 Mock::VerifyAndClearExpectations(child_context);
[all...]

Completed in 2920 milliseconds