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.c38 #define MAX_PACKET_LENGTH 4096 macro
279 char line_buf[MAX_PACKET_LENGTH];
282 uint8_t last_packet[MAX_PACKET_LENGTH + 4];
1597 char buf[MAX_PACKET_LENGTH];
1598 uint8_t mem_buf[MAX_PACKET_LENGTH];
1889 snprintf(buf, sizeof(buf), "PacketSize=%x", MAX_PACKET_LENGTH);
1923 if (len > (MAX_PACKET_LENGTH - 5) / 2)
1924 len = (MAX_PACKET_LENGTH - 5) / 2;
2324 return MAX_PACKET_LENGTH;
2350 char buf[MAX_PACKET_LENGTH];
[all...]

Completed in 66 milliseconds