HomeSort by relevance Sort by last modified time
    Searched defs:sbuf (Results 26 - 37 of 37) sorted by null

12

  /external/iproute2/ip/
ipxfrm.c 793 char sbuf[STRBUF_SIZE]; local
795 memcpy(sbuf, buf, sizeof(sbuf));
796 STRBUF_CAT(sbuf, "sel ");
798 xfrm_selector_print(&xsinfo->sel, xsinfo->family, fp, sbuf);
  /external/openssl/crypto/threads/
mttest.c 422 static char cbuf[200],sbuf[200]; local
588 i=BIO_read(s_bio,sbuf,100);
618 fwrite(sbuf,1,i,stdout);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
InputStreamReaderTest.java 441 char[] sbuf = new char[100]; local
442 fileString.getChars(0, 100, sbuf, 0);
445 assertTrue("returned incorrect chars", rbuf[i] == sbuf[i]);
  /libcore/luni/src/test/java/tests/api/java/io/
InputStreamReaderTest.java 667 char[] sbuf = new char[100]; local
668 fileString.getChars(0, 100, sbuf, 0);
671 assertTrue("returned incorrect chars", rbuf[i] == sbuf[i]);
  /system/core/adb/
file_sync_client.c 210 static int write_data_file(int fd, const char *path, syncsendbuf *sbuf)
220 sbuf->id = ID_DATA;
224 ret = adb_read(lfd, sbuf->data, SYNC_DATA_MAX);
235 sbuf->size = htoll(ret);
236 if(writex(fd, sbuf, sizeof(unsigned) * 2 + ret)){
247 static int write_data_buffer(int fd, char* file_buffer, int size, syncsendbuf *sbuf)
252 sbuf->id = ID_DATA;
259 memcpy(sbuf->data, &file_buffer[total], count);
260 sbuf->size = htoll(count);
261 if(writex(fd, sbuf, sizeof(unsigned) * 2 + count))
302 syncsendbuf *sbuf = &send_buffer; local
    [all...]
  /external/openssl/apps/
s_client.c 389 char *cbuf=NULL,*sbuf=NULL,*mbuf=NULL; local
468 ((sbuf=OPENSSL_malloc(BUFSIZZ)) == NULL) ||
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/loadso/macosx/
SDL_dlcompat.c 236 static struct dlstatus *lookupStatus(const struct stat *sbuf);
237 static void insertStatus(struct dlstatus *dls, const struct stat *sbuf);
242 static struct dlstatus *loadModule(const char *path, const struct stat *sbuf, int mode);
447 static struct stat sbuf; local
451 if (0 == stat(file, &sbuf))
452 return &sbuf;
460 if (0 == stat(*fullPath, &sbuf))
461 return &sbuf;
488 static struct dlstatus *lookupStatus(const struct stat *sbuf)
493 || sbuf->st_dev != dls->device || sbuf->st_ino != dls->inode)
968 const struct stat *sbuf; local
    [all...]
  /external/openssl/ssl/
ssltest.c 1231 MS_STATIC char sbuf[1024*8]; local
1465 MS_STATIC char cbuf[1024*8],sbuf[1024*8]; local
    [all...]
  /external/ppp/pppd/
auth.c 2284 struct stat sbuf; local
    [all...]
main.c 1669 struct stat sbuf; local
    [all...]
  /external/qemu/
net-android.c 1193 struct strbuf sbuf; local
1196 sbuf.maxlen = maxlen;
1197 sbuf.buf = (char *)buf;
1199 return getmsg(tapfd, NULL, &sbuf, &f) >= 0 ? sbuf.len : -1;
    [all...]
net.c 1069 struct strbuf sbuf; local
1072 sbuf.maxlen = maxlen;
1073 sbuf.buf = (char *)buf;
1075 return getmsg(tapfd, NULL, &sbuf, &f) >= 0 ? sbuf.len : -1;
    [all...]

Completed in 196 milliseconds

12