Lines Matching defs:line
118 static int ftp_get_line(FTPContext *s, char *line, int line_size)
121 char *q = line;
129 /* process line */
130 if (q > line && q[-1] == '\r')
135 if ((q - line) < line_size - 1)
146 static int ftp_status(FTPContext *s, char **line, const int response_codes[])
152 if (line)
157 if (line)
191 if (line)
202 if (line)
203 av_bprint_finalize(&line_buffer, line);
977 static int ftp_parse_entry_nlst(char *line, AVIODirEntry *next)
979 next->name = av_strdup(line);
1023 static int ftp_parse_entry(URLContext *h, char *line, AVIODirEntry *next)
1029 return ftp_parse_entry_mlsd(line, next);
1031 return ftp_parse_entry_nlst(line, next);