Lines Matching refs:form_error

1348 	CURLcode form_error;  in add_simple_field()  local
1350 CURLFORMcode form_error; in add_simple_field() local
1363 if ((form_error = curl_mime_name(part, ZSTR_VAL(string_key))) != CURLE_OK in add_simple_field()
1364 || (form_error = curl_mime_data(part, ZSTR_VAL(postval), ZSTR_LEN(postval))) != CURLE_OK) { in add_simple_field()
1365 error = form_error; in add_simple_field()
1371 form_error = curl_formadd(first, last, in add_simple_field()
1379 if (form_error != CURL_FORMADD_OK) { in add_simple_field()
1381 error = (CURLcode)form_error; in add_simple_field()
1399 CURLcode form_error; in build_mime_structure_from_hash() local
1403 CURLFORMcode form_error; in build_mime_structure_from_hash() local
1481 if ((form_error = curl_mime_name(part, ZSTR_VAL(string_key))) != CURLE_OK in build_mime_structure_from_hash()
1482 …|| (form_error = curl_mime_data_cb(part, filesize, read_cb, seekfunc, free_cb, cb_arg)) != CURLE_OK in build_mime_structure_from_hash()
1483 || (form_error = curl_mime_filename(part, filename ? filename : ZSTR_VAL(postval))) != CURLE_OK in build_mime_structure_from_hash()
1484 || (form_error = curl_mime_type(part, type ? type : "application/octet-stream")) != CURLE_OK) { in build_mime_structure_from_hash()
1485 error = form_error; in build_mime_structure_from_hash()
1489 form_error = curl_formadd(&first, &last, in build_mime_structure_from_hash()
1496 if (form_error != CURL_FORMADD_OK) { in build_mime_structure_from_hash()
1498 error = (CURLcode)form_error; in build_mime_structure_from_hash()
1551 if ((form_error = curl_mime_name(part, ZSTR_VAL(string_key))) != CURLE_OK in build_mime_structure_from_hash()
1552 || (form_error = curl_mime_data(part, ZSTR_VAL(postval), ZSTR_LEN(postval))) != CURLE_OK in build_mime_structure_from_hash()
1553 || (form_error = curl_mime_filename(part, filename)) != CURLE_OK in build_mime_structure_from_hash()
1554 || (form_error = curl_mime_type(part, type)) != CURLE_OK) { in build_mime_structure_from_hash()
1555 error = form_error; in build_mime_structure_from_hash()
1561 form_error = curl_formadd(&first, &last, in build_mime_structure_from_hash()
1569 if (form_error != CURL_FORMADD_OK) { in build_mime_structure_from_hash()
1571 error = (CURLcode)form_error; in build_mime_structure_from_hash()