Lines Matching defs:option
195 * CURL_FORMADD_OPTION_TWICE if one option is given twice for one Form
198 * CURL_FORMADD_UNKNOWN_OPTION if an unknown option was used
202 * CURL_FORMADD_ILLEGAL_ARRAY if an illegal option is used in an array
215 CURLformoption option;
240 /* get the upcoming option from the given array */
241 option = forms->option;
245 if(CURLFORM_END == option) {
252 /* This is not array-state, get next option. This gets an 'int' with
255 option = (CURLformoption)va_arg(params, int);
256 if(CURLFORM_END == option)
260 switch(option) {