Home | History | Annotate | Download | only in protocol

Lines Matching full:console

25 /* Descriptor for a client, connected to the core via console port. */
27 /* Socket address of the console. */
30 // Helper for performing sync I/O on the console socket.
34 * - NULL for the console itself.
58 * Checks if console has replied with "OK"
60 * reply - String containing console's reply
71 * Checks if console has replied with "KO"
73 * reply - String containing console's reply
98 // Create sync connection to the console.
106 // Upon successful connection the console will reply with two strings:
107 // "Android Console....", and "OK\r\n". Read them and check.
123 if (status < 15 || memcmp(buf, "Android Console", 15)) {
125 derror("console has failed the connection: %s\n", buf);
134 derror("unexpected reply from the console: %s\n", buf);
302 derror("error reading console reply on stream switch: %s\n", errno_str);
306 derror("unexpected console reply when switching streams: %s\n", buf);
311 derror("console has rejected stream switch: %s\n", buf);
317 derror("unexpected console reply when switching streams: %s\n", buf);
332 // Connect to the console service.