Searched refs:OperationConfig (Results 1 – 25 of 29) sorted by relevance
12
/third_party/curl/src/ |
D | tool_paramhlp.h | 26 struct getout *new_getout(struct OperationConfig *config); 40 long proto2num(struct OperationConfig *config, long *val, const char *str); 46 CURLcode get_args(struct OperationConfig *config, const size_t i); 50 int ftpfilemethod(struct OperationConfig *config, const char *str); 52 int ftpcccmethod(struct OperationConfig *config, const char *str); 54 long delegation(struct OperationConfig *config, const char *str);
|
D | tool_cfgable.h | 51 struct OperationConfig { struct 291 struct OperationConfig *prev; argument 292 struct OperationConfig *next; /* Always last in the struct */ argument 321 struct OperationConfig *first; 322 struct OperationConfig *current; 323 struct OperationConfig *last; /* Always last in the struct */ 326 void config_init(struct OperationConfig *config); 327 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() 50 static void free_config_fields(struct OperationConfig *config) in free_config_fields() 175 void config_free(struct OperationConfig *config) in config_free() 177 struct OperationConfig *last = config; in config_free() 181 struct OperationConfig *prev = last->prev; in config_free()
|
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() 281 long proto2num(struct OperationConfig *config, long *val, const char *str) in proto2num() 501 int ftpfilemethod(struct OperationConfig *config, const char *str) in ftpfilemethod() 516 int ftpcccmethod(struct OperationConfig *config, const char *str) in ftpcccmethod() 529 long delegation(struct OperationConfig *config, const char *str) in delegation() 552 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 | 84 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_doswin.h | 60 CURLcode FindWin32CACert(struct OperationConfig *config,
|
D | tool_operate.h | 33 struct OperationConfig *config; /* for this transfer */
|
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_operhlp.c | 37 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() 740 int formparse(struct OperationConfig *config, in formparse()
|
D | tool_main.c | 159 config->first = config->last = malloc(sizeof(struct OperationConfig)); in main_init()
|
D | tool_setopt.h | 105 struct OperationConfig *config,
|
D | tool_operate.c | 109 struct OperationConfig *config, 324 struct OperationConfig *config = per->config; /* for the macro below */ in pre_transfer() 346 struct OperationConfig *config = per->config; in post_per_transfer() 628 static void single_transfer_cleanup(struct OperationConfig *config) in single_transfer_cleanup() 651 struct OperationConfig *config, in single_transfer() 2305 struct OperationConfig *config, in transfer_per_config() 2526 struct OperationConfig *operation = global->first; in operate()
|
D | tool_cb_dbg.c | 48 struct OperationConfig *operation = userdata; in tool_debug_cb()
|
12