Home
last modified time | relevance | path

Searched refs:orig_context (Results 1 – 6 of 6) sorted by relevance

/external/compiler-rt/test/asan/TestCases/Linux/
Dswapcontext_test.cc15 ucontext_t orig_context; variable
42 if (swapcontext(&child_context, &orig_context) < 0) { in Child()
56 child_context.uc_link = &orig_context; in Run()
59 if (swapcontext(&orig_context, &child_context) < 0) { in Run()
Dswapcontext_annotation.cc20 ucontext_t orig_context; variable
56 if (swapcontext(&next_child_context, &orig_context) < 0) { in NextChild()
78 if (swapcontext(&child_context, &orig_context) < 0) { in Child()
104 child_context.uc_link = &orig_context; in Run()
111 if (swapcontext(&orig_context, &child_context) < 0) { in Run()
/external/compiler-rt/test/lsan/TestCases/
Dswapcontext.cc31 ucontext_t orig_context; in main() local
36 child_context.uc_link = &orig_context; in main()
38 if (swapcontext(&orig_context, &child_context) < 0) { in main()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_libdispatch_mac.cc34 void *orig_context; member
82 void *orig_context, in AllocContext() argument
87 new_context->orig_context = orig_context; in AllocContext()
111 context->orig_work(context->orig_context); in dispatch_callback_wrap()
365 new_context.orig_context = handler; // To explicitly capture "handler". in TSAN_INTERCEPTOR()
394 new_context.orig_context = handler; // To explicitly capture "handler". in TSAN_INTERCEPTOR()
425 new_context.orig_context = handler; // To explicitly capture "handler". in TSAN_INTERCEPTOR()
515 new_context.orig_context = ^(void) { in TSAN_INTERCEPTOR()
532 new_context.orig_context = ^(void) { in TSAN_INTERCEPTOR()
550 new_context.orig_context = ^(void) { in TSAN_INTERCEPTOR()
[all …]
/external/regex-re2/
Ducs2.diff497 StringPiece context = orig_context;
501 - if (!ConvertUTF8ToUCS2(orig_context, &context)) {
507 - AdjustUTF8ToUCS2(orig_context, context, &text);
523 - AdjustUCS2ToUTF8(context, orig_context, &result->submatch[0]);
526 - AdjustUCS2ToUTF8(context, orig_context, &result->submatch[i]);
/external/regex-re2/re2/testing/
Dtester.cc281 const StringPiece& orig_context, in RunSearch() argument
294 StringPiece context = orig_context; in RunSearch()