Home
last modified time | relevance | path

Searched refs:params (Results 151 – 175 of 180) sorted by relevance

12345678

/PHP-5.3/ext/standard/
H A Darray.c582 BG(user_compare_fci).params = args; in php_array_user_compare()
748 BG(user_compare_fci).params = args; in php_array_user_key_compare()
1065 BG(array_walk_fci).params = args; in php_array_walk()
4137 fci.params = args; in PHP_FUNCTION()
4194 fci.params = args; in PHP_FUNCTION()
4231 zval ***params; in PHP_FUNCTION() local
4311 params[i] = &null; in PHP_FUNCTION()
4315 zval_add_ref(params[i]); in PHP_FUNCTION()
4323 fci.params = params; in PHP_FUNCTION()
4333 efree(params); in PHP_FUNCTION()
[all …]
/PHP-5.3/main/
H A Dmain.c668 PHPAPI void php_verror(const char *docref, const char *params, int type, const char *format, va_lis… in php_verror() argument
737 origin_len = spprintf(&origin, 0, "%s%s%s(%s)", class_name, space, function, params); in php_verror()
866 char *params; in php_error_docref2() local
869 spprintf(&params, 0, "%s,%s", param1, param2); in php_error_docref2()
871 php_verror(docref, params ? params : "...", type, format, args TSRMLS_CC); in php_error_docref2()
873 if (params) { in php_error_docref2()
874 efree(params); in php_error_docref2()
H A Dphp.h292 PHPAPI void php_verror(const char *docref, const char *params, int type, const char *format, va_lis…
/PHP-5.3/ext/mysqli/tests/
H A Dbug_mysql_49406.phpt2 MySQL Bug #49406 (Binding params doesn't work when selecting a date inside a CASE-WHEN, http://bugs…
/PHP-5.3/Zend/
H A Dzend_alloc.h234 zend_mm_storage* (*init)(void *params);
247 …end_mm_mem_handlers *handlers, size_t block_size, size_t reserve_size, int internal, void *params);
H A Dzend_API.h50 zval ***params; member
434 …object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[] TSRMLS_DC);
435 …val *function_name, zval **retval_ptr_ptr, zend_uint param_count, zval **params[], int no_separati…
460 ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval ****params);
464 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
1016 …zend_mm_mem_handlers *handlers, size_t block_size, size_t reserve_size, int internal, void *params) in zend_mm_startup_ex() argument
1061 storage = handlers->init(params); in zend_mm_startup_ex()
H A Dzend_exceptions.c596 fci.params = NULL; in ZEND_METHOD()
/PHP-5.3/ext/pdo/
H A Dpdo_dbh.c471 fci.params = safe_emalloc(sizeof(zval*), ht->nNumOfElements, 0); in pdo_stmt_construct()
474 fci.params[fci.param_count++] = (zval**)p->pData; in pdo_stmt_construct()
479 fci.params = NULL; in pdo_stmt_construct()
497 if (fci.params) { in pdo_stmt_construct()
498 efree(fci.params); in pdo_stmt_construct()
H A Dpdo_stmt.c106 ZEND_ARG_INFO(0, params) in ZEND_END_ARG_INFO()
765 fci->params = safe_emalloc(sizeof(zval**), ht->nNumOfElements, 0); in do_fetch_class_prepare()
768 fci->params[fci->param_count++] = (zval**)p->pData; in do_fetch_class_prepare()
773 fci->params = NULL; in do_fetch_class_prepare()
810 fci->params = safe_emalloc(sizeof(zval**), num_args, 0); in make_callable_ex()
833 if (stmt->fetch.cls.fci.size && stmt->fetch.cls.fci.params) { in do_fetch_opt_finish()
834 efree(stmt->fetch.cls.fci.params); in do_fetch_opt_finish()
835 stmt->fetch.cls.fci.params = NULL; in do_fetch_opt_finish()
1164 stmt->fetch.cls.fci.params[idx] = &stmt->fetch.func.values[idx]; in do_fetch()
/PHP-5.3/ext/mysqli/
H A Dmysqli.c1284 fci.params = safe_emalloc(sizeof(zval*), params_ht->nNumOfElements, 0); in php_mysqli_fetch_into_hash()
1287 fci.params[fci.param_count++] = (zval**)p->pData; in php_mysqli_fetch_into_hash()
1302 fci.params = NULL; in php_mysqli_fetch_into_hash()
1319 if (fci.params) { in php_mysqli_fetch_into_hash()
1320 efree(fci.params); in php_mysqli_fetch_into_hash()
H A Dmysqli_fe.c183 ZEND_ARG_ARRAY_INFO(0, params, 0)
190 ZEND_ARG_ARRAY_INFO(0, params, 0)
/PHP-5.3/ext/pdo_mysql/
H A Dmysql_driver.c259 S->params = NULL; in mysql_handle_preparer()
261 S->params = ecalloc(S->num_params, sizeof(MYSQL_BIND)); in mysql_handle_preparer()
/PHP-5.3/ext/soap/
H A Dphp_sdl.c600 zend_hash_internal_pointer_reset_ex(params, &pos); in wsdl_soap_binding_body()
601 while (zend_hash_get_current_data_ex(params, (void **)&param, &pos) != FAILURE) { in wsdl_soap_binding_body()
612 zend_hash_move_forward_ex(params, &pos); in wsdl_soap_binding_body()
620 zend_hash_destroy(params); in wsdl_soap_binding_body()
621 *params = ht; in wsdl_soap_binding_body()
2507 static HashTable* make_persistent_sdl_parameters(HashTable *params, HashTable *ptr_map) in make_persistent_sdl_parameters() argument
2518 zend_hash_init(pparams, zend_hash_num_elements(params), NULL, delete_parameter_persistent, 1); in make_persistent_sdl_parameters()
2520 zend_hash_internal_pointer_reset(params); in make_persistent_sdl_parameters()
2521 while (zend_hash_get_current_data(params, (void**)&tmp) == SUCCESS) { in make_persistent_sdl_parameters()
2543 if (zend_hash_get_current_key_ex(params, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) { in make_persistent_sdl_parameters()
[all …]
/PHP-5.3/ext/pdo_sqlite/
H A Dsqlite_driver.c384 fc->fci.params = zargs; in do_callback()
507 collation->fc.fci.params = zargs; in php_sqlite3_collation_callback()
/PHP-5.3/ext/mysql/
H A Dphp_mysql.c2140 fci.params = safe_emalloc(sizeof(zval*), htl->nNumOfElements, 0);
2143 fci.params[fci.param_count++] = (zval**)p->pData;
2158 fci.params = NULL;
2175 if (fci.params) {
2176 efree(fci.params);
/PHP-5.3/ext/spl/
H A Dspl_directory.c2107 zval ***params = (zval***)safe_emalloc(num_args, sizeof(zval**), 0); in spl_filesystem_file_call() local
2109 params[0] = &zresource_ptr; in spl_filesystem_file_call()
2112 params[1] = &arg2; in spl_filesystem_file_call()
2115 zend_get_parameters_array_ex(pass_num_args, params+(arg2 ? 2 : 1)); in spl_filesystem_file_call()
2125 fci.params = params; in spl_filesystem_file_call()
2143 efree(params); in spl_filesystem_file_call()
/PHP-5.3/ext/sqlite/
H A Dsqlite.c2439 fci.params = safe_emalloc(sizeof(zval*), ht->nNumOfElements, 0); in PHP_FUNCTION()
2442 fci.params[fci.param_count++] = (zval**)p->pData; in PHP_FUNCTION()
2457 fci.params = NULL; in PHP_FUNCTION()
2474 if (fci.params) { in PHP_FUNCTION()
2475 efree(fci.params); in PHP_FUNCTION()
/PHP-5.3/ext/curl/
H A Dinterface.c1031 fci.params = argv; in curl_write()
1106 fci.params = argv; in curl_progress()
1180 fci.params = argv; in curl_read()
1257 fci.params = argv; in curl_write_header()
/PHP-5.3/ext/phar/
H A Dphar_object.c680 zval *params, *retval_ptr, **zp[1]; local
682 MAKE_STD_ZVAL(params);
683 ZVAL_STRINGL(params, entry, entry_len, 1);
684 zp[0] = &params;
701 fci.params = zp;
703 ++(params->refcount);
705 Z_ADDREF_P(params);
/PHP-5.3/ext/imap/
H A Dphp_imap.c108 ZEND_ARG_INFO(0, params)
1153 zval *params = NULL; in php_imap_do_open() local
1157 &passwd, &passwd_len, &flags, &retries, &params) == FAILURE) { in php_imap_do_open()
1171 if (params) { in php_imap_do_open()
1174 …if (zend_hash_find(HASH_OF(params), "DISABLE_AUTHENTICATOR", sizeof("DISABLE_AUTHENTICATOR"), (voi… in php_imap_do_open()
/PHP-5.3/ext/sqlite3/
H A Dsqlite3.c752 fc->fci.params = zargs;
881 collation->fci.fci.params = zargs;
/PHP-5.3/ext/ldap/
H A Dldap.c2055 int _ldap_rebind_proc(LDAP *ldap, const char *url, ber_tag_t req, ber_int_t msgid, void *params) in _ldap_rebind_proc() argument
2062 zval *cb_link = (zval *) params; in _ldap_rebind_proc()
/PHP-5.3/ext/xmlrpc/
H A Dxmlrpc-epi-php.c98 ZEND_ARG_INFO(0, params)
/PHP-5.3/main/streams/
H A Duserspace.c310 fci.params = NULL; in user_wrapper_opener()

Completed in 186 milliseconds

12345678