Lines Matching refs:line

70 			phpdbg_list_file(file, param->file.line, 0, 0);  in PHPDBG_LIST()
132 uint32_t line, lastline; in phpdbg_list_file() local
151 for (line = offset; line < lastline;) { in phpdbg_list_file()
152 uint32_t linestart = data->line[line++]; in phpdbg_list_file()
153 uint32_t linelen = data->line[line] - linestart; in phpdbg_list_file()
157 phpdbg_write(" %05u: %.*s", line, linelen, buffer); in phpdbg_list_file()
159 if (highlight != line) { in phpdbg_list_file()
160 phpdbg_write(" %05u: %.*s", line, linelen, buffer); in phpdbg_list_file()
162 phpdbg_write(">%05u: %.*s", line, linelen, buffer); in phpdbg_list_file()
232 uint32_t line; in phpdbg_compile_file() local
257 data.line[0] = 0; in phpdbg_compile_file()
260 for (line = 0, bufptr = data.buf - 1, endptr = data.buf + data.len; ++bufptr < endptr;) { in phpdbg_compile_file()
262 dataptr->line[++line] = (uint32_t)(bufptr - data.buf) + 1; in phpdbg_compile_file()
266 dataptr->lines = ++line; in phpdbg_compile_file()
267 dataptr = erealloc(dataptr, sizeof(phpdbg_file_source) + sizeof(uint32_t) * line); in phpdbg_compile_file()
268 dataptr->line[line] = endptr - data.buf; in phpdbg_compile_file()
316 uint32_t line; in phpdbg_compile_string() local
326 dataptr->line[0] = 0; in phpdbg_compile_string()
327 …for (line = 0, bufptr = dataptr->buf - 1, endptr = dataptr->buf + dataptr->len; ++bufptr < endptr;… in phpdbg_compile_string()
329 dataptr->line[++line] = (uint32_t)(bufptr - dataptr->buf) + 1; in phpdbg_compile_string()
332 dataptr->lines = ++line; in phpdbg_compile_string()
333 dataptr->line[line] = endptr - dataptr->buf; in phpdbg_compile_string()
345 dataptr = erealloc(dataptr, sizeof(phpdbg_file_source) + sizeof(uint32_t) * line); in phpdbg_compile_string()