HomeSort by relevance Sort by last modified time
    Searched full:child_context (Results 1 - 4 of 4) sorted by null

  /external/compiler-rt/test/lsan/TestCases/
swapcontext.cc 27 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/
swapcontext_test.cc 16 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/
aliaspass.py 142 for child_context in context.children:
143 for descendent_child in cls._YieldAllContexts(child_context):
  /external/chromium_org/cc/resources/
resource_provider_unittest.cc 1633 TextureStateTrackingContext* child_context = child_context_owned.get(); local
    [all...]

Completed in 85 milliseconds