Lines Matching refs:str1
2391 static unsigned int parse_percent_type(char *str1, char *str2) in parse_percent_type() argument
2395 if (!strcmp("period", str1)) { in parse_percent_type()
2402 if (!strcmp("hits", str1)) { in parse_percent_type()
2416 char *str1, *str2; in annotate_parse_percent_type() local
2419 str1 = strdup(_str); in annotate_parse_percent_type()
2420 if (!str1) in annotate_parse_percent_type()
2423 str2 = strchr(str1, '-'); in annotate_parse_percent_type()
2429 type = parse_percent_type(str1, str2); in annotate_parse_percent_type()
2431 type = parse_percent_type(str2, str1); in annotate_parse_percent_type()
2438 free(str1); in annotate_parse_percent_type()