Searched refs:buflength (Results 1 – 6 of 6) sorted by relevance
/external/minijail/ |
D | util.c | 305 void *consumebytes(size_t length, char **buf, size_t *buflength) in consumebytes() argument 308 if (length > *buflength) in consumebytes() 311 *buflength -= length; in consumebytes() 315 char *consumestr(char **buf, size_t *buflength) in consumestr() argument 317 size_t len = strnlen(*buf, *buflength); in consumestr() 318 if (len == *buflength) in consumestr() 321 return consumebytes(len + 1, buf, buflength); in consumestr()
|
D | util.h | 110 void *consumebytes(size_t length, char **buf, size_t *buflength); 119 char *consumestr(char **buf, size_t *buflength);
|
/external/syslinux/gpxe/src/drivers/net/ |
D | epic100.c | 37 unsigned long buflength; member 46 unsigned long buflength; member 277 rx_ring[i].buflength = cpu_to_le32(PKT_BUF_SZ); in epic100_init_ring() 291 tx_ring[i].buflength = 0x0000 | cpu_to_le32(TD_STDFLAGS << 16); in epic100_init_ring() 345 tx_ring[entry].buflength |= cpu_to_le32(len); in epic100_transmit() 407 nic->packetlen = le32_to_cpu((rx_ring[entry].buflength))- 4; in epic100_poll()
|
/external/python/cpython2/Modules/_multiprocessing/ |
D | pipe_connection.c | 43 size_t buflength, char **newbuffer, size_t maxlength) in conn_recv_string() argument 50 ret = ReadFile(conn->handle, buffer, MIN(buflength, maxlength), in conn_recv_string()
|
D | socket_connection.c | 147 size_t buflength, char **newbuffer, size_t maxlength) in conn_recv_string() argument 164 if (ulength > buflength) { in conn_recv_string()
|
/external/libcups/cups/ |
D | ppd-emit.c | 301 size_t buflength; /* Length of option code */ in ppdEmitFd() local 325 buflength = strlen(buffer); in ppdEmitFd() 329 while (buflength > 0) in ppdEmitFd() 332 if ((bytes = (ssize_t)write(fd, bufptr, (unsigned)buflength)) < 0) in ppdEmitFd() 334 if ((bytes = write(fd, bufptr, buflength)) < 0) in ppdEmitFd() 343 buflength -= (size_t)bytes; in ppdEmitFd()
|