Home
last modified time | relevance | path

Searched refs:func (Results 101 – 125 of 170) sorted by relevance

1234567

/PHP-5.5/ext/tidy/tests/
H A D024.phpt11 // more info at http://sf.net/tracker/?func=detail&atid=390963&aid=1598422&group_id=27659
H A D027.phpt8 // bug report from http://sf.net/tracker/?func=detail&atid=390963&aid=1641868&group_id=27659
/PHP-5.5/ext/sqlite3/
H A Dphp_sqlite3_structs.h61 zval *func, *step, *fini; member
/PHP-5.5/ext/pdo/tests/
H A Dpecl_bug_5772.phpt2 PDO Common: PECL Bug #5772 (PDO::FETCH_FUNC breaks on mixed case func name)
/PHP-5.5/ext/standard/tests/file/
H A Duserstreams_003.phpt30 function test($name, $fd, $return_value, $func, $args, $expected_option, $expected_value) {
36 var_dump(call_user_func_array($func, $args));
H A Dfilestat.phpt2 various file stat func tests
/PHP-5.5/ext/spl/internal/
H A Dappenditerator.inc116 function __call($func, $params)
118 return call_user_func_array(array($this->getInnerIterator(), $func), $params);
H A Drecursivetreeiterator.inc126 function __call($func, $params)
128 return call_user_func_array(array($this->getSubIterator(), $func), $params);
/PHP-5.5/ext/zlib/tests/
H A Dgzgetc_basic.phpt8 include 'func.inc';
H A Dgzgetc_basic_1.phpt8 include 'func.inc';
/PHP-5.5/ext/phar/phar/
H A Dclicommand.inc122 $func = $prefix . $sub . '_' . $what;
124 if ($r->hasMethod($func)) {
128 $a[$what][$sub] = /*$m->class . '::' .*/ $func;
242 private function cli_help_get_args($func, $l, $sp, $required)
245 foreach(call_user_func($func, $l, $sp) as $arg => $conf) {
/PHP-5.5/Zend/
H A Dzend_builtin_functions.c1139 union _zend_function *func = NULL; in ZEND_FUNCTION() local
1145 if (func->type == ZEND_INTERNAL_FUNCTION in ZEND_FUNCTION()
1146 && (func->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0 in ZEND_FUNCTION()
1149 RETVAL_BOOL((func->common.scope == zend_ce_closure in ZEND_FUNCTION()
1155 efree(func); in ZEND_FUNCTION()
1353 zend_function *func; in ZEND_FUNCTION() local
1378 if (retval && func->type == ZEND_INTERNAL_FUNCTION && in ZEND_FUNCTION()
1720 if (func->type == ZEND_INTERNAL_FUNCTION) { in copy_function_name()
1722 } else if (func->type == ZEND_USER_FUNCTION) { in copy_function_name()
1825 zend_function new_function, *func; in ZEND_FUNCTION() local
[all …]
H A Dzend_hash.h310 #define ZEND_HANDLE_NUMERIC_EX(key, length, idx, func) do { \ in END_EXTERN_C() argument
340 func; \ in END_EXTERN_C()
345 #define ZEND_HANDLE_NUMERIC(key, length, func) do { \ argument
348 ZEND_HANDLE_NUMERIC_EX(key, length, idx, return func); \
/PHP-5.5/ext/gd/tests/
H A Dbug43073_1.phpt8 include dirname(__FILE__) . '/func.inc';
H A Dbug43073.phpt8 include dirname(__FILE__) . '/func.inc';
/PHP-5.5/ext/standard/
H A Dphp_smart_str.h168 #define smart_str_append_generic_ex(dest, num, type, vartype, func) do { \ argument
171 smart_str_print##func##4 (__b + sizeof(__b) - 1, (num), vartype, __t); \
H A Dfilestat.c129 gdfse_func func; in php_disk_total_space() local
150 func = (gdfse_func)gdfse; in php_disk_total_space()
151 if (func(path, in php_disk_total_space()
261 gdfse_func func; in php_disk_free_space() local
282 func = (gdfse_func)gdfse; in php_disk_free_space()
283 if (func(path, in php_disk_free_space()
/PHP-5.5/ext/mysql/tests/
H A Dmysql_reflection_functions.phpt16 foreach ($functions as $func) {
17 if (isset($ignore[$func->name]))
20 printf(" %s\n", $func->name);
21 $rf = new ReflectionFunction($func->name);
/PHP-5.5/main/
H A Dphp_output.h143 } func; member
248 …const char *handler_name, size_t handler_name_len, php_output_handler_alias_ctor_t func TSRMLS_DC);
/PHP-5.5/ext/mbstring/oniguruma/
H A Donigposix.h162 ONIG_EXTERN int reg_foreach_name P_((regex_t* reg, int (*func)(const unsigned char*, const unsigne…
H A Dst.c478 st_foreach(table, func, arg) in st_foreach() argument
480 int (*func)();
490 retval = (*func)(ptr->key, ptr->record, arg);
/PHP-5.5/ext/opcache/
H A Dzend_accelerator_blacklist.c374 void zend_accel_blacklist_apply(zend_blacklist *blacklist, apply_func_arg_t func, void *argument TS… argument
379 func(&blacklist->entries[i], argument TSRMLS_CC);
/PHP-5.5/ext/com_dotnet/
H A Dcom_handlers.c266 union _zend_function *func; in com_method_get() local
358 func = emalloc(sizeof(*fptr)); in com_method_get()
359 memcpy(func, fptr, sizeof(*fptr)); in com_method_get()
361 return func; in com_method_get()
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c843 if (stmt->fetch.func.values) { in do_fetch_opt_finish()
844 efree(stmt->fetch.func.values); in do_fetch_opt_finish()
845 stmt->fetch.func.values = NULL; in do_fetch_opt_finish()
1010 if (!stmt->fetch.func.function) { in do_fetch()
1014 if (!stmt->fetch.func.fci.size) { in do_fetch()
1161 stmt->fetch.func.values[idx] = val; in do_fetch()
1196 stmt->fetch.func.fci.param_count = idx; in do_fetch()
1197 stmt->fetch.func.fci.retval_ptr_ptr = &retval; in do_fetch()
1198 if (zend_call_function(&stmt->fetch.func.fci, &stmt->fetch.func.fcc TSRMLS_CC) == FAILURE) { in do_fetch()
1211 zval_ptr_dtor(&stmt->fetch.func.values[idx]); in do_fetch()
[all …]
/PHP-5.5/main/streams/
H A Dphp_stream_context.h46 php_stream_notification_func func; member

Completed in 175 milliseconds

1234567