Searched refs:OperationConfig (Results 1 – 25 of 32) sorted by relevance
12
/external/curl/src/ |
D | tool_paramhlp.h | 26 struct getout *new_getout(struct OperationConfig *config); 39 long proto2num(struct OperationConfig *config, long *val, const char *str); 45 CURLcode get_args(struct OperationConfig *config, const size_t i); 49 int ftpfilemethod(struct OperationConfig *config, const char *str); 51 int ftpcccmethod(struct OperationConfig *config, const char *str); 53 long delegation(struct OperationConfig *config, const char *str);
|
D | tool_cfgable.h | 52 struct OperationConfig { struct 286 struct OperationConfig *prev; argument 287 struct OperationConfig *next; /* Always last in the struct */ argument 316 struct OperationConfig *first; 317 struct OperationConfig *current; 318 struct OperationConfig *last; /* Always last in the struct */ 321 void config_init(struct OperationConfig *config); 322 void config_free(struct OperationConfig *config);
|
D | tool_cfgable.c | 29 void config_init(struct OperationConfig *config) in config_init() 31 memset(config, 0, sizeof(struct OperationConfig)); in config_init() 49 static void free_config_fields(struct OperationConfig *config) in free_config_fields() 171 void config_free(struct OperationConfig *config) in config_free() 173 struct OperationConfig *last = config; in config_free() 177 struct OperationConfig *prev = last->prev; in config_free()
|
D | tool_metalink.h | 28 struct OperationConfig; 104 void clean_metalink(struct OperationConfig *config); 116 int parse_metalink(struct OperationConfig *config, struct OutStruct *outs,
|
D | tool_helpers.h | 28 int SetHTTPrequest(struct OperationConfig *config, HttpReq req, 31 void customrequest_helper(struct OperationConfig *config, HttpReq req,
|
D | tool_operhlp.h | 26 struct OperationConfig; 28 void clean_getout(struct OperationConfig *config);
|
D | tool_paramhlp.c | 41 struct getout *new_getout(struct OperationConfig *config) in new_getout() 261 long proto2num(struct OperationConfig *config, long *val, const char *str) in proto2num() 481 int ftpfilemethod(struct OperationConfig *config, const char *str) in ftpfilemethod() 496 int ftpcccmethod(struct OperationConfig *config, const char *str) in ftpcccmethod() 509 long delegation(struct OperationConfig *config, const char *str) in delegation() 532 CURLcode get_args(struct OperationConfig *config, const size_t i) in get_args()
|
D | tool_getparam.h | 50 struct OperationConfig; 54 struct OperationConfig *operation);
|
D | tool_helpers.c | 76 int SetHTTPrequest(struct OperationConfig *config, HttpReq req, HttpReq *store) in SetHTTPrequest() 99 void customrequest_helper(struct OperationConfig *config, HttpReq req, in customrequest_helper()
|
D | tool_cb_wrt.h | 34 struct OperationConfig *config);
|
D | tool_cb_hdr.h | 43 struct OperationConfig *config;
|
D | tool_cb_prg.h | 42 struct OperationConfig *config);
|
D | tool_cb_wrt.c | 53 struct OperationConfig *config) in tool_create_output_file() 112 struct OperationConfig *config = per->config; in tool_write_cb()
|
D | tool_cb_prg.c | 133 struct OperationConfig *config = per->config; in tool_progress_cb() 213 struct OperationConfig *config) in progressbarinit()
|
D | tool_sdecls.h | 92 struct OperationConfig *config;
|
D | tool_doswin.h | 60 CURLcode FindWin32CACert(struct OperationConfig *config,
|
D | tool_parsecfg.c | 82 struct OperationConfig *operation = global->last; in parseconfig() 253 operation->next = malloc(sizeof(struct OperationConfig)); in parseconfig()
|
D | tool_formparse.h | 63 int formparse(struct OperationConfig *config,
|
D | tool_cb_rea.c | 66 struct OperationConfig *config = per->config; in tool_readbusy_cb()
|
D | tool_operate.h | 33 struct OperationConfig *config; /* for this transfer */
|
D | tool_operhlp.c | 38 void clean_getout(struct OperationConfig *config) in clean_getout()
|
D | tool_formparse.c | 414 static int read_field_headers(struct OperationConfig *config, in read_field_headers() 476 static int get_param_part(struct OperationConfig *config, char endchar, in get_param_part() 737 int formparse(struct OperationConfig *config, in formparse()
|
D | tool_metalink.c | 747 int parse_metalink(struct OperationConfig *config, struct OutStruct *outs, in parse_metalink() 829 struct OperationConfig *config = per->config; in metalink_write_cb() 915 void clean_metalink(struct OperationConfig *config) in clean_metalink()
|
D | tool_main.c | 155 config->first = config->last = malloc(sizeof(struct OperationConfig)); in main_init()
|
D | tool_setopt.h | 102 struct OperationConfig *config,
|
12