Home
last modified time | relevance | path

Searched refs:params (Results 176 – 200 of 208) sorted by last modified time

123456789

/PHP-5.5/ext/dom/
H A Dxpath.c118 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0); in dom_xpath_ext_function_php()
177 fci.params[i] = &args[i]; in dom_xpath_ext_function_php()
192 efree(fci.params); in dom_xpath_ext_function_php()
253 efree(fci.params); in dom_xpath_ext_function_php()
/PHP-5.5/ext/date/tests/
H A Ddate_add_basic2.phpt2 date_add() return false with wrong params
H A Ddate_create_from_format_basic.phpt2 date_create_from_format() return false with wrong params
H A Ddate_parse_from_format_basic.phpt2 date_parse_from_format() return false with wrong params
H A D004.phpt2 date() format params
H A D005.phpt2 idate() and invalid params
/PHP-5.5/ext/curl/tests/
H A Dcurl_file_upload.phpt45 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt');
46 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
50 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt');
51 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
55 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt');
56 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
H A Dbug27023.phpt19 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt');
20 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
23 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt;type=text/plain');
24 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
27 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt;filename=foo.txt');
28 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
31 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt;type=text/plain;filename=foo.txt');
32 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
35 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt;filename=foo.txt;type=text/plain');
36 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
H A Dbug27023_2.phpt18 $params = array('file' => $file);
19 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
23 $params = array('file' => $file);
24 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
28 $params = array('file' => $file);
29 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
33 $params = array('file' => $file);
34 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
H A Dbug55767.phpt2 Test curl_opt() function with POST params from array with a numeric key
/PHP-5.5/ext/curl/
H A Dinterface.c1346 fci.params = argv; in curl_write()
1413 fci.params = argv; in curl_fnmatch()
1492 fci.params = argv; in curl_progress()
1567 fci.params = argv; in curl_read()
1645 fci.params = argv; in curl_write_header()
/PHP-5.5/ext/com_dotnet/
H A Dcom_wrapper.c256 zval ***params = NULL; in disp_invokeex() local
268 params = (zval ***)safe_emalloc(sizeof(zval **), pdp->cArgs, 0); in disp_invokeex()
279 params[i] = (zval**)emalloc(sizeof(zval**)); in disp_invokeex()
280 *params[i] = zarg; in disp_invokeex()
292 …OBJCE_P(disp->object), disp->object, Z_STRVAL_PP(name), Z_STRLEN_PP(name)+1, *params[0] TSRMLS_CC); in disp_invokeex()
296 &retval, pdp->cArgs, params, 1, NULL TSRMLS_CC)) { in disp_invokeex()
302 php_com_dotnet_object *obj = CDNO_FETCH(*params[i]); in disp_invokeex()
323 if (params) { in disp_invokeex()
325 zval_ptr_dtor(params[i]); in disp_invokeex()
326 efree(params[i]); in disp_invokeex()
[all …]
/PHP-5.5/Zend/
H A Dzend_vm_gen.php267 $params = array(); // parameters of helpers variable
806 global $params, $skeleton_file, $line_no;
915 foreach ($params as $param => $x) {
1034 $op_types, $list, $opcodes, $helpers, $params, $opnames;
1126 $params[$param] = 1;
H A Dzend_interfaces.c42 zval **params[2]; in zend_call_method() local
44 params[0] = &arg1; in zend_call_method()
45 params[1] = &arg2; in zend_call_method()
53 fci.params = params; in zend_call_method()
H A Dzend_execute_API.c690 params_array[i] = &params[i]; in call_user_function()
718 fci.params = params; in call_user_function_ex()
829 if (!PZVAL_IS_REF(*fci->params[i]) && Z_REFCOUNT_PP(fci->params[i]) > 1) { in zend_call_function()
853 *fci->params[i] = new_zval; in zend_call_function()
855 Z_ADDREF_PP(fci->params[i]); in zend_call_function()
857 param = *fci->params[i]; in zend_call_function()
862 *param = **(fci->params[i]); in zend_call_function()
866 Z_ADDREF_PP(fci->params[i]); in zend_call_function()
867 param = *fci->params[i]; in zend_call_function()
870 *param = **(fci->params[i]); in zend_call_function()
[all …]
H A Dzend_exceptions.c696 fci.params = NULL; in ZEND_METHOD()
H A Dzend_API.h50 zval ***params; member
450 …object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[] TSRMLS_DC);
451 …val *function_name, zval **retval_ptr_ptr, zend_uint param_count, zval **params[], int no_separati…
476 ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval ****params);
480 ZEND_API void zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval ***params);
H A Dzend_alloc.c137 static zend_mm_storage* zend_mm_mem_dummy_init(void *params) in zend_mm_mem_dummy_init() argument
202 static zend_mm_storage* zend_mm_mem_mmap_zero_init(void *params) in zend_mm_mem_mmap_zero_init() argument
235 static zend_mm_storage* zend_mm_mem_win32_init(void *params) in zend_mm_mem_win32_init() argument
1042 …zend_mm_mem_handlers *handlers, size_t block_size, size_t reserve_size, int internal, void *params) in zend_mm_startup_ex() argument
1087 storage = handlers->init(params); in zend_mm_startup_ex()
H A Dzend_alloc.h220 zend_mm_storage* (*init)(void *params);
233 …end_mm_mem_handlers *handlers, size_t block_size, size_t reserve_size, int internal, void *params);
H A Dzend_API.c3250 fci->params = NULL; in zend_fcall_info_init()
3260 if (fci->params) { in zend_fcall_info_args_clear()
3262 efree(fci->params); in zend_fcall_info_args_clear()
3263 fci->params = NULL; in zend_fcall_info_args_clear()
3273 *params = fci->params; in zend_fcall_info_args_save()
3275 fci->params = NULL; in zend_fcall_info_args_save()
3283 fci->params = params; in zend_fcall_info_args_restore()
3290 zval **arg, ***params; in zend_fcall_info_args() local
3303 fci->params = params = (zval ***) erealloc(fci->params, fci->param_count * sizeof(zval **)); in zend_fcall_info_args()
3307 *params++ = arg; in zend_fcall_info_args()
[all …]
H A Dzend.c1021 zval ***params; in zend_error() local
1179 params = (zval ***) emalloc(sizeof(zval **)*5); in zend_error()
1180 params[0] = &z_error_type; in zend_error()
1181 params[1] = &z_error_message; in zend_error()
1182 params[2] = &z_error_filename; in zend_error()
1183 params[3] = &z_error_lineno; in zend_error()
1184 params[4] = &z_context; in zend_error()
1209 …if (call_user_function_ex(CG(function_table), NULL, orig_user_error_handler, &retval, 5, params, 1… in zend_error()
1241 efree(params); in zend_error()
1332 zval **params[1], *retval2, *old_exception; in zend_execute_scripts() local
[all …]
/PHP-5.5/Zend/tests/
H A Dclosure_047.phpt6 function replace_variables($text, $params) {
8 preg_replace_callback( '/(\?)/', function($matches) use (&$params, &$text) {
10 $text = preg_replace( '/(\?)/', array_shift( $params ), $text, 1 );
H A Dclosure_048.phpt6 function replace_variables($text, $params) {
8 $c = function($matches) use (&$params, &$text) {
9 $text = preg_replace( '/(\?)/', array_shift( $params ), $text, 1 );
H A Dcall_user_func_002.phpt2 Testing call_user_func() with autoload and passing invalid params
H A Dbug54013.phpt10 $params = func_get_args();
18 $params = $reflectionClass->getMethod('b')->getParameters();
20 var_dump($params[0], $params[1]);

Completed in 95 milliseconds

123456789