Lines Matching refs:oldset
428 __sanitizer_sigset_t *oldset) { in INTERCEPTOR() argument
430 COMMON_INTERCEPTOR_ENTER(ctx, sigprocmask, how, set, oldset); in INTERCEPTOR()
432 if (processSigprocmask(how, set, oldset)) in INTERCEPTOR()
433 res = REAL(sigprocmask)(how, set, oldset); in INTERCEPTOR()
434 if (!res && oldset) in INTERCEPTOR()
435 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, oldset, sizeof(*oldset)); in INTERCEPTOR()
445 __sanitizer_sigset_t *oldset) { in INTERCEPTOR() argument
447 COMMON_INTERCEPTOR_ENTER(ctx, pthread_sigmask, how, set, oldset); in INTERCEPTOR()
449 if (processSigprocmask(how, set, oldset)) in INTERCEPTOR()
450 res = REAL(sigprocmask)(how, set, oldset); in INTERCEPTOR()
451 if (!res && oldset) in INTERCEPTOR()
452 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, oldset, sizeof(*oldset)); in INTERCEPTOR()