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

  /system/core/adb/
adb.h 41 typedef struct apacket apacket; typedef in typeref:struct:apacket
58 struct apacket struct
60 apacket *next;
103 apacket *pkt_first;
104 apacket *pkt_last;
112 int (*enqueue)(asocket *s, apacket *pkt);
168 int (*read_from_remote)(apacket *p, atransport *t);
169 int (*write_to_remote)(apacket *p, atransport *t);
220 void print_packet(const char *label, apacket *p)
    [all...]
transport_usb.c 32 static inline void fix_endians(apacket *p)
53 static int remote_read(apacket *p, atransport *t)
82 static int remote_write(apacket *p, atransport *t)
sockets.c 130 static int local_socket_enqueue(asocket *s, apacket *p)
201 apacket *p, *n;
266 apacket *p;
314 apacket *p = get_apacket();
448 static int remote_socket_enqueue(asocket *s, apacket *p)
464 apacket *p = get_apacket();
475 apacket *p = get_apacket();
527 apacket *p = get_apacket();
620 static int smart_socket_enqueue(asocket *s, apacket *p)
transport_local.c 30 static inline void fix_endians(apacket *p)
55 static int remote_read(apacket *p, atransport *t)
86 static int remote_write(apacket *p, atransport *t)
jdwp_service.c 571 jdwp_socket_enqueue( asocket* s, apacket* p )
590 apacket* p = get_apacket();
645 apacket* p = get_apacket();
678 apacket* p = get_apacket();
686 jdwp_tracker_enqueue( asocket* s, apacket* p )
transport.c 98 dump_packet(const char* name, const char* func, apacket* p)
137 read_packet(int fd, const char* name, apacket** ppacket)
168 write_packet(int fd, const char* name, apacket** ppacket)
203 apacket *p = 0;
212 void send_packet(apacket *p, atransport *t)
258 apacket *p;
282 D("%s: failed to write apacket to transport\n", t->serial);
300 D("%s: failed to write SYNC apacket to transport", t->serial);
313 apacket *p;
321 D("%s: failed to read apacket from transport on fd %d\n"
    [all...]
adb.c 135 apacket *get_apacket(void)
137 apacket *p = malloc(sizeof(apacket));
138 if(p == 0) fatal("failed to allocate an apacket");
139 memset(p, 0, sizeof(apacket) - MAX_PAYLOAD);
143 void put_apacket(apacket *p)
162 void print_packet(const char *label, apacket *p)
203 apacket *p = get_apacket();
213 apacket *p = get_apacket();
223 apacket *cp = get_apacket()
    [all...]

Completed in 202 milliseconds