Home
last modified time | relevance | path

Searched refs:functions (Results 1 – 25 of 1113) sorted by last modified time

12345678910>>...45

/PHP-7.4/
H A DNEWS824 . Fixed bug #79668 (get_defined_functions(true) may miss functions). (cmb,
964 . Fixed bug #79200 (Some iconv functions cut Windows-1258). (cmb)
1331 compiled functions). (Majkl578)
1475 . Fixed bug #78314 (missing freetype support/functions with external gd).
1517 . Fixed bug #77907 (mb-functions do not respect default_encoding). (Nikita)
2105 . Implemented FR #72777 (Implement regex stack limits for mbregex functions).
2270 . Fixed bug #77552 (Unintialized php_stream_statbuf in stat functions).
2400 . Fixed bug #77370 (Buffer overflow on mb regex functions - fetch_token).
2402 . Fixed bug #77371 (heap buffer overflow in mb regex functions
2508 . Fixed bug #33502 (Some nullary functions don't check the number of
[all …]
H A Dconfigure.ac393 dnl checks, if we already have the functions which are usually in libnsl. Also,
414 dnl QNX requires unix.h to allow functions in libunix to work properly.
583 dnl Checks for library functions.
H A Dphp.ini-development205 ; functions.
309 ; This directive allows you to disable certain functions.
311 ; http://php.net/disable-functions
960 ; Defines the default timezone used by the date functions
1011 ; happens within intl functions. The value is the level of the error produced.
1302 ; Number of decimal digits for all bcmath functions.
1317 ; variable in order to use PHP's session functions.
1667 ; overload(replace) single byte functions by mbstring functions.
1673 ; 2: Overload str*() functions
1674 ; 4: Overload ereg*() functions
[all …]
H A Dphp.ini-production205 ; functions.
309 ; This directive allows you to disable certain functions.
311 ; http://php.net/disable-functions
960 ; Defines the default timezone used by the date functions
1011 ; happens within intl functions. The value is the level of the error produced.
1302 ; Number of decimal digits for all bcmath functions.
1317 ; variable in order to use PHP's session functions.
1667 ; overload(replace) single byte functions by mbstring functions.
1673 ; 2: Overload str*() functions
1674 ; 4: Overload ereg*() functions
[all …]
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c13396 executable_functions *functions; in jit_compile() local
14005 if (functions == NULL) in jit_compile()
14013 memset(functions, 0, sizeof(executable_functions)); in jit_compile()
14014 functions->top_bracket = re->top_bracket + 1; in jit_compile()
14015 functions->limit_match = re->limit_match; in jit_compile()
14016 re->executable_jit = functions; in jit_compile()
14026 functions->executable_funcs[mode] = executable_func; in jit_compile()
14028 functions->executable_sizes[mode] = executable_size; in jit_compile()
14141 || functions->executable_funcs[0] == NULL)) { in pcre2_jit_compile()
14149 || functions->executable_funcs[1] == NULL)) { in pcre2_jit_compile()
[all …]
/PHP-7.4/ext/pgsql/tests/
H A D06copy_2.phpt2 PostgreSQL copy functions, part 2
/PHP-7.4/ext/fileinfo/tests/
H A Dfinfo_file_basic.phpt10 * Alias to functions:
/PHP-7.4/Zend/
H A Dzend_API.c2048 …if (module->functions && zend_register_functions(NULL, module->functions, NULL, module->type)==FAI… in zend_register_module_ex()
2140 ZEND_API int zend_register_functions(zend_class_entry *scope, const zend_function_entry *functions,… in zend_register_functions() argument
2142 const zend_function_entry *ptr = functions; in zend_register_functions()
2260 zend_unregister_functions(functions, count, target_function_table); in zend_register_functions()
2383 zend_unregister_functions(functions, count, target_function_table); in zend_register_functions()
2488 ZEND_API void zend_unregister_functions(const zend_function_entry *functions, int count, HashTable … in zend_unregister_functions() argument
2490 const zend_function_entry *ptr = functions; in zend_unregister_functions()
2586 if (module->type == MODULE_TEMPORARY && module->functions) { in module_destructor()
2587 zend_unregister_functions(module->functions, -1, NULL); in module_destructor()
H A DZend.m4148 dnl Checks for library functions.
/PHP-7.4/ext/standard/
H A Dinfo.c866 const zend_multibyte_functions *functions = zend_multibyte_get_functions(); in php_print_info() local
868 if (functions) { in php_print_info()
869 spprintf(&descr, 0, "provided by %s", functions->provider_name); in php_print_info()
H A Dconfig.m4299 dnl Check for available functions
351 dnl Detect library functions needed by php dns_xxx functions
362 dnl These are old deprecated functions
/PHP-7.4/ext/zlib/
H A Dphp_zlib.def5 ; basic functions
11 ; advanced functions
27 ; utility functions
52 ; checksum functions
/PHP-7.4/ext/phar/tests/
H A Dphar_gobyebye-win32.phpt2 Phar: test edge cases of intercepted functions when the underlying phar archive has been unlinkArch…
/PHP-7.4/ext/soap/
H A Dphp_sdl.c1544 sdlFunctionPtr *functions = NULL; in get_sdl_from_cache() local
1706 sdl_deserialize_key(&sdl->functions, func, &in); in get_sdl_from_cache()
1763 functions[i] = func; in get_sdl_from_cache()
1781 if (functions) { in get_sdl_from_cache()
1782 efree(functions); in get_sdl_from_cache()
2293 i = zend_hash_num_elements(&sdl->functions); in add_sdl_to_cache()
2301 ZEND_HASH_FOREACH_STR_KEY_PTR(&sdl->functions, key, tmp) { in add_sdl_to_cache()
3070 …zend_hash_init(&psdl->functions, zend_hash_num_elements(&sdl->functions), NULL, delete_function_pe… in make_persistent_sdl()
3071 if (zend_hash_num_elements(&sdl->functions)) { in make_persistent_sdl()
3124 zend_hash_destroy(&tmp->functions); in delete_psdl_int()
[all …]
H A Dsoap.c309 ZEND_ARG_INFO(0, functions)
2946 ZEND_HASH_FOREACH_PTR(&sdl->functions, function) {
4513 if ((tmp = zend_hash_str_find_ptr(&sdl->functions, str, len)) != NULL) {
4532 ZEND_HASH_FOREACH_PTR(&sdl->functions, tmp) {
/PHP-7.4/ext/standard/tests/url/
H A Dparse_url_basic_003.phpt8 * Alias to functions:
H A Dparse_url_basic_005.phpt8 * Alias to functions:
H A Dparse_url_basic_001.phpt8 * Alias to functions:
H A Dparse_url_basic_004.phpt8 * Alias to functions:
/PHP-7.4/build/
H A Dphp.m4999 dnl This macro is scanned by genif.sh when it builds the internal functions
1029 dnl Checks for structures, typedefs, broken functions, etc.
1115 dnl Check type of reentrant time-related functions. Type can be: irix, hpux or
1119 AC_CACHE_CHECK(for type of reentrant time-related functions, ac_cv_time_r_type,[
1162 irix[)] AC_DEFINE(PHP_IRIX_TIME_R,1,[Whether you have IRIX-style functions]) ;;
1279 AC_MSG_CHECKING([for missing declarations of reentrant functions])
H A Dlibtool.m44289 # Compiler flag to turn off builtin functions.
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_fork.phpt13 die("skip POSIX functions not available");
H A Dmysqli_debug_mysqlnd_control_string.phpt127 // -f[,functions] - Limit debugger list to specified functions. Empty list -> all functions
148 …printf("[105] Looks like not all functions are listed in the trace. Check manually, dumping diff."…
195 …printf("[115] Dumping list of unexpected functions which should have not been shown when using con…
201 …printf("[116] Dumping list of functions which should have been shown when using control string '%s…
H A Dmysqli_debug_mysqlnd_only.phpt94 printf("[016] Only %d memory functions have been found, expecting at least %d.\n",
118 printf("[026] More than %d memory functions have been recorded, that's strange.\n",
H A D017.phpt2 mysqli fetch functions

Completed in 153 milliseconds

12345678910>>...45