Searched refs:linep (Results 1 - 12 of 12) sorted by relevance

/external/elfutils/src/libdw/
H A Ddwarf_lineno.c38 dwarf_lineno (Dwarf_Line *line, int *linep) argument
43 *linep = line->line;
H A Ddwarf_decl_line.c41 dwarf_decl_line (Dwarf_Die *func, int *linep) argument
43 return __libdw_attr_intval (func, linep, DW_AT_decl_line);
50 __libdw_attr_intval (Dwarf_Die *die, int *linep, int attval) argument
66 *linep = line;
H A Ddwarf_getsrclines.c83 const unsigned char *linep, const unsigned char *lineendp,
98 if (unlikely (linep + 4 > lineendp))
105 Dwarf_Word unit_length = read_4ubyte_unaligned_inc (dbg, linep);
109 if (unlikely (linep + 8 > lineendp))
111 unit_length = read_8ubyte_unaligned_inc (dbg, linep);
116 if (unlikely (unit_length > (size_t) (lineendp - linep)
119 lineendp = linep + unit_length;
122 uint_fast16_t version = read_2ubyte_unaligned_inc (dbg, linep);
132 header_length = read_4ubyte_unaligned_inc (dbg, linep);
134 header_length = read_8ubyte_unaligned_inc (dbg, linep);
82 read_srclines(Dwarf *dbg, const unsigned char *linep, const unsigned char *lineendp, const char *comp_dir, unsigned address_size, Dwarf_Lines **linesp, Dwarf_Files **filesp) argument
798 const unsigned char *linep = data->d_buf + debug_line_offset; local
[all...]
H A Dlibdw.h619 extern int dwarf_lineno (Dwarf_Line *line, int *linep)
824 extern int dwarf_decl_line (Dwarf_Die *decl, int *linep)
/external/toybox/lib/
H A Dportability.c21 ssize_t getdelim(char **linep, size_t *np, int delim, FILE *stream) argument
29 if (!linep || !np) {
34 if (*linep == NULL || *np == 0) {
36 *linep = calloc(1, *np);
37 if (*linep == NULL) return -1;
39 line = *linep;
45 new_line = realloc(*linep, new_len);
48 line = *linep = new_line;
59 new_line = realloc(*linep, new_len);
62 line = *linep
69 getline(char **linep, size_t *np, FILE *stream) argument
[all...]
/external/elfutils/src/libdwfl/
H A Ddwfl_lineinfo.c33 dwfl_lineinfo (Dwfl_Line *line, Dwarf_Addr *addr, int *linep, int *colp, argument
44 if (linep != NULL)
45 *linep = info->line;
H A Dlibdwfl.h594 int *linep, int *colp,
/external/ppp/pppd/
H A Dutils.c523 static char *linep; /* current pointer within line */ variable
531 linep = line;
534 linep = line + strlen(line);
542 if (linep != line) {
543 *linep = 0;
574 if (linep != line) {
576 if (linep + l < line + sizeof(line)) {
578 memcpy(linep, buf, l);
579 linep += l;
586 *linep
[all...]
/external/iproute2/lib/
H A Dutils.c711 ssize_t getcmdline(char **linep, size_t *lenp, FILE *in) argument
716 if ((cc = getline(linep, lenp, in)) < 0)
720 cp = strchr(*linep, '#');
724 while ((cp = strstr(*linep, "\\\n")) != NULL) {
741 *lenp = strlen(*linep) + strlen(line1) + 1;
742 *linep = realloc(*linep, *lenp);
743 if (!*linep) {
749 strcat(*linep, line1);
/external/elfutils/src/src/
H A Dreadelf.c6380 const unsigned char *linep = (const unsigned char *) data->d_buf; local
6383 while (linep
6386 size_t start_offset = linep - (const unsigned char *) data->d_buf;
6390 if (unlikely (linep + 4 > lineendp))
6392 Dwarf_Word unit_length = read_4ubyte_unaligned_inc (dbg, linep);
6396 if (unlikely (linep + 8 > lineendp))
6403 unit_length = read_8ubyte_unaligned_inc (dbg, linep);
6408 if (unlikely (unit_length > (size_t) (lineendp - linep)
6411 lineendp = linep + unit_length;
6414 uint_fast16_t version = read_2ubyte_unaligned_inc (dbg, linep);
[all...]
/external/elfutils/include/elfutils/
H A Dlibdw.h619 extern int dwarf_lineno (Dwarf_Line *line, int *linep)
824 extern int dwarf_decl_line (Dwarf_Die *decl, int *linep)
H A Dlibdwfl.h594 int *linep, int *colp,

Completed in 1701 milliseconds