Home | History | Annotate | Download | only in asan

Lines Matching refs:stack

39 // that no extra frames are created, and stack trace contains
48 ReportStringFunctionSizeOverflow(__offset, __size, &stack); \
73 offset2, length2, &stack); \
187 CreateThreadContextArgs args = { t, &stack };
236 static void ClearShadowMemoryForContextStack(uptr stack, uptr ssize) {
239 uptr bottom = stack & ~(PageSize - 1);
240 ssize += stack - bottom;
256 // Clear shadow memory for new context (it may share stack
258 uptr stack, ssize;
259 ReadContextStack(ucp, &stack, &ssize);
260 ClearShadowMemoryForContextStack(stack, ssize);
266 ClearShadowMemoryForContextStack(stack, ssize);
526 void *new_mem = asan_malloc(length + 1, &stack);
721 CreateThreadContextArgs args = { t, &stack };