Lines Matching defs:REAL
46 // You can access original function by calling REAL(foo)(bar, baz).
47 // By default, REAL(foo) will be visible only inside your interceptor, and if
73 // with same names in our library and then obtain the real function pointers
164 # define REAL(x) __unsanitized_##x
167 # define REAL(x) __real_ ## x
169 extern "C" ret_type REAL(func)(__VA_ARGS__);
172 # define REAL(x) __interception::PTR_TO_REAL(x)
180 # define ASSIGN_REAL(dst, src) REAL(dst) = REAL(src)
182 # define REAL(x) x
197 // macros does its job. In exceptional cases you may need to call REAL(foo)