Lines Matching refs:postfields
1233 zval *postfields; in curl_clone_obj() local
1251 postfields = &clone_ch->postfields; in curl_clone_obj()
1252 if (Z_TYPE_P(postfields) != IS_UNDEF) { in curl_clone_obj()
1253 if (build_mime_structure_from_hash(clone_ch, postfields) != SUCCESS) { in curl_clone_obj()
1268 zend_get_gc_buffer_add_zval(gc_buffer, &curl->postfields); in curl_get_gc()
1776 ZVAL_UNDEF(&ch->postfields); in init_curl_handle()
2001 HashTable *postfields = Z_ARRVAL_P(zpostfields); in build_mime_structure_from_hash() local
2017 if (zend_hash_num_elements(postfields) > 0) { in build_mime_structure_from_hash()
2025 ZEND_HASH_FOREACH_KEY_VAL(postfields, num_key, string_key, current) { in build_mime_structure_from_hash()
2071 zval_ptr_dtor(&ch->postfields); in build_mime_structure_from_hash()
2072 ZVAL_COPY(&ch->postfields, zpostfields); in build_mime_structure_from_hash()
2178 zval *postfields; in PHP_FUNCTION() local
2197 postfields = &ch->postfields; in PHP_FUNCTION()
2198 if (Z_TYPE_P(postfields) != IS_UNDEF) { in PHP_FUNCTION()
2199 if (build_mime_structure_from_hash(dupch, postfields) != SUCCESS) { in PHP_FUNCTION()
3390 zval_ptr_dtor(&ch->postfields); in curl_free_obj()