HomeSort by relevance Sort by last modified time
    Searched defs:linep (Results 1 - 6 of 6) sorted by null

  /external/elfutils/libdw/
dwarf_getsrclines.c 96 uint8_t *linep = dbg->sectiondata[IDX_debug_line]->d_buf + offset; local
106 if (unlikely (linep + 4 > lineendp))
112 Dwarf_Word unit_length = read_4ubyte_unaligned_inc (dbg, linep);
116 if (unlikely (linep + 8 > lineendp))
118 unit_length = read_8ubyte_unaligned_inc (dbg, linep);
124 || unlikely (linep + unit_length > lineendp))
126 lineendp = linep + unit_length;
129 uint_fast16_t version = read_2ubyte_unaligned_inc (dbg, linep);
139 header_length = read_4ubyte_unaligned_inc (dbg, linep);
141 header_length = read_8ubyte_unaligned_inc (dbg, linep);
    [all...]
  /system/core/nexus/
WifiController.cpp 501 char *linep; local
510 while((linep = strtok_r(NULL, "\n", &linep_next)))
511 mLatestScanResults->push_back(new ScanResult(linep));
Supplicant.cpp 177 char *linep; local
193 while((linep = strtok_r(NULL, "\n", &linep_next))) {
196 WifiNetwork *new_wn = new WifiNetwork(mController, this, linep);
  /system/extras/tests/lib/testUtil/
testUtil.c 326 char *linep = line; local
330 if (linep != line) {
333 linep = line;
334 rv = snprintf(linep, ALEN(line) - (linep - line),
337 linep += rv;
344 assert((ALEN(line) - 4) >= (linep - line));
345 rv = snprintf(linep, ALEN(line) - (linep - line),
347 linep += rv
    [all...]
  /external/ppp/pppd/
utils.c 530 static char *linep; /* current pointer within line */ variable
538 linep = line;
541 linep = line + strlen(line);
549 if (linep != line) {
550 *linep = 0;
581 if (linep != line) {
583 if (linep + l < line + sizeof(line)) {
585 memcpy(linep, buf, l);
586 linep += l;
593 *linep = 0
    [all...]
  /external/elfutils/src/
readelf.c 3726 const unsigned char *linep = (const unsigned char *) data->d_buf; local
    [all...]

Completed in 286 milliseconds