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

  /system/core/fastbootd/
protocol.h 38 struct protocol_handle { struct
47 void (*handle)(struct protocol_handle *handle, const char *arg));
52 struct protocol_handle *create_protocol_handle(struct transport_handle *t);
53 void protocol_handle_command(struct protocol_handle *handle, char *buffer);
54 int protocol_handle_download(struct protocol_handle *phandle, size_t len);
55 int protocol_get_download(struct protocol_handle *phandle);
57 void fastboot_fail(struct protocol_handle *handle, const char *reason);
58 void fastboot_okay(struct protocol_handle *handle, const char *reason);
59 void fastboot_data(struct protocol_handle *handle, size_t len);
protocol.c 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
    [all...]
commands.c 40 static void cmd_boot(struct protocol_handle *phandle, const char *arg)
79 static void cmd_erase(struct protocol_handle *phandle, const char *arg)
105 static void cmd_flash(struct protocol_handle *phandle, const char *arg)
146 static void cmd_continue(struct protocol_handle *phandle, const char *arg)
156 static void cmd_getvar(struct protocol_handle *phandle, const char *arg)
166 static void cmd_download(struct protocol_handle *phandle, const char *arg)
transport.c 88 struct protocol_handle *phandle = create_protocol_handle(thandle);

Completed in 409 milliseconds