Lines Matching refs:line
113 /* Write a line to the control socket */
144 /* Return the next line from the control socket (without the trailing newline).
202 /* Wait until a given line is received or a timeout occurs */
205 char *line;
207 line = control_readln();
209 control_cmpln(line, str, true);
211 free(line);
214 bool control_cmpln(char *line, const char *str, bool fail)
216 if (strcmp(str, line) == 0)
221 str, line);