| /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...] |
| H A D | xml_to_xmlrpc.c | 64 #define ELEM_PARAMS "params" 406 /* Despite the spec, the xml-rpc list folk want me to send an empty params element */ 407 xml_element* params = xml_elem_new(); local 408 params->name = strdup(ELEM_PARAMS); 409 Q_PushTail(&wrapper->children, params);
|
| /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/ |
| H A D | server-tests.php | 220 $params = NULL; variable 224 $params = settings2params($info_params); variable 226 $out = execute($php, $params, $code, $cwd, $env); 520 $params = array(); variable 521 settings2array($this->ini_overwrites,$params); 522 $this->info_params = settings2params($params);
|
| /PHP_5_5/Zend/ |
| H A D | zend_vm_gen.php | 267 $params = array(); // parameters of helpers variable 806 global $params, $skeleton_file, $line_no; 909 foreach ($params as $param => $x) { 1028 $op_types, $list, $opcodes, $helpers, $params, $opnames; 1120 $params[$param] = 1;
|
| 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_interfaces.c | 42 zval **params[2]; local 44 params[0] = &arg1; 45 params[1] = &arg2; 53 fci.params = params;
|
| 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/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/iconv/ |
| H A D | iconv.c | 2793 static php_stream_filter *php_iconv_stream_filter_factory_create(const char *name, zval *params, int persistent TSRMLS_DC) argument
|
| /PHP_5_5/ext/ldap/ |
| H A D | ldap.c | 2055 int _ldap_rebind_proc(LDAP *ldap, const char *url, ber_tag_t req, ber_int_t msgid, void *params) argument 2062 zval *cb_link = (zval *) params;
|
| /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...] |
| /PHP_5_5/ext/pdo_mysql/ |
| H A D | php_pdo_mysql_int.h | 136 PDO_MYSQL_PARAM_BIND *params; member in struct:__anon156
|
| /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/ext/libxml/ |
| H A D | libxml.c | 560 **params[] = {&public, &system, &ctxzv}, local 600 fci->params = params; 601 fci->param_count = sizeof(params)/sizeof(*params);
|
| /PHP_5_5/ext/spl/ |
| H A D | spl_directory.c | 2095 zval ***params = (zval***)safe_emalloc(num_args, sizeof(zval**), 0); local 2097 params[0] = &zresource_ptr; 2100 params[1] = &arg2; 2103 zend_get_parameters_array_ex(pass_num_args, params+(arg2 ? 2 : 1)); 2113 fci.params = params; 2131 efree(params);
|
| H A D | spl_iterators.c | 1903 zval **params[3]; local 1914 params[0] = &intern->current.data; 1915 params[1] = &intern->current.key; 1916 params[2] = &intern->inner.zobject; 1920 fci->params = params; 3556 /* {{{ proto int iterator_apply(Traversable it, mixed function [, mixed params])
|
| /PHP_5_5/ext/standard/ |
| H A D | basic_functions.c | 732 ZEND_ARG_INFO(0, params) /* ARRAY_INFO(0, params, 1) */ 2082 ZEND_ARG_INFO(0, params) /* ARRAY_INFO(0, params, 1) */ 4774 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f*", &fci, &fci_cache, &fci.params, &fci.param_count) == FAILURE) { 4784 if (fci.params) { 4785 efree(fci.params); 4794 zval *params, *retval_ptr = NULL; local 4798 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "fa/", &fci, &fci_cache, ¶ms) == FAILURE) { 4802 zend_fcall_info_args(&fci, params TSRMLS_C 4817 zval ***params = NULL; local 4855 zval *params, ***method_args = NULL, *retval_ptr; local 4933 zval *params, *retval_ptr = NULL; local [all...] |
| 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/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/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...] |
| /PHP_5_5/ext/mysqli/ |
| H A D | mysqli_api.c | 164 MYSQLND_PARAM_BIND *params; local 167 /* If no params -> skip binding and return directly */ 171 params = mysqlnd_stmt_alloc_param_bind(stmt->stmt); 172 if (!params) { 198 mysqlnd_stmt_free_param_bind(stmt->stmt, params); 201 params[i].zv = *(args[i + start]); 202 params[i].type = type; 204 ret = mysqlnd_stmt_bind_param(stmt->stmt, params); 460 MYSQLND_RESULT_BIND * params = mysqlnd_stmt_alloc_result_bind(stmt->stmt); local 461 if (params) { [all...] |
| /PHP_5_5/ext/phar/ |
| H A D | phar_object.c | 682 zval *params, *retval_ptr, **zp[1]; local 684 MAKE_STD_ZVAL(params); 685 ZVAL_STRINGL(params, entry, entry_len, 1); 686 zp[0] = ¶ms; 703 fci.params = zp; 705 ++(params->refcount); 707 Z_ADDREF_P(params);
|