HomeSort by relevance Sort by last modified time
    Searched refs:lineptr (Results 1 - 13 of 13) 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/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);
213 ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream);
214 ssize_t getline(char **lineptr, size_t *n, FILE *stream);