Home
last modified time | relevance | path

Searched refs:ftp_parselist_data (Results 1 – 3 of 3) sorted by relevance

/external/curl/lib/
Dftplistparser.h32 struct ftp_parselist_data; /* defined inside ftplibparser.c */
34 CURLcode Curl_ftp_parselist_geterror(struct ftp_parselist_data *pl_data);
36 struct ftp_parselist_data *Curl_ftp_parselist_data_alloc(void);
38 void Curl_ftp_parselist_data_free(struct ftp_parselist_data **pl_data);
Dftp.h81 struct ftp_parselist_data; /* defined later in ftplistparser.c */
84 struct ftp_parselist_data *parser;
Dftplistparser.c149 struct ftp_parselist_data { struct
182 struct ftp_parselist_data *Curl_ftp_parselist_data_alloc(void) in Curl_ftp_parselist_data_alloc() argument
184 return calloc(1, sizeof(struct ftp_parselist_data)); in Curl_ftp_parselist_data_alloc()
188 void Curl_ftp_parselist_data_free(struct ftp_parselist_data **parserp) in Curl_ftp_parselist_data_free()
190 struct ftp_parselist_data *parser = *parserp; in Curl_ftp_parselist_data_free()
198 CURLcode Curl_ftp_parselist_geterror(struct ftp_parselist_data *pl_data) in Curl_ftp_parselist_geterror()
278 struct ftp_parselist_data *parser = ftpwc->parser; in ftp_pl_insert_finfo()
332 struct ftp_parselist_data *parser = ftpwc->parser; in Curl_ftp_parselist()