Lines Matching refs:function_table

1350 		ft = &(Z_OBJCE(service->soap_object)->function_table);  in PHP_METHOD()
1352 ft = &service->soap_class.ce->function_table; in PHP_METHOD()
1354 ft = EG(function_table); in PHP_METHOD()
1414 if ((f = zend_hash_find_ptr(EG(function_table), key)) == NULL) { in PHP_METHOD()
1431 if ((f = zend_hash_find_ptr(EG(function_table), key)) == NULL) { in PHP_METHOD()
1494 HashTable *function_table; local
1536 …if (call_user_function(EG(function_table), NULL, &readfile, &readfile_ret, 1, &param ) == FAILURE)…
1661 function_table = &((Z_OBJCE_P(soap_obj))->function_table);
1690 …if (zend_hash_str_exists(&Z_OBJCE(tmp_soap)->function_table, ZEND_CONSTRUCTOR_FUNC_NAME, sizeof(ZE…
1712 …if (zend_hash_str_exists(&Z_OBJCE(tmp_soap)->function_table, php_strtolower(class_name, class_name…
1755 function_table = &((Z_OBJCE_P(soap_obj))->function_table);
1758 function_table = EG(function_table);
1760 function_table = service->soap_functions.ft;
1783 …if (zend_hash_str_exists(function_table, php_strtolower(fn_name, Z_STRLEN(h->function_name)), Z_ST…
1785 zend_hash_str_exists(function_table, ZEND_CALL_FUNC_NAME, sizeof(ZEND_CALL_FUNC_NAME)-1))) {
1789 …call_status = call_user_function(EG(function_table), NULL, &h->function_name, &h->retval, h->num_p…
1822 …if (zend_hash_str_exists(function_table, php_strtolower(fn_name, Z_STRLEN(function_name)), Z_STRLE…
1824 zend_hash_str_exists(function_table, ZEND_CALL_FUNC_NAME, sizeof(ZEND_CALL_FUNC_NAME)-1))) {
1839 …call_status = call_user_function(EG(function_table), NULL, &function_name, &retval, num_params, pa…
2390 zend_hash_str_exists(EG(function_table), "gzinflate", sizeof("gzinflate")-1) &&
2391 zend_hash_str_exists(EG(function_table), "gzdeflate", sizeof("gzdeflate")-1) &&
2392 zend_hash_str_exists(EG(function_table), "gzuncompress", sizeof("gzuncompress")-1) &&
2393 zend_hash_str_exists(EG(function_table), "gzcompress", sizeof("gzcompress")-1) &&
2394 zend_hash_str_exists(EG(function_table), "gzencode", sizeof("gzencode")-1)) {