Home | History | Annotate | Download | only in esan

Lines Matching refs:oldset

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