| /PHP_5_5/ext/mysqli/tests/ |
| H A D | reflection_tools.inc | 92 if ($params = $method->getParameters()) { 94 foreach ($params as $k => $param)
|
| /PHP_5_5/ext/phar/phar/ |
| H A D | directorytreeiterator.inc | 48 function __call($func, $params) 50 return call_user_func_array(array($this->getSubIterator(), $func), $params);
|
| /PHP_5_5/ext/soap/interop/ |
| H A D | client_round2_params.php | 39 function SOAP_Test($methodname, $params, $expect = NULL, $cmp_func = NULL) { 40 # XXX we have to do this to make php-soap happy with NULL params 41 if (!$params) $params = array(); 50 $this->method_params = $params; 59 if ($params) { 60 $v = array_values($params); 94 print "method params: "; 95 print_r($this->params);
|
| /PHP_5_5/ext/spl/examples/ |
| H A D | directorytreeiterator.inc | 48 function __call($func, $params) 50 return call_user_func_array(array($this->getSubIterator(), $func), $params);
|
| H A D | searchiterator.inc | 52 function __call($func, $params) 54 return call_user_func_array(array($this->getInnerIterator(), $func), $params);
|
| /PHP_5_5/ext/spl/internal/ |
| H A D | cachingiterator.inc | 120 * @param params Array of parameters to pass to method 122 function __call($func, $params) 124 return call_user_func_array(array($this->it, $func), $params);
|
| H A D | filteriterator.inc | 119 * @param params Array of parameters to pass to method 121 function __call($func, $params) 123 return call_user_func_array(array($this->it, $func), $params);
|
| H A D | iteratoriterator.inc | 108 * @param params Array of parameters to pass to method 110 function __call($func, $params) 112 return call_user_func_array(array($this->iterator, $func), $params);
|
| H A D | limititerator.inc | 126 * @param params Array of parameters to pass to method 128 function __call($func, $params) 130 return call_user_func_array(array($this->it, $func), $params);
|
| H A D | recursivetreeiterator.inc | 126 function __call($func, $params) 128 return call_user_func_array(array($this->getSubIterator(), $func), $params);
|
| /PHP_5_5/ext/xmlrpc/libxmlrpc/ |
| H A D | system_methods.c | 92 "<params>" 96 "</params>" 107 "<value type='system.valueList' name='params' optional='yes'>parameter list</value>" 172 "<params>" 174 "</params>" 199 "<params>" 201 "</params>" 230 "<params>" 234 "<value type='array' name='params' desc='an array representing the params t 326 XMLRPC_VALUE params = XMLRPC_VectorGetValueWithID(xMethodIter, "params"); local [all...] |
| /PHP_5_5/scripts/dev/ |
| H A D | check_parameters.php | 165 /** fetch params passed to zend_parse_params*() */ 212 $params = get_params($vars, $m[2][0]); variable 249 check_param($params, ++$j, 'UConverter*', $optional); 265 check_param($params, ++$j, 'zval****', $optional); 266 check_param($params, ++$j, 'int*', $optional); 277 check_param($params, ++$j, $exp, $optional);
|
| /PHP_5_5/ext/com_dotnet/ |
| H A D | com_wrapper.c | 256 zval ***params = NULL; local 268 params = (zval ***)safe_emalloc(sizeof(zval **), pdp->cArgs, 0); 279 params[i] = (zval**)emalloc(sizeof(zval**)); 280 *params[i] = zarg; 292 zend_update_property(Z_OBJCE_P(disp->object), disp->object, Z_STRVAL_PP(name), Z_STRLEN_PP(name)+1, *params[0] TSRMLS_CC); 296 &retval, pdp->cArgs, params, 1, NULL TSRMLS_CC)) { 302 php_com_dotnet_object *obj = CDNO_FETCH(*params[i]); 323 if (params) { 325 zval_ptr_dtor(params[i]); 326 efree(params[ [all...] |
| /PHP_5_5/ext/odbc/ |
| H A D | php_odbc.c | 1233 params_t *params = NULL; local 1264 params = (params_t *)safe_emalloc(sizeof(params_t), result->numparams, 0); 1266 params[i].fp = -1; 1274 if (params[i].fp != -1) { 1275 close(params[i].fp); 1278 efree(params); 1288 if (params[i].fp != -1) { 1289 close(params[i].fp); 1292 efree(params); 1297 params[ [all...] |
| /PHP_5_5/ext/pdo/ |
| H A D | pdo_sql_parser.c | 441 HashTable *params; local 507 params = stmt->bound_params; 509 /* Do we have placeholders but no bound params */ 510 if (bindno && !params && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) { 516 if (params && bindno != zend_hash_num_elements(params) && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) { 517 /* extra bit of validation for instances when same params are bound more then once */ 518 if (query_type != PDO_PLACEHOLDER_POSITIONAL && bindno > zend_hash_num_elements(params)) { 521 if (zend_hash_find(params, plc->pos, plc->len, (void**) ¶m) == FAILURE) { 544 ret = zend_hash_index_find(params, pl [all...] |
| H A D | pdo_sql_parser.re | 88 HashTable *params; 154 params = stmt->bound_params; 156 /* Do we have placeholders but no bound params */ 157 if (bindno && !params && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) { 163 if (params && bindno != zend_hash_num_elements(params) && stmt->supports_placeholders == PDO_PLACEHOLDER_NONE) { 164 /* extra bit of validation for instances when same params are bound more then once */ 165 if (query_type != PDO_PLACEHOLDER_POSITIONAL && bindno > zend_hash_num_elements(params)) { 168 if (zend_hash_find(params, plc->pos, plc->len, (void**) ¶m) == FAILURE) { 191 ret = zend_hash_index_find(params, pl [all...] |
| /PHP_5_5/ext/readline/ |
| H A D | readline.c | 476 zval *params[3]; local 481 params[0]=_readline_string_zval(text); 482 params[1]=_readline_long_zval(start); 483 params[2]=_readline_long_zval(end); 485 if (call_user_function(CG(function_table), NULL, _readline_completion, &_readline_array, 3, params TSRMLS_CC) == SUCCESS) { 501 zval_ptr_dtor(¶ms[i]); 547 zval *params[1]; local 553 params[0] = _readline_string_zval(the_line); 555 call_user_function(CG(function_table), NULL, _prepped_callback, &dummy, 1, params TSRMLS_CC); 557 zval_ptr_dtor(¶ms[ [all...] |
| /PHP_5_5/ext/xsl/ |
| H A D | xsltprocessor.c | 141 char **params = NULL; local 145 params = (char **)safe_emalloc((2 * zend_hash_num_elements(parht) + 1), sizeof(char *), 0); 146 memset((char *)params, 0, parsize); 154 efree(params); 168 params[i++] = string_key; 169 params[i++] = xpath_expr; 176 params[i++] = NULL; 178 return params; 233 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0); 295 fci.params[ 484 char **params = NULL; local [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend.c | 1014 zval ***params; local 1170 params = (zval ***) emalloc(sizeof(zval **)*5); 1171 params[0] = &z_error_type; 1172 params[1] = &z_error_message; 1173 params[2] = &z_error_filename; 1174 params[3] = &z_error_lineno; 1175 params[4] = &z_context; 1199 if (call_user_function_ex(CG(function_table), NULL, orig_user_error_handler, &retval, 5, params, 1, NULL TSRMLS_CC) == SUCCESS) { 1230 efree(params); 1321 zval **params[ local [all...] |
| H A D | zend_execute_API.c | 687 int call_user_function(HashTable *function_table, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[] TSRMLS_DC) /* {{{ */ 697 params_array[i] = ¶ms[i]; 715 int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *function_name, zval **retval_ptr_ptr, zend_uint param_count, zval **params[], int no_separation, HashTable *symbol_table TSRMLS_DC) /* {{{ */ argument 725 fci.params = params; 836 if (!PZVAL_IS_REF(*fci->params[i]) && Z_REFCOUNT_PP(fci->params[i]) > 1) { 856 *new_zval = **fci->params[i]; 859 Z_DELREF_PP(fci->params[i]); 860 *fci->params[ [all...] |
| /PHP_5_5/ext/oci8/ |
| H A D | php_oci8_int.h | 256 #define PHP_OCI_CALL(func, params) \ 262 func params; \ 266 #define PHP_OCI_CALL_RETURN(__retval, func, params) \ 272 __retval = func params; \
|
| /PHP_5_5/ext/reflection/ |
| H A D | php_reflection.c | 1368 zval *retval_ptr, **params[2]; local 1394 params[0] = &argument_ptr; 1395 params[1] = &argument2_ptr; 1404 fci.params = params; 1430 params[0] = &reflector_ptr; 1431 params[1] = &output_ptr; 1439 fci.params = params; 1899 zval ***params local 1958 zval ***params; local 2821 zval ***params = NULL; local 2924 zval ***params; local 4211 zval ***params = NULL; local 4319 zval ***params = NULL; local [all...] |
| /PHP_5_5/ext/soap/ |
| H A D | php_http.c | 382 zval *params[3]; local 385 params[0] = ¶m1; 386 INIT_PZVAL(params[0]); 387 params[1] = ¶m2; 388 INIT_PZVAL(params[1]); 389 params[2] = ¶m3; 390 INIT_PZVAL(params[2]); 391 ZVAL_STRINGL(params[0], buf, buf_size, 0); 392 ZVAL_LONG(params[1], level); 401 ZVAL_LONG(params[ 1242 zval *params[1]; local [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | streamsfuncs.c | 953 static int parse_context_params(php_stream_context *context, zval *params TSRMLS_DC) 958 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(params), "notification", sizeof("notification"), (void**)&tmp)) { 971 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(params), "options", sizeof("options"), (void**)&tmp)) { 1071 zval *params, *zcontext; local 1074 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ra", &zcontext, ¶ms) == FAILURE) { 1084 RETVAL_BOOL(parse_context_params(context, params TSRMLS_CC) == SUCCESS); 1120 zval *params = NULL; local 1123 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|a", ¶ms) == FAILURE) { 1132 if (params) { 1133 parse_context_options(context, params TSRMLS_C 1166 zval *options = NULL, *params = NULL; local [all...] |
| /PHP_5_5/ext/sockets/ |
| H A D | conversions.c | 71 HashTable params; /* stores pointers; has to be first */ member in struct:_ser_context 79 HashTable params; /* stores pointers; has to be first */ member in struct:_res_context 970 if (zend_hash_add(&ctx->params, KEY_CMSG_LEN, sizeof(KEY_CMSG_LEN), 978 zend_hash_del(&ctx->params, KEY_CMSG_LEN, sizeof(KEY_CMSG_LEN)); 1159 if (zend_hash_add(&ctx->params, KEY_FILL_SOCKADDR, sizeof(KEY_FILL_SOCKADDR), 1167 zend_hash_del(&ctx->params, KEY_FILL_SOCKADDR, sizeof(KEY_FILL_SOCKADDR)); 1194 if (zend_hash_find(&ctx->params, KEY_RECVMSG_RET, sizeof(KEY_RECVMSG_RET), 1196 do_to_zval_err(ctx, "recvmsg_ret not found in params. This is a bug"); 1403 if (zend_hash_find(&ctx->params, KEY_CMSG_LEN, sizeof(KEY_CMSG_LEN), 1469 zend_hash_init(&ctx.params, [all...] |