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

  /external/valgrind/main/coregrind/m_gdbserver/
server.c 93 PBUFSIZ - POVERHSIZ - 1) + 1;
779 if (len > PBUFSIZ - POVERHSIZ)
780 len = PBUFSIZ - POVERHSIZ;
810 if (len > PBUFSIZ - 2)
811 len = PBUFSIZ - 2;
852 VG_(sprintf) (arg_own_buf, "PacketSize=%x", PBUFSIZ - 1);
924 own_buf = malloc (PBUFSIZ+POVERHSIZ);
926 mem_buf = malloc (PBUFSIZ+POVERHSIZ);
927 // Note: normally, we should only malloc PBUFSIZ. However,
    [all...]
server.h 341 /* PBUFSIZ : Buffers size for transferring memory, registers, etc.
358 /* keep PBUFSIZ value in sync with vgdb.c */
359 #define PBUFSIZ 16384
364 #define DATASIZ ((PBUFSIZ-POVERHSIZ)/2)
remote-utils.c 785 buf2 = malloc (PBUFSIZ+POVERHSIZ);
786 // should malloc PBUFSIZ, but bypass GDB bug (see gdbserver_init in server.c)
788 vg_assert (cnt <= PBUFSIZ); // be tolerant for GDB bug.
890 static unsigned char buf[PBUFSIZ];
    [all...]
  /external/valgrind/main/coregrind/
vgdb.c 358 #define PBUFSIZ 16384 /* keep in sync with server.h */
368 nrread = read(fd, buf, PBUFSIZ);
432 char buf[PBUFSIZ+1]; // +1 for trailing \0
456 char buf[PBUFSIZ+1]; // +1 for trailing \0
561 static char buf[PBUFSIZ+1]; // +1 for trailing \0
944 char buf[PBUFSIZ+1]; // +1 for trailing \0
    [all...]

Completed in 73 milliseconds