Searched defs:guard (Results 1 - 11 of 11) sorted by relevance
/bionic/tests/ |
H A D | bug_26110743_test.cpp | 59 auto guard = android::base::make_scope_guard([&]() { local 103 auto guard = android::base::make_scope_guard([&]() { local
|
H A D | stack_protector_test.cpp | 44 void* guard = __get_tls()[TLS_SLOT_STACK_GUARD]; local 46 printf("[thread %d] TLS stack guard = %p\n", tid, guard); 51 // Uninitialized guard. Our bug. Note this is potentially flaky; we _could_ 53 ASSERT_NE(guard, nullptr); 57 ASSERT_EQ(__stack_chk_guard, reinterpret_cast<uintptr_t>(guard)); 61 guards.insert(guard); 88 // Both bionic and glibc use the same guard for every thread.
|
H A D | math_test.cpp | 778 auto guard = android::base::make_scope_guard([]() { fesetenv(FE_DFL_ENV); }); local 800 auto guard = android::base::make_scope_guard([]() { fesetenv(FE_DFL_ENV); }); local 828 auto guard = android::base::make_scope_guard([]() { fesetenv(FE_DFL_ENV); }); local 855 auto guard = android::base::make_scope_guard([]() { fesetenv(FE_DFL_ENV); }); local 863 auto guard = android::base::make_scope_guard([]() { fesetenv(FE_DFL_ENV); }); local 958 auto guard = android::base::make_scope_guard([]() { fesetenv(FE_DFL_ENV); }); local 969 auto guard = android::base::make_scope_guard([]() { fesetenv(FE_DFL_ENV); }); local 980 auto guard = android::base::make_scope_guard([]() { fesetenv(FE_DFL_ENV); }); local 991 auto guard = android::base::make_scope_guard([]() { fesetenv(FE_DFL_ENV); }); local 1002 auto guard local 1013 auto guard = android::base::make_scope_guard([]() { fesetenv(FE_DFL_ENV); }); local [all...] |
H A D | dlfcn_test.cpp | 357 auto guard = android::base::make_scope_guard([&]() { dlclose(handle); }); local 1011 auto guard = android::base::make_scope_guard([&]() { dlclose(handle); }); local 1032 auto guard = android::base::make_scope_guard([&]() { dlclose(handle); }); local
|
H A D | unistd_test.cpp | 999 auto guard = android::base::make_scope_guard([&rl, original_rlim_cur]() { local
|
H A D | pthread_test.cpp | 667 // Get the default guard size. 1325 // Check that we correctly report that the main thread has no guard page. 1328 ASSERT_EQ(0U, guard_size); // The main thread has no guard page. 1366 auto guard = android::base::make_scope_guard([&rl, original_rlim_cur]() { local 2117 // Creating a thread uses at least six VMAs: the stack, the TLS, and a guard each side of both.
|
/bionic/libc/kernel/uapi/linux/ |
H A D | bsg.h | 29 __s32 guard; member in struct:sg_io_v4
|
/bionic/libc/malloc_debug/ |
H A D | malloc_debug.cpp | 152 uint8_t* guard = g_debug->GetFrontGuard(header); local 153 memset(guard, g_debug->config().front_guard_value(), g_debug->config().front_guard_bytes()); 157 uint8_t* guard = g_debug->GetRearGuard(header); local 158 memset(guard, g_debug->config().rear_guard_value(), g_debug->config().rear_guard_bytes()); 159 // If the rear guard is enabled, set the usable size to the exact size 545 // change the header usable_size and reset the rear guard.
|
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/ |
H A D | bsg.h | 29 __s32 guard; member in struct:sg_io_v4
|
/bionic/linker/ |
H A D | linker_main.cpp | 212 ProtectedDataGuard guard; local
|
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/ |
H A D | bsg.h | 29 __s32 guard; member in struct:sg_io_v4
|
Completed in 632 milliseconds