Searched defs:MAX_PACKET_LENGTH (Results 1 - 3 of 3) sorted by relevance

/external/mtpd/
H A Dpptp.c79 #define MAX_PACKET_LENGTH 220 macro
88 uint8_t buffer[MAX_PACKET_LENGTH];
164 if (incoming.length >= MAX_PACKET_LENGTH) {
168 if (incoming.expect > MAX_PACKET_LENGTH) {
169 length = MAX_PACKET_LENGTH - incoming.length;
H A Dl2tp.c113 #define MAX_PACKET_LENGTH 2048 macro
118 uint8_t buffer[MAX_PACKET_LENGTH] __attribute__((aligned(4)));
187 incoming.length = recv(the_socket, incoming.buffer, MAX_PACKET_LENGTH, 0);
/external/qemu/
H A Dgdbstub.c40 #define MAX_PACKET_LENGTH 4096 macro
281 char line_buf[MAX_PACKET_LENGTH];
284 uint8_t last_packet[MAX_PACKET_LENGTH + 4];
1601 char buf[MAX_PACKET_LENGTH];
1602 uint8_t mem_buf[MAX_PACKET_LENGTH];
1893 snprintf(buf, sizeof(buf), "PacketSize=%x", MAX_PACKET_LENGTH);
1927 if (len > (MAX_PACKET_LENGTH - 5) / 2)
1928 len = (MAX_PACKET_LENGTH - 5) / 2;
2329 return MAX_PACKET_LENGTH;
2355 char buf[MAX_PACKET_LENGTH];
[all...]

Completed in 108 milliseconds