Lines Matching refs:line
53 static size_t read_objdump_chunk(const char **line, unsigned char **buf,
64 c1 = *(*line)++;
67 c2 = *(*line)++;
78 if (isspace(**line))
106 static size_t read_objdump_line(const char *line, unsigned char *buf,
113 p = strchr(line, ':');
137 char *line = NULL;
147 ret = getline(&line, &line_len, f);
157 read_bytes = read_objdump_line(line, tmp, sizeof(tmp));
161 if (sscanf(line, "%"PRIx64, &addr) != 1)
170 * to address on current objdump line */
182 free(line);