Lines Matching refs:part

1278 	curl_mimepart *part;  in add_simple_field()  local
1284 part = curl_mime_addpart(mime); in add_simple_field()
1285 if (part == NULL) { in add_simple_field()
1290 if ((form_error = curl_mime_name(part, ZSTR_VAL(string_key))) != CURLE_OK in add_simple_field()
1291 || (form_error = curl_mime_data(part, ZSTR_VAL(postval), ZSTR_LEN(postval))) != CURLE_OK) { in add_simple_field()
1308 curl_mimepart *part; in build_mime_structure_from_hash() local
1376 part = curl_mime_addpart(mime); in build_mime_structure_from_hash()
1377 if (part == NULL) { in build_mime_structure_from_hash()
1381 if ((form_error = curl_mime_name(part, ZSTR_VAL(string_key))) != CURLE_OK in build_mime_structure_from_hash()
1382 …|| (form_error = curl_mime_data_cb(part, filesize, read_cb, seekfunc, free_cb, cb_arg)) != CURLE_OK in build_mime_structure_from_hash()
1383 || (form_error = curl_mime_filename(part, filename ? filename : ZSTR_VAL(postval))) != CURLE_OK in build_mime_structure_from_hash()
1384 || (form_error = curl_mime_type(part, type ? type : "application/octet-stream")) != CURLE_OK) { in build_mime_structure_from_hash()
1432 part = curl_mime_addpart(mime); in build_mime_structure_from_hash()
1433 if (part == NULL) { in build_mime_structure_from_hash()
1437 if ((form_error = curl_mime_name(part, ZSTR_VAL(string_key))) != CURLE_OK in build_mime_structure_from_hash()
1438 || (form_error = curl_mime_data(part, ZSTR_VAL(postval), ZSTR_LEN(postval))) != CURLE_OK in build_mime_structure_from_hash()
1439 || (form_error = curl_mime_filename(part, filename)) != CURLE_OK in build_mime_structure_from_hash()
1440 || (form_error = curl_mime_type(part, type)) != CURLE_OK) { in build_mime_structure_from_hash()