Searched refs:func (Results 1 - 25 of 1388) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_mac.h23 #define INTERCEPT_FUNCTION_MAC(func)
24 #define INTERCEPT_FUNCTION_VER_MAC(func, symver)
H A Dinterception_linux.h25 bool InterceptFunction(const char *name, uptr *ptr_to_real, uptr func,
28 uptr func, uptr wrapper);
31 #define INTERCEPT_FUNCTION_LINUX_OR_FREEBSD(func) \
33 #func, \
34 (::__interception::uptr *) & REAL(func), \
35 (::__interception::uptr) & (func), \
36 (::__interception::uptr) & WRAP(func))
40 #define INTERCEPT_FUNCTION_VER_LINUX_OR_FREEBSD(func, symver) \
42 #func, symver, \
43 (::__interception::uptr *) & REAL(func), \
[all...]
H A Dinterception.h123 # define DECLARE_WRAPPER(ret_type, func, ...)
129 # define DECLARE_WRAPPER(ret_type, func, ...) \
130 extern "C" ret_type func(__VA_ARGS__);
131 # define DECLARE_WRAPPER_WINAPI(ret_type, func, ...) \
132 extern "C" __declspec(dllimport) ret_type __stdcall func(__VA_ARGS__);
137 # define DECLARE_WRAPPER(ret_type, func, ...)
145 # define DECLARE_WRAPPER(ret_type, func, ...) \
146 extern "C" ret_type func(__VA_ARGS__) \
147 __attribute__((alias("__interceptor_" #func), visibility("default")));
152 # define DECLARE_WRAPPER(ret_type, func,
[all...]
H A Dinterception_win.h64 #define INTERCEPT_FUNCTION_WIN(func) \
65 ::__interception::OverrideFunction(#func, \
66 (::__interception::uptr)WRAP(func), \
67 (::__interception::uptr *)&REAL(func))
69 #define INTERCEPT_FUNCTION_WIN(func) \
70 ::__interception::OverrideFunction((::__interception::uptr)func, \
71 (::__interception::uptr)WRAP(func), \
72 (::__interception::uptr *)&REAL(func))
75 #define INTERCEPT_FUNCTION_VER_WIN(func, symver) INTERCEPT_FUNCTION_WIN(func)
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Drenormalize.d48 @func[execname] = count();
53 normalize(@func, (timestamp - start) / 1000000000);
54 printa(@func);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.denormalize.d50 @func[i % 5] = sum(i * 100);
57 normalize(@func, 5);
60 denormalize(@func);
61 printa(@func);
H A Dtst.cleardenormalize.d52 @func[i%5] = sum(i * 100);
60 denormalize(@func);
61 printa(@func);
63 clear(@func);
66 printa(@func);
74 denormalize(@func);
75 printa(@func);
H A Dtst.clearnormalize.d51 @func[i % 5] = sum(i * 100);
59 normalize(@func, 5);
60 printa(@func);
62 clear(@func);
65 printa(@func);
73 normalize(@func, 5);
74 printa(@func);
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dadd_et_list.c38 * Call func (probably a comerr-generated function) with a pointer to
42 * @param func The generated com_err et function.
52 void (*func)(struct et_list **))
54 (*func)(&context->et_list);
/freebsd-11-stable/lib/libc/arm/aeabi/
H A Daeabi_atexit.c34 __aeabi_atexit(void *object, void (*func)(void*), void *dso) argument
36 return __cxa_atexit(func, object, dso);
/freebsd-11-stable/usr.bin/mkuzip/
H A Dmkuzip.h29 #define DEFINE_RAW_METHOD(func, rval, args...) typedef rval (*func##_t)(args)
/freebsd-11-stable/sys/geom/uzip/
H A Dg_uzip.h35 #define DEFINE_RAW_METHOD(func, rval, args...) typedef rval (*func##_t)(args)
/freebsd-11-stable/contrib/libarchive/test_utils/
H A Dtest_utils.h32 void (*func)(void); member in struct:test_list_t
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/
H A Derr.D_PRAGMA_UNUSED.UnusedPragma.d37 void func(int, int);
40 #pragma D attributes Stable/Stable/Common func;
/freebsd-11-stable/sys/dev/sound/
H A Dchip.h45 int func; /* The function code. */ member in struct:sndcard_func
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.h33 #define SCOPED_INTERCEPTOR_RAW(func, ...) \
37 ScopedInterceptor si(thr, #func, caller_pc); \
42 #define SCOPED_TSAN_INTERCEPTOR(func, ...) \
43 SCOPED_INTERCEPTOR_RAW(func, __VA_ARGS__); \
44 if (REAL(func) == 0) { \
45 Report("FATAL: ThreadSanitizer: failed to intercept %s\n", #func); \
49 return REAL(func)(__VA_ARGS__); \
58 #define TSAN_INTERCEPTOR(ret, func, ...) INTERCEPTOR(ret, func, __VA_ARGS__)
61 # define TSAN_INTERCEPTOR_NETBSD_ALIAS(ret, func,
[all...]
/freebsd-11-stable/contrib/netbsd-tests/fs/common/
H A Dh_fsmacros.h106 #define ATF_TC_FSADD(fs,type,func,desc) \
107 ATF_TC(fs##_##func); \
108 ATF_TC_HEAD(fs##_##func,tc) \
114 void *fs##func##tmp; \
116 ATF_TC_BODY(fs##_##func,tc) \
120 FSTEST_CONSTRUCTOR(tc,fs,fs##func##tmp); \
121 func(tc,FSTEST_MNTNAME); \
156 #define ATF_TP_FSADD(fs,func) \
157 ATF_TP_ADD_TC(tp,fs##_##func)
159 #define ATF_TC_FSAPPLY_NOZFS(func,des
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/
H A Dtst.FunctionLookup.c40 f2(f func, int i) argument
42 func(i);
/freebsd-11-stable/lib/libstdthreads/
H A Dcall_once.c37 call_once(once_flag *flag, void (*func)(void)) argument
40 (void)pthread_once((pthread_once_t *)flag, func);
/freebsd-11-stable/lib/libcasper/libcasper/
H A Dzygote.h39 int zygote_clone(zygote_func_t *func, int *chanfdp, int *procfdp);
/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A Duse_window.c38 use_window(WINDOW *win, NCURSES_WINDOW_CB func, void *data) argument
42 T((T_CALLED("use_window(%p,%p,%p)"), (void *) win, func, data));
44 code = func(win, data);
/freebsd-11-stable/lib/libc/gen/
H A Dassert.c41 __assert(const char *func, const char *file, int line, const char *failedexpr) argument
43 if (func == NULL)
50 failedexpr, func, file, line);
/freebsd-11-stable/usr.bin/getconf/
H A Dgetconf.h44 void foreach_confstr(void (*func)(const char *, int));
45 void foreach_pathconf(void (*func)(const char *, int, const char *),
47 void foreach_sysconf(void (*func)(const char *, int));
/freebsd-11-stable/stand/libsa/
H A Dassert.c35 __assert(const char *func, const char *file, int line, const char *expression) argument
37 if (func == NULL)
43 expression, func, file, line);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DModelConsumer.cpp35 const FunctionDecl *func = llvm::dyn_cast<FunctionDecl>(*I); local
36 if (func && func->hasBody()) {
37 Bodies.insert(std::make_pair(func->getName(), func->getBody()));

Completed in 141 milliseconds

1234567891011>>