Lines Matching refs:postval

2027 		zend_string *postval, *tmp_postval;  in build_mime_structure_from_hash()  local
2054 postval = Z_STR_P(prop); in build_mime_structure_from_hash()
2056 if (php_check_open_basedir(ZSTR_VAL(postval))) { in build_mime_structure_from_hash()
2075 if ((stream = php_stream_open_wrapper(ZSTR_VAL(postval), "rb", STREAM_MUST_SEEK, NULL))) { in build_mime_structure_from_hash()
2084 cb_arg->filename = zend_string_copy(postval); in build_mime_structure_from_hash()
2094 || (form_error = curl_mime_filename(part, filename ? filename : ZSTR_VAL(postval))) != CURLE_OK in build_mime_structure_from_hash()
2103 CURLFORM_FILENAME, filename ? filename : ZSTR_VAL(postval), in build_mime_structure_from_hash()
2105 CURLFORM_FILE, ZSTR_VAL(postval), in build_mime_structure_from_hash()
2151 postval = Z_STR_P(prop); in build_mime_structure_from_hash()
2163 || (form_error = curl_mime_data(part, ZSTR_VAL(postval), ZSTR_LEN(postval))) != CURLE_OK in build_mime_structure_from_hash()
2169 postval = zend_string_copy(postval); in build_mime_structure_from_hash()
2170 zend_llist_add_element(&ch->to_free->buffers, &postval); in build_mime_structure_from_hash()
2177 CURLFORM_BUFFERPTR, ZSTR_VAL(postval), in build_mime_structure_from_hash()
2178 CURLFORM_BUFFERLENGTH, ZSTR_LEN(postval), in build_mime_structure_from_hash()
2190 postval = zval_get_tmp_string(current, &tmp_postval); in build_mime_structure_from_hash()
2200 || (form_error = curl_mime_data(part, ZSTR_VAL(postval), ZSTR_LEN(postval))) != CURLE_OK) { in build_mime_structure_from_hash()
2210 CURLFORM_COPYCONTENTS, ZSTR_VAL(postval), in build_mime_structure_from_hash()
2211 CURLFORM_CONTENTSLENGTH, ZSTR_LEN(postval), in build_mime_structure_from_hash()