Home
last modified time | relevance | path

Searched refs:__stack_chk_guard (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/kernel/
Dxip.c15 extern Z_THREAD_LOCAL volatile uintptr_t __stack_chk_guard;
17 extern volatile uintptr_t __stack_chk_guard;
59 uintptr_t guard_copy = __stack_chk_guard; in z_data_copy()
64 guard_copy = __stack_chk_guard; in z_data_copy()
69 __stack_chk_guard = guard_copy; in z_data_copy()
Dcompiler_stack_protect.c51 Z_THREAD_LOCAL volatile uintptr_t __stack_chk_guard; variable
53 K_APP_DMEM(z_libc_partition) volatile uintptr_t __stack_chk_guard;
55 __noinit volatile uintptr_t __stack_chk_guard;
Dinit.c294 extern Z_THREAD_LOCAL volatile uintptr_t __stack_chk_guard;
296 extern volatile uintptr_t __stack_chk_guard;
785 __stack_chk_guard = stack_guard; in z_cstart()
786 __stack_chk_guard <<= 8; in z_cstart()
/Zephyr-latest/lib/os/
Dthread_entry.c22 extern Z_THREAD_LOCAL volatile uintptr_t __stack_chk_guard;
45 __stack_chk_guard = stack_guard; in z_thread_entry()
46 __stack_chk_guard <<= 8; in z_thread_entry()
/Zephyr-latest/tests/kernel/mem_protect/stackprot/src/
Dmain.c147 extern Z_THREAD_LOCAL volatile uintptr_t __stack_chk_guard;
149 extern volatile uintptr_t __stack_chk_guard;
166 zassert_false(__stack_chk_guard == (uintptr_t)arg1); in alternate_thread_canary()
168 zassert_true(__stack_chk_guard == (uintptr_t)arg1); in alternate_thread_canary()
185 (void *)__stack_chk_guard, NULL, NULL, in ZTEST()