Lines Matching refs:postfields
453 zval *postfields; in curl_clone_obj() local
471 postfields = &clone_ch->postfields; in curl_clone_obj()
472 if (Z_TYPE_P(postfields) != IS_UNDEF) { in curl_clone_obj()
473 if (build_mime_structure_from_hash(clone_ch, postfields) == FAILURE) { in curl_clone_obj()
488 zend_get_gc_buffer_add_zval(gc_buffer, &curl->postfields); in curl_get_gc()
1112 ZVAL_UNDEF(&ch->postfields); in init_curl_handle()
1391 HashTable *postfields = Z_ARRVAL_P(zpostfields); in build_mime_structure_from_hash() local
1407 if (zend_hash_num_elements(postfields) > 0) { in build_mime_structure_from_hash()
1415 ZEND_HASH_FOREACH_KEY_VAL(postfields, num_key, string_key, current) { in build_mime_structure_from_hash()
1461 zval_ptr_dtor(&ch->postfields); in build_mime_structure_from_hash()
1462 ZVAL_COPY(&ch->postfields, zpostfields); in build_mime_structure_from_hash()
1543 zval_ptr_dtor(&ch->postfields); in build_mime_structure_from_hash()
1544 ZVAL_COPY(&ch->postfields, zpostfields); in build_mime_structure_from_hash()
1631 zval *postfields; in PHP_FUNCTION() local
1650 postfields = &ch->postfields; in PHP_FUNCTION()
1651 if (Z_TYPE_P(postfields) != IS_UNDEF) { in PHP_FUNCTION()
1652 if (build_mime_structure_from_hash(dupch, postfields) == FAILURE) { in PHP_FUNCTION()
3002 zval_ptr_dtor(&ch->postfields); in curl_free_obj()