Lines Matching refs:fci
1026 zend_fcall_info fci; in curl_write() local
1037 fci.size = sizeof(fci); in curl_write()
1038 fci.function_table = EG(function_table); in curl_write()
1039 fci.object_ptr = NULL; in curl_write()
1040 fci.function_name = t->func_name; in curl_write()
1041 fci.retval_ptr_ptr = &retval_ptr; in curl_write()
1042 fci.param_count = 2; in curl_write()
1043 fci.params = argv; in curl_write()
1044 fci.no_separation = 0; in curl_write()
1045 fci.symbol_table = NULL; in curl_write()
1048 error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); in curl_write()
1094 zend_fcall_info fci; in curl_progress() local
1112 fci.size = sizeof(fci); in curl_progress()
1113 fci.function_table = EG(function_table); in curl_progress()
1114 fci.function_name = t->func_name; in curl_progress()
1115 fci.object_ptr = NULL; in curl_progress()
1116 fci.retval_ptr_ptr = &retval_ptr; in curl_progress()
1117 fci.param_count = 4; in curl_progress()
1118 fci.params = argv; in curl_progress()
1119 fci.no_separation = 0; in curl_progress()
1120 fci.symbol_table = NULL; in curl_progress()
1123 error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); in curl_progress()
1169 zend_fcall_info fci; in curl_read() local
1186 fci.size = sizeof(fci); in curl_read()
1187 fci.function_table = EG(function_table); in curl_read()
1188 fci.function_name = t->func_name; in curl_read()
1189 fci.object_ptr = NULL; in curl_read()
1190 fci.retval_ptr_ptr = &retval_ptr; in curl_read()
1191 fci.param_count = 3; in curl_read()
1192 fci.params = argv; in curl_read()
1193 fci.no_separation = 0; in curl_read()
1194 fci.symbol_table = NULL; in curl_read()
1197 error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); in curl_read()
1251 zend_fcall_info fci; in curl_write_header() local
1263 fci.size = sizeof(fci); in curl_write_header()
1264 fci.function_table = EG(function_table); in curl_write_header()
1265 fci.function_name = t->func_name; in curl_write_header()
1266 fci.symbol_table = NULL; in curl_write_header()
1267 fci.object_ptr = NULL; in curl_write_header()
1268 fci.retval_ptr_ptr = &retval_ptr; in curl_write_header()
1269 fci.param_count = 2; in curl_write_header()
1270 fci.params = argv; in curl_write_header()
1271 fci.no_separation = 0; in curl_write_header()
1274 error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); in curl_write_header()