Home
last modified time | relevance | path

Searched full:intercept (Results 1 – 25 of 149) sorted by relevance

123456

/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_s390x.S14 .macro intercept symbol, real macro
44 intercept setjmp, _ZN14__interception11real_setjmpE
45 intercept _setjmp, _ZN14__interception12real__setjmpE
46 intercept sigsetjmp, _ZN14__interception14real_sigsetjmpE
47 intercept __sigsetjmp, _ZN14__interception16real___sigsetjmpE
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerFlags.def147 FUZZER_FLAG_INT(handle_segv, 1, "If 1, try to intercept SIGSEGV.")
148 FUZZER_FLAG_INT(handle_bus, 1, "If 1, try to intercept SIGBUS.")
149 FUZZER_FLAG_INT(handle_abrt, 1, "If 1, try to intercept SIGABRT.")
150 FUZZER_FLAG_INT(handle_ill, 1, "If 1, try to intercept SIGILL.")
151 FUZZER_FLAG_INT(handle_fpe, 1, "If 1, try to intercept SIGFPE.")
152 FUZZER_FLAG_INT(handle_int, 1, "If 1, try to intercept SIGINT.")
153 FUZZER_FLAG_INT(handle_term, 1, "If 1, try to intercept SIGTERM.")
154 FUZZER_FLAG_INT(handle_xfsz, 1, "If 1, try to intercept SIGXFSZ.")
155 FUZZER_FLAG_INT(handle_usr1, 1, "If 1, try to intercept SIGUSR1.")
156 FUZZER_FLAG_INT(handle_usr2, 1, "If 1, try to intercept SIGUSR
[all...]
H A DFuzzerInterceptors.cpp8 // Intercept certain libc functions to aid fuzzing.
37 // intercept, which means that we cannot intercept this function. We still in getFuncAddr()
43 // We don't want to intercept the wrapper and have it point to itself. in getFuncAddr()
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_interceptors.h46 VReport(1, "MemProfiler: failed to intercept '%s'\n'", #name); \
51 VReport(1, "MemProfiler: failed to intercept '%s@@%s'\n", #name, ver); \
56 VReport(1, "MemProfiler: failed to intercept '%s@@%s' or '%s'\n", #name, \
H A Dmemprof_interceptors.cpp11 // Intercept various libc functions.
317 // Intercept str* functions. in InitializeMemprofInterceptors()
332 // Intercept threading-related functions in InitializeMemprofInterceptors()
H A DREADME.txt11 lib/interception/ : Machinery used to intercept function calls.
/freebsd/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_linux.cpp46 // intercept, which means that we cannot intercept this function. We still in GetFuncAddr()
52 // We don't want to intercept the wrapper and have it point to itself. in GetFuncAddr()
H A Dinterception.h68 // for more details). To intercept such functions you need to use the
78 // There is one complication: a user may also intercept some of the functions we
79 // intercept. To allow for up to 3 interceptors (including ours) of a given
/freebsd/sys/amd64/vmm/amd/
H A Dsvm.c90 #define AMD_CPUID_SVM_PAUSE_INC BIT(10) /* Pause intercept filter. */
396 KASSERT(idx >=0 && idx < 5, ("invalid intercept index %d", idx)); in svm_get_intercept()
399 return (ctrl->intercept[idx] & bitmask ? 1 : 0); in svm_get_intercept()
408 KASSERT(idx >=0 && idx < 5, ("invalid intercept index %d", idx)); in svm_set_intercept()
411 oldval = ctrl->intercept[idx]; in svm_set_intercept()
414 ctrl->intercept[idx] |= bitmask; in svm_set_intercept()
416 ctrl->intercept[idx] &= ~bitmask; in svm_set_intercept()
418 if (ctrl->intercept[idx] != oldval) { in svm_set_intercept()
420 SVM_CTR3(vcpu, "intercept[%d] modified from %#x to %#x", idx, in svm_set_intercept()
421 oldval, ctrl->intercept[idx]); in svm_set_intercept()
[all …]
H A Dvmcb.h39 /* vmcb_ctrl->intercept[] array indices */
46 /* intercept[VMCB_CTRL1_INTCPT] fields */
80 /* intercept[VMCB_CTRL2_INTCPT] fields */
104 #define VMCB_CACHE_I BIT(0) /* Intercept, TSC off, Pause filter */
253 * control bits including the intercept vector and the second one contains
259 uint32_t intercept[5]; /* all intercepts */ member
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_interceptors.cpp11 // Intercept various libc functions.
357 // different external name, so we intercept that.
576 // we want to intercept that. push/pop_macro are used to avoid problems
778 // Intercept str* functions.
823 // Intercept exception handling functions.
830 // Indirectly intercept std::rethrow_exception.
834 // Indirectly intercept std::rethrow_exception.
839 // Intercept threading-related functions
860 // Intercept atexit function.
H A DREADME.txt14 lib/interception/ : Machinery used to intercept function calls.
/freebsd/contrib/ntp/html/
H A Ddiscipline.html24 … phase-lock loop (PLL), which is used at poll intervals below the Allan intercept, by default 2048…
37intercept</em>, which represents the optimum time constant. With a compromise Allan intercept of …
/freebsd/sys/dev/netmap/
H A Dnetmap_freebsd.c341 * Intercept the rx routine in the standard device driver.
342 * Second argument is non-zero to intercept, 0 to restore
345 nm_os_catch_rx(struct netmap_generic_adapter *gna, int intercept) in nm_os_catch_rx() argument
352 if (intercept) { in nm_os_catch_rx()
366 * Intercept the packet steering routine in the tx path,
368 * Second argument is non-zero to intercept, 0 to restore.
369 * On freebsd we just intercept if_transmit.
372 nm_os_catch_tx(struct netmap_generic_adapter *gna, int intercept) in nm_os_catch_tx() argument
378 if (intercept) { in nm_os_catch_tx()
947 * the standard cdev_pager and intercept the constructor and
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/
H A Drtsan_interceptors.cpp71 // TODO Establish whether we should intercept here if the flag contains in INTERCEPTOR()
85 // TODO Establish whether we should intercept here if the flag contains in INTERCEPTOR()
99 // TODO Establish whether we should intercept here if the flag contains in INTERCEPTOR()
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_fuchsia.cpp51 // On Fuchsia, we can intercept _Exit gracefully, and return a failing exit
163 // _Exit calls this directly to intercept and change the status value. in __sanitizer_process_exit_hook()
/freebsd/share/man/man4/
H A Dsiftr.4711 to intercept packets.
727 should intercept packets after they have been processed by the TCP layer i.e.
728 intercept packets coming up the stack after they have been processed by
730 and intercept packets coming down the stack after they have been
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_interceptors.cpp54 VReport(1, "HWAddressSanitizer: failed to intercept '%s'\n", #name); \
59 VReport(1, "HWAddressSanitizer: failed to intercept '%s@@%s'\n", \
66 1, "HWAddressSanitizer: failed to intercept '%s@@%s' or '%s'\n", \
481 // _setjmp on start_thread. Hence we have to intercept the longjmp on
/freebsd/contrib/ntp/ntpd/
H A Dntp_loopfilter.c46 #define CLOCK_ALLAN 11 /* Allan intercept (log2 s) */
115 u_char allan_xpt = CLOCK_ALLAN; /* Allan intercept (log2 s) */
704 * intercept. The PLL is always used, but in local_clock()
705 * becomes ineffective above the Allan intercept in local_clock()
717 * intercept. This reduces the PLL gain when the in local_clock()
965 * above the Allan intercept. Note the reduced time constant at in adj_host_clock()
1321 case LOOP_ALLAN: /* Allan intercept (log2) (allan) */ in loop_config()
/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dstdlib.h1 /*===---- openmp_wrapper/stdlib.h ------ OpenMP math.h intercept ----- c++ -===
/freebsd/crypto/openssh/openbsd-compat/
H A Dexplicit_bzero.c50 * clang -fsanitize=memory needs to intercept memset-like functions in explicit_bzero()
/freebsd/contrib/libfido2/openbsd-compat/
H A Dexplicit_bzero.c42 * clang -fsanitize=memory needs to intercept memset-like functions in explicit_bzero()
/freebsd/contrib/tcp_wrappers/
H A Dscaffold.c210 /* dummy function to intercept the real shell_cmd() */
220 /* dummy function to intercept the real clean_exit() */
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest-spi.h50 // failure is reported. It can either intercept only failures that are
51 // generated in the same thread that created this object or it can intercept
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dvadefs.h35 * we have to intercept those names too.

123456