HomeSort by relevance Sort by last modified time
    Searched refs:lineptr (Results 1 - 20 of 20) sorted by null

  /external/bison/lib/
getline.c 24 getline (char **lineptr, size_t *n, FILE *stream)
26 return getdelim (lineptr, n, '\n', stream);
getdelim.c 23 optimizes away the lineptr == NULL || n == NULL || fp == NULL tests below. */
50 /* Read up to (and including) a DELIMITER from FP into *LINEPTR (and
51 NUL-terminate it). *LINEPTR is a pointer returned from malloc (or
57 getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp)
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
    [all...]
stdio.in.h 633 STREAM, store it in *LINEPTR (and NUL-terminate it).
634 *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE
636 Return the number of bytes read and stored at *LINEPTR (not including the
644 (char **lineptr, size_t *linesize, int delimiter,
648 (char **lineptr, size_t *linesize, int delimiter,
653 (char **lineptr, size_t *linesize, int delimiter,
658 (char **lineptr, size_t *linesize, int delimiter,
672 in *LINEPTR (and NUL-terminate it).
673 *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE
675 Return the number of bytes read and stored at *LINEPTR (not including th
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
dwarf_reader.cc 2352 const unsigned char* lineptr = this->buffer_; local
    [all...]
dwarf_reader.h 1033 read_header_prolog(const unsigned char* lineptr);
1036 read_header_tables(const unsigned char* lineptr);
1039 read_header_tables_v5(const unsigned char* lineptr);
1045 read_lines(const unsigned char* lineptr, const unsigned char* endptr,
    [all...]
  /external/libcups/cups/
ppd.c 2877 *lineptr; \/* Current position in line buffer *\/ local
    [all...]
dest.c 3792 *lineptr, \/* Pointer into line *\/ local
    [all...]
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';
    [all...]
  /external/google-breakpad/src/common/dwarf/
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...]
  /external/curl/lib/
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 += 10
983 char *lineptr; local
    [all...]
cookie.h 80 struct CookieInfo *, bool header, char *lineptr,
  /external/toybox/lib/
portability.h 110 ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream);
178 ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream);
179 ssize_t getline(char **lineptr, size_t *n, FILE *stream);
  /external/google-breakpad/src/processor/
simple_serializer-inl.h 173 static size_t SizeOf(const linked_ptr<Line> &lineptr) {
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) {
178 if (lineptr.get())
179 dest = SimpleSerializer<Line>::Write(*(lineptr.get()), dest);
  /toolchain/binutils/binutils-2.25/gas/config/
tc-ns32k.c 1094 const char *lineptr;
1105 for (lineptr = line; (*lineptr) != '\0' && (*lineptr) != ' '; lineptr++)
1108 c = *lineptr;
1109 *(char *) lineptr = '\0';
1114 *(char *) lineptr = c;
1117 lineptr = line;
1123 if (*lineptr++ != '\0'
1088 const char *lineptr; local
    [all...]
  /external/bison/darwin-lib/
stdio.h     [all...]
  /external/bison/linux-lib/
stdio.h     [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/dwarf/
dwarf_defs.go 92 DW_CLS_PTR // lineptr, loclistptr, macptr, rangelistptr
107 DW_AT_stmt_list = 0x10 // lineptr
198 DW_FORM_data4 = 0x06 // constant, lineptr, loclistptr, macptr, rangelistptr
199 DW_FORM_data8 = 0x07 // constant, lineptr, loclistptr, macptr, rangelistptr
  /prebuilts/go/linux-x86/src/cmd/internal/dwarf/
dwarf_defs.go 92 DW_CLS_PTR // lineptr, loclistptr, macptr, rangelistptr
107 DW_AT_stmt_list = 0x10 // lineptr
198 DW_FORM_data4 = 0x06 // constant, lineptr, loclistptr, macptr, rangelistptr
199 DW_FORM_data8 = 0x07 // constant, lineptr, loclistptr, macptr, rangelistptr
  /prebuilts/go/darwin-x86/src/debug/dwarf/
entry.go 233 // lineptr int64 ClassLinePtr
476 // lineptr, loclistptr, macptr, rangelistptr
  /prebuilts/go/linux-x86/src/debug/dwarf/
entry.go 233 // lineptr int64 ClassLinePtr
476 // lineptr, loclistptr, macptr, rangelistptr

Completed in 809 milliseconds