Searched defs:lineptr (Results 1 - 8 of 8) sorted by relevance
/external/bison/lib/ |
H A D | getline.c | 24 getline (char **lineptr, size_t *n, FILE *stream) argument 26 return getdelim (lineptr, n, '\n', stream);
|
H A D | getdelim.c | 23 optimizes away the lineptr == NULL || n == NULL || fp == NULL tests below. */ 57 getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp) argument 62 if (lineptr == NULL || n == NULL || fp == NULL) 70 if (*lineptr == NULL || *n == 0) 74 new_lineptr = (char *) realloc (*lineptr, *n); 80 *lineptr = new_lineptr; 111 new_lineptr = (char *) realloc (*lineptr, needed); 118 *lineptr = new_lineptr; 122 (*lineptr)[cur_len] = i; 128 (*lineptr)[cur_le [all...] |
/external/google-breakpad/src/processor/ |
H A D | simple_serializer-inl.h | 173 static size_t SizeOf(const linked_ptr<Line> &lineptr) { argument 174 if (lineptr.get() == NULL) return 0; 175 return SimpleSerializer<Line>::SizeOf(*(lineptr.get())); 177 static char *Write(const linked_ptr<Line> &lineptr, char *dest) { argument 178 if (lineptr.get()) 179 dest = SimpleSerializer<Line>::Write(*(lineptr.get()), dest);
|
/external/curl/lib/ |
H A D | cookie.c | 36 struct CookieInfo *c, bool httpheader, char *lineptr, 39 The 'lineptr' parameter is a full "Set-cookie:" line as 370 char *lineptr, /* first character of the line */ 409 semiptr=strchr(lineptr, ';'); /* first, find a semicolon */ 411 while(*lineptr && ISBLANK(*lineptr)) 412 lineptr++; 414 ptr = lineptr; 671 if(strncmp(lineptr, "#HttpOnly_", 10) == 0) { 672 lineptr 363 Curl_cookie_add(struct Curl_easy *data, struct CookieInfo *c, bool httpheader, char *lineptr, const char *domain, const char *path) argument 983 char *lineptr; local [all...] |
/external/libcups/cups/ |
H A D | ppd.c | 2877 *lineptr; /* Current position in line buffer */ local 2903 lineptr = line->buffer; 2909 if (lineptr >= (line->buffer + line->bufsize - 1)) 2940 lineptr = temp + (lineptr - line->buffer); 2969 if (lineptr == line->buffer && ignoreblank) 2977 *lineptr++ = '\n'; 2996 *lineptr++ = (char)ch; 3133 if (lineptr > line->buffer && lineptr[ [all...] |
H A D | dest.c | 3792 *lineptr, /* Pointer into line */ local 3816 while (cupsFileGetConf(fp, line, sizeof(line), &lineptr, &linenum)) 3822 DEBUG_printf(("9cups_get_dests: linenum=%d line=\"%s\" lineptr=\"%s\"", 3823 linenum, line, lineptr)); 3825 if ((_cups_strcasecmp(line, "dest") && _cups_strcasecmp(line, "default")) || !lineptr) 3831 name = lineptr; 3837 while (!isspace(*lineptr & 255) && *lineptr && *lineptr != '/') 3838 lineptr [all...] |
H A D | http.c | 1158 char *lineptr, /* Pointer into line */ local 1176 lineptr = line; 1180 while (lineptr < lineend) 1282 lineptr < lineend && bufptr < bufend;) 1293 *lineptr++ = *bufptr++; 1308 *lineptr = '\0';
|
/external/google-breakpad/src/common/dwarf/ |
H A D | dwarf2reader.cc | 534 const char* lineptr = buffer_; local 538 = reader_->ReadInitialLength(lineptr, &initial_length_size); 540 lineptr += initial_length_size; 548 header_.version = reader_->ReadTwoBytes(lineptr); 549 lineptr += 2; 551 header_.prologue_length = reader_->ReadOffset(lineptr); 552 lineptr += reader_->OffsetSize(); 554 header_.min_insn_length = reader_->ReadOneByte(lineptr); 555 lineptr += 1; 557 header_.default_is_stmt = reader_->ReadOneByte(lineptr); 816 const char* lineptr = after_header_; local [all...] |
Completed in 258 milliseconds