Lines Matching refs:range
1004 * Show line-range always requires debuginfo to find source file and
1020 /* Search a line range */
1300 * Stuff 'lr' according to the line range described by 'arg'.
1301 * The line range syntax is described by:
1308 char *range, *file, *name = strdup(arg);
1317 range = strchr(name, ':');
1318 if (range) {
1319 *range++ = '\0';
1321 err = parse_line_num(&range, &lr->start, "start line");
1325 if (*range == '+' || *range == '-') {
1326 const char c = *range++;
1328 err = parse_line_num(&range, &lr->end, "end line");
1344 pr_debug("Line range is %d to %d\n", lr->start, lr->end);
1352 if (*range != '\0') {
1353 semantic_error("Tailing with invalid str '%s'.\n", range);
3183 /* For kprobe, check range */