Lines Matching refs:ret_type

388 #define INTERCEPTOR_STRTO_BODY(ret_type, func, ...) \
390 ret_type res = REAL(func)(__VA_ARGS__); \
394 #define INTERCEPTOR_STRTO(ret_type, func, char_type) \
395 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr) { \
396 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr); \
399 #define INTERCEPTOR_STRTO_BASE(ret_type, func, char_type) \
400 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr, \
402 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, base); \
405 #define INTERCEPTOR_STRTO_LOC(ret_type, func, char_type) \
406 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr, \
408 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, loc); \
411 #define INTERCEPTOR_STRTO_BASE_LOC(ret_type, func, char_type) \
412 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr, \
414 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, base, loc); \
418 #define INTERCEPTORS_STRTO(ret_type, func, char_type) \
419 INTERCEPTOR_STRTO(ret_type, func, char_type) \
420 INTERCEPTOR_STRTO_LOC(ret_type, func##_l, char_type)
422 #define INTERCEPTORS_STRTO_BASE(ret_type, func, char_type) \
423 INTERCEPTOR_STRTO_BASE(ret_type, func, char_type) \
424 INTERCEPTOR_STRTO_BASE_LOC(ret_type, func##_l, char_type)
427 #define INTERCEPTORS_STRTO(ret_type, func, char_type) \
428 INTERCEPTOR_STRTO(ret_type, func, char_type) \
429 INTERCEPTOR_STRTO_LOC(ret_type, func##_l, char_type) \
430 INTERCEPTOR_STRTO_LOC(ret_type, __##func##_l, char_type) \
431 INTERCEPTOR_STRTO_LOC(ret_type, __##func##_internal, char_type)
433 #define INTERCEPTORS_STRTO_BASE(ret_type, func, char_type) \
434 INTERCEPTOR_STRTO_BASE(ret_type, func, char_type) \
435 INTERCEPTOR_STRTO_BASE_LOC(ret_type, func##_l, char_type) \
436 INTERCEPTOR_STRTO_BASE_LOC(ret_type, __##func##_l, char_type) \
437 INTERCEPTOR_STRTO_BASE_LOC(ret_type, __##func##_internal, char_type)
489 #define INTERCEPTOR_STRFTIME_BODY(char_type, ret_type, func, s, ...) \
492 ret_type res = REAL(func)(s, __VA_ARGS__); \