Lines Matching refs:part

1372 	curl_mimepart *part;  in add_simple_field()  local
1378 part = curl_mime_addpart(mime); in add_simple_field()
1379 if (part == NULL) { in add_simple_field()
1384 if ((form_error = curl_mime_name(part, ZSTR_VAL(string_key))) != CURLE_OK in add_simple_field()
1385 || (form_error = curl_mime_data(part, ZSTR_VAL(postval), ZSTR_LEN(postval))) != CURLE_OK) { in add_simple_field()
1402 curl_mimepart *part; in build_mime_structure_from_hash() local
1470 part = curl_mime_addpart(mime); in build_mime_structure_from_hash()
1471 if (part == NULL) { in build_mime_structure_from_hash()
1475 if ((form_error = curl_mime_name(part, ZSTR_VAL(string_key))) != CURLE_OK in build_mime_structure_from_hash()
1476 …|| (form_error = curl_mime_data_cb(part, filesize, read_cb, seekfunc, free_cb, cb_arg)) != CURLE_OK in build_mime_structure_from_hash()
1477 || (form_error = curl_mime_filename(part, filename ? filename : ZSTR_VAL(postval))) != CURLE_OK in build_mime_structure_from_hash()
1478 || (form_error = curl_mime_type(part, type ? type : "application/octet-stream")) != CURLE_OK) { in build_mime_structure_from_hash()
1526 part = curl_mime_addpart(mime); in build_mime_structure_from_hash()
1527 if (part == NULL) { in build_mime_structure_from_hash()
1531 if ((form_error = curl_mime_name(part, ZSTR_VAL(string_key))) != CURLE_OK in build_mime_structure_from_hash()
1532 || (form_error = curl_mime_data(part, ZSTR_VAL(postval), ZSTR_LEN(postval))) != CURLE_OK in build_mime_structure_from_hash()
1533 || (form_error = curl_mime_filename(part, filename)) != CURLE_OK in build_mime_structure_from_hash()
1534 || (form_error = curl_mime_type(part, type)) != CURLE_OK) { in build_mime_structure_from_hash()