Lines Matching refs:postval

1352 	zend_string *postval, *tmp_postval;  in add_simple_field()  local
1354 postval = zval_get_tmp_string(current, &tmp_postval); in add_simple_field()
1364 || (form_error = curl_mime_data(part, ZSTR_VAL(postval), ZSTR_LEN(postval))) != CURLE_OK) { in add_simple_field()
1374 CURLFORM_COPYCONTENTS, ZSTR_VAL(postval), in add_simple_field()
1375 CURLFORM_CONTENTSLENGTH, ZSTR_LEN(postval), in add_simple_field()
1416 zend_string *postval; in build_mime_structure_from_hash() local
1443 postval = Z_STR_P(prop); in build_mime_structure_from_hash()
1445 if (php_check_open_basedir(ZSTR_VAL(postval))) { in build_mime_structure_from_hash()
1464 if ((stream = php_stream_open_wrapper(ZSTR_VAL(postval), "rb", STREAM_MUST_SEEK, NULL))) { in build_mime_structure_from_hash()
1473 cb_arg->filename = zend_string_copy(postval); 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()
1492 CURLFORM_FILENAME, filename ? filename : ZSTR_VAL(postval), in build_mime_structure_from_hash()
1494 CURLFORM_FILE, ZSTR_VAL(postval), in build_mime_structure_from_hash()
1540 postval = Z_STR_P(prop); 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()
1558 postval = zend_string_copy(postval); in build_mime_structure_from_hash()
1559 zend_llist_add_element(&ch->to_free->buffers, &postval); in build_mime_structure_from_hash()
1566 CURLFORM_BUFFERPTR, ZSTR_VAL(postval), in build_mime_structure_from_hash()
1567 CURLFORM_BUFFERLENGTH, ZSTR_LEN(postval), in build_mime_structure_from_hash()