Home | History | Annotate | Download | only in interception

Lines Matching refs:INTERCEPTOR

24 // These typedefs should be used only in the interceptor definitions to replace
33 // How to add an interceptor:
37 // 1) define INTERCEPTOR(int, foo, const char *bar, double baz) { ... } in
43 // By default, REAL(foo) will be visible only inside your interceptor, and if
48 // INTERCEPTOR(..., foo, ...) are in different files, you'll instead need to:
52 // Notes: 1. Things may not work properly if macro INTERCEPTOR(...) {...} or
57 // INTERCEPTOR(int, foo, const char *bar, double baz) {...}
156 // Generally, you don't need to use DEFINE_REAL by itself, as INTERCEPTOR
158 // without defining INTERCEPTOR(..., foo, ...). For example, if you override
159 // foo with an interceptor for other function.
171 #define INTERCEPTOR(ret_type, func, ...) \
178 #define INTERCEPTOR(ret_type, func, ...) \