Searched refs:sizep (Results 1 - 4 of 4) sorted by relevance

/system/core/include/cutils/
H A Dopen_memstream.h28 FILE* open_memstream(char** bufp, size_t* sizep);
/system/netd/
H A DNetdConstants.h39 int readFile(const char *path, char *buf, int *sizep);
H A DNetdConstants.cpp126 int readFile(const char *path, char *buf, int *sizep) argument
136 size = read(fd, buf, *sizep);
142 *sizep = size;
/system/core/libcutils/
H A Dopen_memstream.c28 * - The values at "*bufp" and "*sizep" should be considered read-only,
31 * in "*sizep". (The behavior w.r.t. fseek() is not clearly defined.
69 size_t* sizep; /* pointer to eof */ member in struct:__anon167
154 *stream->sizep = stream->offset;
201 *stream->sizep = stream->offset;
207 *stream->sizep = stream->eof;
225 FILE* open_memstream(char** bufp, size_t* sizep) argument
230 if (bufp == NULL || sizep == NULL) {
246 *sizep = 0;
249 stream->sizep
255 open_memstream(char** bufp, size_t* sizep) argument
[all...]

Completed in 279 milliseconds