HomeSort by relevance Sort by last modified time
    Searched refs:lineptr (Results 1 - 8 of 8) 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...]
  /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/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);
  /external/toybox/lib/
portability.h 89 ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream);
137 ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream);
205 ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream);
206 ssize_t getline(char **lineptr, size_t *n, FILE *stream);
  /external/bison/darwin-lib/
stdio.h     [all...]
  /external/bison/linux-lib/
stdio.h     [all...]

Completed in 460 milliseconds