Home
last modified time | relevance | path

Searched refs:params (Results 126 – 150 of 208) sorted by last modified time

123456789

/PHP-5.5/ext/phar/tests/
H A D002.phpt2 Phar::mapPhar truncated manifest/improper params
/PHP-5.5/ext/phar/phar/
H A Ddirectorytreeiterator.inc48 function __call($func, $params)
50 return call_user_func_array(array($this->getSubIterator(), $func), $params);
/PHP-5.5/ext/pgsql/
H A Dpgsql.c170 ZEND_ARG_INFO(0, params)
186 ZEND_ARG_INFO(0, params)
1796 if (params[i]) {
1797 efree(params[i]);
1800 efree(params);
1817 char **params = NULL; local
1867 params[i] = NULL;
2074 params[i] = NULL;
2728 if (fci.params) {
4763 params[i] = NULL;
[all …]
/PHP-5.5/ext/pgsql/tests/
H A D25async_query_params.phpt2 PostgreSQL async query params
H A D23sync_query_params.phpt2 PostgreSQL sync query params
/PHP-5.5/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.5/ext/pdo_sqlite/tests/
H A Ddebugdumpparams_001.phpt2 Testing PDOStatement::debugDumpParams() with bound params
/PHP-5.5/ext/pdo_oci/
H A Doci_statement.c36 #define STMT_CALL(name, params) \ argument
38 S->last_err = name params; \
45 #define STMT_CALL_MSG(name, msg, params) \ argument
47 S->last_err = name params; \
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_emulated.phpt128 $params = array(':placeholder' => 'a');
130 $params[str_repeat('a', $i)] = 'some data';
133 $params, array('execute' => array('sqlstate' => 'HY093')));
233 $params = array('a');
235 $params[] = 'some data';
238 $params, array('execute' => array('sqlstate' => 'HY093')));
H A Dpdo_mysql_prepare_native.phpt140 $params = array(':placeholder' => 'a');
142 $params[str_repeat('a', $i)] = 'some data';
145 $params, array('execute' => array('sqlstate' => 'HY093')));
225 $params = array('a');
227 $params[] = 'some data';
230 $params, array('execute' => array('sqlstate' => 'HY093')));
H A Dpdo_mysql_stmt_fetch_serialize.phpt41 public function __call($method, $params) {
42 printf("%s(%s, %s)\n", __METHOD__, $method, var_export($params, true));
/PHP-5.5/ext/pdo_mysql/
H A Dmysql_driver.c234 S->params = NULL; in mysql_handle_preparer()
236 S->params = ecalloc(S->num_params, sizeof(MYSQL_BIND)); in mysql_handle_preparer()
H A Dmysql_statement.c68 if (S->params) { in pdo_mysql_stmt_dtor()
69 efree(S->params); in pdo_mysql_stmt_dtor()
170 if (mysql_stmt_bind_param(S->stmt, S->params) || mysql_stmt_execute(S->stmt)) { in pdo_mysql_stmt_execute_prepared_libmysql()
171 if (S->params) { in pdo_mysql_stmt_execute_prepared_libmysql()
172 memset(S->params, 0, S->num_params * sizeof(MYSQL_BIND)); in pdo_mysql_stmt_execute_prepared_libmysql()
470 b = &S->params[param->paramno]; in pdo_mysql_stmt_param_hook()
H A Dphp_pdo_mysql_int.h136 PDO_MYSQL_PARAM_BIND *params; member
/PHP-5.5/ext/pdo/tests/
H A Dpdo_030.phpt38 function execute($params = array())
H A Dpdo_029.phpt37 function execute($params = array())
H A Dbug_44861.phpt56 // Test binding params via emulated prepared query
/PHP-5.5/ext/pdo/
H A Dpdo_dbh.c476 fci.params = safe_emalloc(sizeof(zval*), ht->nNumOfElements, 0); in pdo_stmt_construct()
479 fci.params[fci.param_count++] = (zval**)p->pData; in pdo_stmt_construct()
484 fci.params = NULL; in pdo_stmt_construct()
502 if (fci.params) { in pdo_stmt_construct()
503 efree(fci.params); in pdo_stmt_construct()
H A Dpdo_sql_parser.c446 HashTable *params; in pdo_parse_params() local
512 params = stmt->bound_params; in pdo_parse_params()
521 …if (params && bindno != zend_hash_num_elements(params) && stmt->supports_placeholders == PDO_PLACE… in pdo_parse_params()
549 ret = zend_hash_index_find(params, plc->bindno, (void**) &param); in pdo_parse_params()
551 ret = zend_hash_find(params, plc->pos, plc->len, (void**) &param); in pdo_parse_params()
756 HashTable *params = stmt->bound_params;
767 if(params) {
768 zend_hash_internal_pointer_reset(params);
778 zend_hash_move_forward(params);
793 if(!params) {
[all …]
H A Dpdo_sql_parser.re88 HashTable *params;
154 params = stmt->bound_params;
156 /* Do we have placeholders but no bound params */
163 …if (params && bindno != zend_hash_num_elements(params) && stmt->supports_placeholders == PDO_PLACE…
191 ret = zend_hash_index_find(params, plc->bindno, (void**) &param);
398 HashTable *params = stmt->bound_params;
409 if(params) {
410 zend_hash_internal_pointer_reset(params);
420 zend_hash_move_forward(params);
435 if(!params) {
[all …]
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()
1162 stmt->fetch.cls.fci.params[idx] = &stmt->fetch.func.values[idx]; in do_fetch()
/PHP-5.5/ext/odbc/
H A Dphp_odbc.c1272 params_t *params = NULL; in PHP_FUNCTION() local
1305 params[i].fp = -1; in PHP_FUNCTION()
1317 efree(params); in PHP_FUNCTION()
1331 efree(params); in PHP_FUNCTION()
1337 params[i-1].fp = -1; in PHP_FUNCTION()
1346 efree(params); in PHP_FUNCTION()
1375 efree(params); in PHP_FUNCTION()
1387 efree(params); in PHP_FUNCTION()
1421 efree(params); in PHP_FUNCTION()
1466 close(params[i].fp); in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/oci8/tests/
H A Dfetch_into2.phpt2 ocifetchinto() & wrong number of params
/PHP-5.5/ext/oci8/
H A Dphp_oci8_int.h256 #define PHP_OCI_CALL(func, params) \ argument
262 func params; \
266 #define PHP_OCI_CALL_RETURN(__retval, func, params) \ argument
272 __retval = func params; \
/PHP-5.5/ext/mysqli/tests/
H A Dreflection_tools.inc92 if ($params = $method->getParameters()) {
94 foreach ($params as $k => $param)

Completed in 89 milliseconds

123456789