Searched refs:oucp (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/lib/libc/sys/
H A Dswapcontext.c48 swapcontext(ucontext_t *oucp, const ucontext_t *ucp) argument
52 __libc_interposing[INTERPOS_swapcontext])(oucp, ucp));
/freebsd-11-stable/sys/kern/
H A Dkern_context.c57 struct __ucontext *oucp; member in struct:swapcontext_args
109 if (uap->oucp == NULL || uap->ucp == NULL)
118 ret = copyout(&uc, uap->oucp, UC_COPY_SIZE);
H A Dsystrace_args.c2289 uarg[0] = (intptr_t) p->oucp; /* struct __ucontext * */
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_mac.cpp410 TSAN_INTERCEPTOR(int, swapcontext, ucontext_t *oucp, const ucontext_t *ucp) { argument
412 SCOPED_INTERCEPTOR_RAW(swapcontext, oucp, ucp);
416 if (!oucp || !ucp) {
422 oucp->uc_onstack &= ~UCF_SWAPPED;
424 int ret = getcontext(oucp);
425 if (!(oucp->uc_onstack & UCF_SWAPPED)) {
428 oucp->uc_onstack |= UCF_SWAPPED;
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_sig.c747 __thr_swapcontext(ucontext_t *oucp, const ucontext_t *ucp) argument
751 if (oucp == NULL || ucp == NULL) {
760 return (__sys_swapcontext(oucp, ucp));
H A Dthr_private.h892 int __sys_swapcontext(ucontext_t *oucp, const ucontext_t *ucp);
993 int __thr_swapcontext(ucontext_t *oucp, const ucontext_t *ucp);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_interceptors.cpp269 INTERCEPTOR(int, swapcontext, struct ucontext_t *oucp, argument
287 int res = real_swapcontext(oucp, ucp);
289 int res = REAL(swapcontext)(oucp, ucp);
292 // "oucp" later, that would look as if swapcontext() returned 0.
/freebsd-11-stable/sys/mips/mips/
H A Dfreebsd32_machdep.c330 if (uap->oucp == NULL || uap->ucp == NULL)
338 ret = copyout(&uc, uap->oucp, UC32_COPY_SIZE);
/freebsd-11-stable/sys/powerpc/powerpc/
H A Dexec_machdep.c841 if (uap->oucp == NULL || uap->ucp == NULL)
849 ret = copyout(&uc, uap->oucp, UC32_COPY_SIZE);
/freebsd-11-stable/sys/amd64/ia32/
H A Dia32_signal.c301 if (uap->oucp == NULL || uap->ucp == NULL)
309 ret = copyout(&uc, uap->oucp, UC_COPY_SIZE);
/freebsd-11-stable/sys/compat/freebsd32/
H A Dfreebsd32_proto.h368 char oucp_l_[PADL_(struct freebsd32_ucontext *)]; struct freebsd32_ucontext * oucp; char oucp_r_[PADR_(struct freebsd32_ucontext *)]; member in struct:freebsd32_swapcontext_args
H A Dfreebsd32_systrace_args.c2143 uarg[0] = (intptr_t) p->oucp; /* struct freebsd32_ucontext * */
/freebsd-11-stable/sys/sys/
H A Dsysproto.h1214 char oucp_l_[PADL_(struct __ucontext *)]; struct __ucontext * oucp; char oucp_r_[PADR_(struct __ucontext *)]; member in struct:swapcontext_args

Completed in 223 milliseconds