HomeSort by relevance Sort by last modified time
    Searched defs:writebuf (Results 1 - 8 of 8) sorted by null

  /external/dropbear/
packet.c 53 buffer * writebuf = NULL; local
59 writebuf = (buffer*)examine(&ses.writequeue);
61 len = writebuf->len - writebuf->pos;
64 written = write(ses.sock, buf_getptr(writebuf, len), len);
82 buf_free(writebuf);
83 writebuf = NULL;
86 buf_incrpos(writebuf, written);
408 /* encrypt the writepayload, putting into writebuf, ready for write_packet()
414 buffer * writebuf; /* the packet which will go on the wire * local
    [all...]
channel.h 72 circbuffer *writebuf; /* data from the wire, for local consumption */ member in struct:Channel
73 circbuffer *extrabuf; /* extended-data for the program - used like writebuf
  /external/quake/quake/src/WinQuake/
snd_sun.cpp 184 static unsigned char writebuf[1024]; local
199 if (bytes > sizeof(writebuf)) {
200 bytes = sizeof(writebuf);
204 p = writebuf;
214 if (write(audio_fd, writebuf, bytes) < bytes)
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
ChannelsTest.java 101 String writebuf = ""; local
103 writebuf = writebuf + ((char) (val + 64));
105 this.fouts.write(writebuf.getBytes());
215 ByteBuffer writebuf = ByteBuffer.allocate(this.writebufSize); local
217 writebuf.putChar((char) (val + 64));
221 writeres = rbChannel.write(writebuf);
224 writebuf.flip();
226 writeres = rbChannel.write(writebuf);
241 ByteBuffer writebuf = null local
269 ByteBuffer writebuf = ByteBuffer.allocateDirect(this.writebufSize); local
834 String writebuf = ""; local
891 String writebuf = ""; local
949 String writebuf = ""; local
975 String writebuf = ""; local
1012 String writebuf = ""; local
    [all...]
  /external/chromium/net/base/
nss_memio.c 51 struct memio_buffer writebuf; member in struct:PRFilePrivate
184 memio_buffer_destroy(&secret->writebuf);
241 mb = &secret->writebuf;
357 memio_buffer_new(&secret->writebuf, bufsize);
404 struct memio_buffer* mb = &((PRFilePrivate *)secret)->writebuf;
413 struct memio_buffer* mb = &((PRFilePrivate *)secret)->writebuf;
  /device/samsung/crespo/alsa-utils/seq/aseqnet/
aseqnet.c 59 static char *writebuf; variable
185 writebuf = malloc(max_wrlen);
187 if (writebuf == NULL || readbuf == NULL) {
191 memset(writebuf, 0, max_wrlen);
495 write(netfd[i], writebuf, cur_wrlen);
509 buf = writebuf + cur_wrlen;
  /frameworks/base/cmds/servicemanager/
binder.c 312 } writebuf; local
320 writebuf.cmd = BC_TRANSACTION;
321 writebuf.txn.target = target;
322 writebuf.txn.code = code;
323 writebuf.txn.flags = 0;
324 writebuf.txn.data_size = msg->data - msg->data0;
325 writebuf.txn.offs_size = ((char*) msg->offs) - ((char*) msg->offs0);
326 writebuf.txn.data = msg->data0;
327 writebuf.txn.offs = msg->offs0;
329 bwr.write_size = sizeof(writebuf);
    [all...]
  /device/samsung/crespo/alsa-lib/test/
latency.c 362 long writebuf(snd_pcm_t *handle, char *buf, long len, size_t *frames) function
617 if (writebuf(phandle, buffer, latency, &frames_out) < 0) {
621 if (writebuf(phandle, buffer, latency, &frames_out) < 0) {
651 if (writebuf(phandle, buffer, r, &frames_out) < 0)

Completed in 821 milliseconds