Home | History | Annotate | Download | only in libcutils

Lines Matching defs:sizep

28  * - The values at "*bufp" and "*sizep" should be considered read-only,
31 * in "*sizep". (The behavior w.r.t. fseek() is not clearly defined.
67 size_t* sizep; /* pointer to eof */
152 *stream->sizep = stream->offset;
199 *stream->sizep = stream->offset;
205 *stream->sizep = stream->eof;
223 FILE* open_memstream(char** bufp, size_t* sizep)
228 if (bufp == NULL || sizep == NULL) {
244 *sizep = 0;
247 stream->sizep = sizep;