Home | History | Annotate | Download | only in fastbootd

Lines Matching refs:protocol_handle

50     void (*execute)(struct protocol_handle *phandle, const char *arg);
62 void (*phandle)(struct protocol_handle *phandle, const char *arg))
102 int protocol_handle_download(struct protocol_handle *phandle, size_t len)
107 static ssize_t protocol_handle_write(struct protocol_handle *phandle,
113 static void fastboot_ack(struct protocol_handle *phandle, const char *code,
130 void fastboot_fail(struct protocol_handle *phandle, const char *reason)
135 void fastboot_okay(struct protocol_handle *phandle, const char *info)
140 void fastboot_data(struct protocol_handle *phandle, size_t len)
151 void protocol_handle_command(struct protocol_handle *phandle, char *buffer)
170 struct protocol_handle *create_protocol_handle(struct transport_handle *thandle)
172 struct protocol_handle *phandle;
174 phandle = calloc(sizeof(struct protocol_handle), 1);
185 int protocol_get_download(struct protocol_handle *phandle)