Searched defs:sizep (Results 1 - 2 of 2) sorted by relevance

/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:__anon157
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...]
/system/netd/server/
H A DNetdConstants.cpp131 int readFile(const char *path, char *buf, int *sizep) argument
141 size = read(fd, buf, *sizep);
147 *sizep = size;

Completed in 64 milliseconds