Home | History | Annotate | Download | only in msan

Lines Matching refs:ret_type

350 #define INTERCEPTOR_STRTO_BODY(ret_type, func, ...) \
352 ret_type res = REAL(func)(__VA_ARGS__); \
358 #define INTERCEPTOR_STRTO(ret_type, func) \
359 INTERCEPTOR(ret_type, func, const char *nptr, char **endptr) { \
360 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr); \
363 #define INTERCEPTOR_STRTO_BASE(ret_type, func) \
364 INTERCEPTOR(ret_type, func, const char *nptr, char **endptr, int base) { \
365 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, base); \
368 #define INTERCEPTOR_STRTO_LOC(ret_type, func) \
369 INTERCEPTOR(ret_type, func, const char *nptr, char **endptr, void *loc) { \
370 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, loc); \
373 #define INTERCEPTOR_STRTO_BASE_LOC(ret_type, func) \
374 INTERCEPTOR(ret_type, func, const char *nptr, char **endptr, int base, \
376 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, base, loc); \
444 #define INTERCEPTOR_STRFTIME_BODY(char_type, ret_type, func, s, ...) \
446 ret_type res = REAL(func)(s, __VA_ARGS__); \