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

  /system/core/fastbootd/
transport.h 22 struct transport_handle { struct
30 void (*close)(struct transport_handle *thandle);
31 ssize_t (*read)(struct transport_handle *thandle, void *data, size_t len);
32 ssize_t (*write)(struct transport_handle *thandle, const void *data, size_t len);
33 struct transport_handle *(*connect)(struct transport *transport);
38 ssize_t transport_handle_write(struct transport_handle *handle, char *buffer, size_t len);
39 int transport_handle_download(struct transport_handle *handle, size_t len);
protocol.h 39 struct transport_handle *transport_handle; member in struct:protocol_handle
52 struct protocol_handle *create_protocol_handle(struct transport_handle *t);
transport.c 30 ssize_t transport_handle_write(struct transport_handle *thandle, char *buffer, size_t len)
35 void transport_handle_close(struct transport_handle *thandle)
40 int transport_handle_download(struct transport_handle *thandle, size_t len)
87 struct transport_handle *thandle = arg;
117 struct transport_handle *thandle;
transport_socket.c 57 struct transport_handle handle;
62 void socket_close(struct transport_handle *thandle)
68 struct transport_handle *socket_connect(struct transport *transport)
86 ssize_t socket_write(struct transport_handle *thandle, const void *data, size_t len)
101 ssize_t socket_read(struct transport_handle *thandle, void *data, size_t len)
protocol.c 104 return transport_handle_download(phandle->transport_handle, len);
110 return transport_handle_write(phandle->transport_handle, buffer, len);
170 struct protocol_handle *create_protocol_handle(struct transport_handle *thandle)
176 phandle->transport_handle = thandle;
usb_linux_client.c 69 struct transport_handle handle;
214 static ssize_t usb_write(struct transport_handle *thandle, const void *data, size_t len)
230 ssize_t usb_read(struct transport_handle *thandle, void *data, size_t len)
246 void usb_close(struct transport_handle *thandle)
270 struct transport_handle *usb_connect(struct transport *transport)

Completed in 115 milliseconds