Home | History | Annotate | Download | only in sanitizer_common

Lines Matching refs:function

17 static const char *StripFunctionName(const char *function, const char *prefix) {
18 if (function == 0) return 0;
19 if (prefix == 0) return function;
21 if (0 == internal_strncmp(function, prefix, prefix_len))
22 return function + prefix_len;
23 return function;
57 buffer->append("%s", StripFunctionName(info.function, strip_func_prefix));
75 // Function name and offset, if file is unknown.
76 if (info.function) {
78 StripFunctionName(info.function, strip_func_prefix));