Lines Matching refs:dashes
587 char *dashes; in read_data_file() local
601 dashes = strstr(line, "---"); in read_data_file()
602 if (dashes) { in read_data_file()
621 new_ring_name = malloc(dashes - line); in read_data_file()
622 strncpy(new_ring_name, line, dashes - line); in read_data_file()
623 new_ring_name[dashes - line - 1] = '\0'; in read_data_file()
635 dashes += 4; in read_data_file()
639 if (strncasecmp(dashes, b->match, in read_data_file()
643 dashes = strchr(dashes, '='); in read_data_file()
644 if (!dashes) in read_data_file()
647 matched = sscanf(dashes, "= 0x%08x %08x\n", in read_data_file()