Lines Matching refs:range
1032 * Show line-range always requires debuginfo to find source file and
1048 /* Search a line range */
1328 * Stuff 'lr' according to the line range described by 'arg'.
1329 * The line range syntax is described by:
1336 char *range, *file, *name = strdup(arg);
1345 range = strchr(name, ':');
1346 if (range) {
1347 *range++ = '\0';
1349 err = parse_line_num(&range, &lr->start, "start line");
1353 if (*range == '+' || *range == '-') {
1354 const char c = *range++;
1356 err = parse_line_num(&range, &lr->end, "end line");
1372 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
1380 if (*range != '\0') {
1381 semantic_error("Tailing with invalid str '%s'.\n", range);
3253 /* For kprobe, check range */