OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:transport_handle
(Results
1 - 5
of
5
) 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;
116
struct
transport_handle
*thandle;
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
70
struct
transport_handle
handle;
235
static ssize_t usb_write(struct
transport_handle
*thandle, const void *data, size_t len)
275
ssize_t usb_read(struct
transport_handle
*thandle, void *data, size_t len)
291
void usb_close(struct
transport_handle
*thandle)
315
struct
transport_handle
*usb_connect(struct transport *transport)
Completed in 216 milliseconds