Lines Matching defs:INTERCEPTOR
51 // 1) define INTERCEPTOR(int, foo, const char *bar, double baz) { ... } in
63 // INTERCEPTOR(..., foo, ...) are in different files, you'll instead need to:
67 // Notes: 1. Things may not work properly if macro INTERCEPTOR(...) {...} or
72 // INTERCEPTOR(int, foo, const char *bar, double baz) {...}
288 // Generally, you don't need to use DEFINE_REAL by itself, as INTERCEPTOR
290 // without defining INTERCEPTOR(..., foo, ...). For example, if you override
307 #define INTERCEPTOR(ret_type, func, ...) \
314 #define INTERCEPTOR(ret_type, func, ...) \
321 INTERCEPTOR(ret_type, func, __VA_ARGS__)
331 #define INTERCEPTOR(ret_type, func, ...) \