HomeSort by relevance Sort by last modified time
    Searched refs:sizep (Results 1 - 9 of 9) sorted by null

  /system/core/include/cutils/
open_memstream.h 28 FILE* open_memstream(char** bufp, size_t* sizep);
  /external/qemu/
device_tree.h 17 void *load_device_tree(const char *filename_path, int *sizep);
device_tree.c 28 void *load_device_tree(const char *filename_path, int *sizep)
35 *sizep = 0;
67 *sizep = dt_size;
  /system/core/libcutils/
open_memstream.c 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.
69 size_t* sizep; /* pointer to eof */ member in struct:__anon36508
154 *stream->sizep = stream->offset;
201 *stream->sizep = stream->offset;
207 *stream->sizep = stream->eof;
225 FILE* open_memstream(char** bufp, size_t* sizep)
230 if (bufp == NULL || sizep == NULL) {
246 *sizep = 0;
249 stream->sizep = sizep
    [all...]
  /hardware/msm7k/librpc/
xdr.c 10 bool_t xdr_bytes (XDR *xdr, char **cpp, u_int *sizep, u_int maxsize)
14 if(!XDR_RECV_UINT(xdr, sizep) || *sizep > maxsize)
16 if(*sizep == 0)
19 *cpp = (char *) mem_alloc(*sizep);
21 return XDR_RECV_BYTES(xdr, (uint8 *) *cpp, *sizep);
23 return (XDR_SEND_UINT(xdr, sizep) &&
24 *sizep <= maxsize &&
25 XDR_SEND_BYTES(xdr, (uint8 *) *cpp, *sizep));
331 * *addrp is a pointer to the array, *sizep is the number of elements
    [all...]
  /hardware/msm7k/librpc/rpc/
xdr.h 84 extern bool_t xdr_bytes (XDR *xdr, char **cpp, u_int *sizep, u_int maxsize);
106 u_int *sizep, /* number of elements */
  /external/e2fsprogs/lib/ext2fs/
tdbtool.c 534 static char *convert_string(char *instring, size_t *sizep)
562 *sizep = length;
  /external/dnsmasq/src/
forward.c 383 unsigned char *pheader, *sizep; local
391 if ((pheader = find_pseudoheader(header, n, &plen, &sizep, &is_sign)) && !is_sign)
394 unsigned char *psave = sizep;
396 GETSHORT(udpsz, sizep);
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-darwin.c 2509 vki_uint32_t *sizep = (vki_uint32_t *)ARG3; local
    [all...]

Completed in 1175 milliseconds