| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | os.c | 1161 ParamBlockRec params; 1162 memset(¶ms, 0, sizeof(ParamBlockRec)); 1163 params.ioParam.ioRefNum = id->refNum; 1164 if( PBFlushFileSync(¶ms) != noErr ){ 1398 ParamBlockRec params; local 1401 memset(¶ms, 0, sizeof(params)); 1402 params.ioParam.ioRefNum = id->refNumRF; 1403 params.ioParam.ioPosMode = fsFromStart; 1404 params 1506 ParamBlockRec params; local 1610 ParamBlockRec params; local [all...] |
| /PHP_5_3/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_3/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_3/ |
| 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_3/ext/com_dotnet/ |
| H A D | com_wrapper.c | 262 zval ***params = NULL; local 274 params = (zval ***)safe_emalloc(sizeof(zval **), pdp->cArgs, 0); 285 params[i] = (zval**)emalloc(sizeof(zval**)); 286 *params[i] = zarg; 298 zend_update_property(Z_OBJCE_P(disp->object), disp->object, Z_STRVAL_PP(name), Z_STRLEN_PP(name)+1, *params[0] TSRMLS_CC); 302 &retval, pdp->cArgs, params, 1, NULL TSRMLS_CC)) { 308 php_com_dotnet_object *obj = CDNO_FETCH(*params[i]); 329 if (params) { 331 zval_ptr_dtor(params[i]); 332 efree(params[ [all...] |
| /PHP_5_3/ext/iconv/ |
| H A D | iconv.c | 2780 static php_stream_filter *php_iconv_stream_filter_factory_create(const char *name, zval *params, int persistent TSRMLS_DC) argument
|
| /PHP_5_3/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_3/ext/mysqli/ |
| H A D | mysqli_api.c | 163 MYSQLND_PARAM_BIND *params; local 166 /* If no params -> skip binding and return directly */ 170 params = mysqlnd_stmt_alloc_param_bind(stmt->stmt); 171 if (!params) { 197 mysqlnd_stmt_free_param_bind(stmt->stmt, params); 200 params[i].zv = *(args[i + start]); 201 params[i].type = type; 203 ret = mysqlnd_stmt_bind_param(stmt->stmt, params); 459 MYSQLND_RESULT_BIND * params = mysqlnd_stmt_alloc_result_bind(stmt->stmt); local 460 if (params) { [all...] |
| /PHP_5_3/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_3/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_3/ext/pdo_mysql/ |
| H A D | php_pdo_mysql_int.h | 137 PDO_MYSQL_PARAM_BIND *params; member in struct:__anon138
|
| /PHP_5_3/ext/readline/ |
| H A D | readline.c | 461 zval *params[3]; local 466 params[0]=_readline_string_zval(text); 467 params[1]=_readline_long_zval(start); 468 params[2]=_readline_long_zval(end); 470 if (call_user_function(CG(function_table), NULL, _readline_completion, &_readline_array, 3, params TSRMLS_CC) == SUCCESS) { 486 zval_ptr_dtor(¶ms[i]); 532 zval *params[1]; local 538 params[0] = _readline_string_zval(the_line); 540 call_user_function(CG(function_table), NULL, _prepped_callback, &dummy, 1, params TSRMLS_CC); 542 zval_ptr_dtor(¶ms[ [all...] |
| /PHP_5_3/ext/reflection/ |
| H A D | php_reflection.c | 1318 zval *retval_ptr, **params[2]; local 1344 params[0] = &argument_ptr; 1345 params[1] = &argument2_ptr; 1354 fci.params = params; 1380 params[0] = &reflector_ptr; 1381 params[1] = &output_ptr; 1389 fci.params = params; 1747 zval ***params local 1806 zval ***params; local 2556 zval ***params = NULL; local 2659 zval ***params; local 3900 zval ***params = NULL; local 3982 zval ***params = NULL; local [all...] |
| /PHP_5_3/ext/soap/ |
| H A D | php_http.c | 320 zval *params[3]; local 323 params[0] = ¶m1; 324 INIT_PZVAL(params[0]); 325 params[1] = ¶m2; 326 INIT_PZVAL(params[1]); 327 params[2] = ¶m3; 328 INIT_PZVAL(params[2]); 329 ZVAL_STRINGL(params[0], buf, buf_size, 0); 330 ZVAL_LONG(params[1], level); 339 ZVAL_LONG(params[ 1178 zval *params[1]; local [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | basic_functions.c | 723 ZEND_ARG_INFO(0, params) /* ARRAY_INFO(0, params, 1) */ 2066 ZEND_ARG_INFO(0, params) /* ARRAY_INFO(0, params, 1) */ 4783 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f*", &fci, &fci_cache, &fci.params, &fci.param_count) == FAILURE) { 4793 if (fci.params) { 4794 efree(fci.params); 4803 zval *params, *retval_ptr = NULL; local 4807 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "fa/", &fci, &fci_cache, ¶ms) == FAILURE) { 4811 zend_fcall_info_args(&fci, params TSRMLS_C 4826 zval ***params = NULL; local 4864 zval *params, ***method_args = NULL, *retval_ptr; local 4942 zval *params, *retval_ptr = NULL; local [all...] |
| H A D | streamsfuncs.c | 946 static int parse_context_params(php_stream_context *context, zval *params TSRMLS_DC) 951 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(params), "notification", sizeof("notification"), (void**)&tmp)) { 964 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(params), "options", sizeof("options"), (void**)&tmp)) { 1064 zval *params, *zcontext; local 1067 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ra", &zcontext, ¶ms) == FAILURE) { 1077 RETVAL_BOOL(parse_context_params(context, params TSRMLS_CC) == SUCCESS); 1113 zval *params = NULL; local 1116 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|a", ¶ms) == FAILURE) { 1125 if (params) { 1126 parse_context_options(context, params TSRMLS_C 1159 zval *options = NULL, *params = NULL; local [all...] |
| /PHP_5_3/ext/xsl/ |
| H A D | xsltprocessor.c | 132 char **params = NULL; local 136 params = (char **)safe_emalloc((2 * zend_hash_num_elements(parht) + 1), sizeof(char *), 0); 137 memset((char *)params, 0, parsize); 145 efree(params); 159 params[i++] = string_key; 160 params[i++] = xpath_expr; 167 params[i++] = NULL; 169 return params; 224 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0); 286 fci.params[ 473 char **params = NULL; local [all...] |
| /PHP_5_3/main/ |
| H A D | output.c | 224 zval **params[2]; local 245 params[0] = &orig_buffer; 246 params[1] = &z_status; 249 if (call_user_function_ex(CG(function_table), NULL, OG(active_ob_buffer).output_handler, &alternate_buffer, 2, params, 1, NULL TSRMLS_CC)==SUCCESS) {
|
| H A D | main.c | 668 PHPAPI void php_verror(const char *docref, const char *params, int type, const char *format, va_list args TSRMLS_DC) argument 737 origin_len = spprintf(&origin, 0, "%s%s%s(%s)", class_name, space, function, params); 866 char *params; local 869 spprintf(¶ms, 0, "%s,%s", param1, param2); 871 php_verror(docref, params ? params : "...", type, format, args TSRMLS_CC); 873 if (params) { 874 efree(params);
|
| /PHP_5_3/Zend/ |
| H A D | zend.c | 982 zval ***params; local 1129 params = (zval ***) emalloc(sizeof(zval **)*5); 1130 params[0] = &z_error_type; 1131 params[1] = &z_error_message; 1132 params[2] = &z_error_filename; 1133 params[3] = &z_error_lineno; 1134 params[4] = &z_context; 1158 if (call_user_function_ex(CG(function_table), NULL, orig_user_error_handler, &retval, 5, params, 1, NULL TSRMLS_CC) == SUCCESS) { 1189 efree(params); 1264 zval **params[ local [all...] |
| H A D | zend_execute_API.c | 716 int call_user_function(HashTable *function_table, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[] TSRMLS_DC) /* {{{ */ 726 params_array[i] = ¶ms[i]; 744 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 754 fci.params = params; 867 && PZVAL_IS_REF(*fci->params[i])) { 869 *param = **(fci->params[i]); 873 && !PZVAL_IS_REF(*fci->params[i])) { 875 if (Z_REFCOUNT_PP(fci->params[i]) > 1) { 895 *new_zval = **fci->params[ [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_vm_gen.php | 267 $params = array(); // parameters of helpers variable 788 global $params, $skeleton_file, $line_no; 846 foreach ($params as $param => $x) { 971 $op_types, $list, $opcodes, $helpers, $params, $opnames; 1063 $params[$param] = 1;
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_directory.c | 2105 zval ***params = (zval***)safe_emalloc(num_args, sizeof(zval**), 0); local 2107 params[0] = &zresource_ptr; 2110 params[1] = &arg2; 2113 zend_get_parameters_array_ex(pass_num_args, params+(arg2 ? 2 : 1)); 2123 fci.params = params; 2141 efree(params);
|