Lines Matching full:real
19 #define REAL(x) __interception::PTR_TO_REAL(x) macro
38 // want the address of the real definition, though, so look it up using in getFuncAddr()
154 int result = REAL(bcmp)(s1, s2, n); in DEFINE_REAL()
162 int result = REAL(memcmp)(s1, s2, n); in memcmp()
170 int result = REAL(strncmp)(s1, s2, n); in strncmp()
178 int result = REAL(strcmp)(s1, s2); in strcmp()
185 int result = REAL(strncasecmp)(s1, s2, n); in strncasecmp()
192 int result = REAL(strcasecmp)(s1, s2); in strcasecmp()
200 char *result = REAL(strstr)(s1, s2); in strstr()
207 char *result = REAL(strcasestr)(s1, s2); in strcasestr()
215 void *result = REAL(memmem)(s1, len1, s2, len2); in memmem()
231 REAL(bcmp) = reinterpret_cast<memcmp_type>( in fuzzerInit()
233 REAL(memcmp) = reinterpret_cast<memcmp_type>( in fuzzerInit()
235 REAL(strncmp) = reinterpret_cast<strncmp_type>( in fuzzerInit()
237 REAL(strcmp) = reinterpret_cast<strcmp_type>( in fuzzerInit()
239 REAL(strncasecmp) = reinterpret_cast<strncasecmp_type>( in fuzzerInit()
241 REAL(strcasecmp) = reinterpret_cast<strcasecmp_type>( in fuzzerInit()
243 REAL(strstr) = reinterpret_cast<strstr_type>( in fuzzerInit()
245 REAL(strcasestr) = reinterpret_cast<strcasestr_type>( in fuzzerInit()
247 REAL(memmem) = reinterpret_cast<memmem_type>( in fuzzerInit()