Home | History | Annotate | Download | only in fastboot

Lines Matching refs:reason

33  * fastboot_response() - Writes a response of the form "$tag$reason".
55 * fastboot_fail() - Write a FAIL response of the form "FAIL$reason".
57 * @reason: Pointer to returned reason string
60 void fastboot_fail(const char *reason, char *response)
62 fastboot_response("FAIL", response, "%s", reason);
66 * fastboot_okay() - Write an OKAY response of the form "OKAY$reason".
68 * @reason: Pointer to returned reason string, or NULL to send a bare "OKAY"
71 void fastboot_okay(const char *reason, char *response)
73 if (reason)
74 fastboot_response("OKAY", response, "%s", reason);