Lines Matching refs:line
45 static size_t read_objdump_chunk(const char **line, unsigned char **buf,
56 c1 = *(*line)++;
59 c2 = *(*line)++;
70 if (isspace(**line))
98 static size_t read_objdump_line(const char *line, unsigned char *buf,
105 p = strchr(line, ':');
129 char *line = NULL;
139 ret = getline(&line, &line_len, f);
149 read_bytes = read_objdump_line(line, tmp, sizeof(tmp));
153 if (sscanf(line, "%"PRIx64, &addr) != 1)
162 * to address on current objdump line */
174 free(line);