Home
last modified time | relevance | path

Searched refs:level (Results 1 – 25 of 213) sorted by last modified time

123456789

/php-src/
H A DNEWS162 . Feature: Add transaction isolation level and mode settings to pdo_firebird.
H A DUPGRADING402 . Added new attributes to specify transaction isolation level and access mode.
497 . Added pcntl_getqos_class to get the QoS level (aka performance and related
H A Dphp.ini-development282 ; https://php.net/zlib.output-compression-level
429 ; Maximum input variable nesting level
430 ; https://php.net/max-input-nesting-level
451 ; directive is through the use of the error level constants and bitwise
452 ; operators. The error level constants are below here for convenience as well as
1020 ; happens within intl functions. The value is the level of the error produced.
1773 ; By default, only fatal errors (level 0) or errors (level 1) are logged.
1774 ; You can also enable warnings (level 2), info messages (level 3) or
1775 ; debug messages (level 4).
1799 ; Enables and sets the second level cache directory.
H A Dphp.ini-production282 ; https://php.net/zlib.output-compression-level
431 ; Maximum input variable nesting level
432 ; https://php.net/max-input-nesting-level
453 ; directive is through the use of the error level constants and bitwise
454 ; operators. The error level constants are below here for convenience as well as
1022 ; happens within intl functions. The value is the level of the error produced.
1775 ; By default, only fatal errors (level 0) or errors (level 1) are logged.
1776 ; You can also enable warnings (level 2), info messages (level 3) or
1777 ; debug messages (level 4).
1801 ; Enables and sets the second level cache directory.
/php-src/ext/libxml/
H A Dlibxml.c601 error_copy.level = XML_ERR_ERROR; in _php_list_set_error_structure()
613 static void php_libxml_ctx_error_level(int level, void *ctx, const char *msg, int line) in php_libxml_ctx_error_level() argument
621 php_error_docref(NULL, level, "%s in %s, line: %d", msg, parser->input->filename, line); in php_libxml_ctx_error_level()
623 php_error_docref(NULL, level, "%s in Entity, line: %d", msg, line); in php_libxml_ctx_error_level()
630 void php_libxml_issue_error(int level, const char *msg) in php_libxml_issue_error() argument
635 php_error_docref(NULL, level, "%s", msg); in php_libxml_issue_error()
1095 add_property_long(return_value, "level", error->level); in PHP_FUNCTION()
1131 add_property_long_ex(&z_error, "level", sizeof("level") - 1, error->level); in PHP_FUNCTION()
H A Dphp_libxml.h169 PHP_LIBXML_API void php_libxml_issue_error(int level, const char *msg);
/php-src/ext/sockets/
H A Dsockets_arginfo.h112 ZEND_ARG_TYPE_INFO(0, level, IS_LONG, 0)
120 ZEND_ARG_TYPE_INFO(0, level, IS_LONG, 0)
178 ZEND_ARG_TYPE_INFO(0, level, IS_LONG, 0)
H A Dsockets.stub.php1949 function socket_get_option(Socket $socket, int $level, int $option): array|int|false {} argument
1955 function socket_getopt(Socket $socket, int $level, int $option): array|int|false {} argument
1958 function socket_set_option(Socket $socket, int $level, int $option, $value): bool {} argument
1964 function socket_setopt(Socket $socket, int $level, int $option, $value): bool {} argument
1993 function socket_cmsg_space(int $level, int $type, int $num = 0): ?int {} argument
H A Dsockets.c1565 zend_long level, optname; local
1574 if (level == IPPROTO_IP) {
1593 else if (level == IPPROTO_IPV6) {
1603 if (level == IPPROTO_TCP) {
1623 if (level == SOL_SOCKET) {
1717 if (level == SOL_FILTER) {
1769 zend_long level, optname; local
1792 if (level == IPPROTO_IP) {
1798 else if (level == IPPROTO_IPV6) {
1807 if (level == IPPROTO_TCP) {
[all …]
/php-src/build/
H A Dlibtool.m4414 # Remove one level of quotation (which was required for Make).
/php-src/docs/
H A Drelease-process.md17 publish patch-level releases every four weeks, with at least one release
18 candidate (RC) published two weeks before each patch-level release.
155 > Then, from the patch-level version branch, you will create another
459 1. Check out the *patch-level version branch* for the release
470 patch-level version branch for this release.
472 Commit these changes and push the patch-level version branch. Ensure
477 > patch-level version branch.
499 the version numbers in the patch-level version branch should be
660 8.2. There is no need to provide the patch level.
785 ## Re-releasing the same version or a patch-level (i.e., `-plN`)
[all …]
/php-src/Zend/
H A Dzend_execute.c4209 int level; in zend_unfinished_calls_gc() local
4227 level = 0; in zend_unfinished_calls_gc()
4237 level++; in zend_unfinished_calls_gc()
4251 level--; in zend_unfinished_calls_gc()
4284 level = 0; in zend_unfinished_calls_gc()
4293 level++; in zend_unfinished_calls_gc()
4306 level--; in zend_unfinished_calls_gc()
4343 int level; in cleanup_unfinished_calls() local
4363 level = 0; in cleanup_unfinished_calls()
4372 level++; in cleanup_unfinished_calls()
[all …]
/php-src/main/
H A Doutput.c549 handler->level = zend_stack_push(&OG(handlers), &handler); in php_output_handler_start()
676 *(int *) arg = OG(running)->level; in php_output_handler_hook()
1108 if (handler->level) { in php_output_stack_apply_op()
1117 if (!handler->level) { in php_output_stack_apply_op()
1122 if (handler->level) { in php_output_stack_apply_op()
1179 add_assoc_long(entry, "level", (zend_long) handler->level); in php_output_handler_status()
1202 … %s (%d)", (flags&PHP_OUTPUT_POP_DISCARD)?"discard":"send", ZSTR_VAL(orphan->name), orphan->level); in php_output_stack_pop()
1326 …ol", E_NOTICE, "Failed to flush buffer of %s (%d)", ZSTR_VAL(OG(active)->name), OG(active)->level); in PHP_FUNCTION()
1346 …l", E_NOTICE, "Failed to delete buffer of %s (%d)", ZSTR_VAL(OG(active)->name), OG(active)->level); in PHP_FUNCTION()
1398 …l", E_NOTICE, "Failed to delete buffer of %s (%d)", ZSTR_VAL(OG(active)->name), OG(active)->level); in PHP_FUNCTION()
[all …]
H A Dphp_output.h125 int level; member
/php-src/ext/zlib/
H A Dzlib.c384 static zend_string *php_zlib_encode(const char *in_buf, size_t in_len, int encoding, int level) in php_zlib_encode() argument
394 …if (Z_OK == (status = deflateInit2(&Z, level, Z_DEFLATED, encoding, MAX_MEM_LEVEL, Z_DEFAULT_STRAT… in php_zlib_encode()
705 zend_long level = -1; \
708 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "S|ll", &in, &level, &encoding)) { \
712 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "Sl|l", &in, &encoding, &level)) { \
716 if (level < -1 || level > 9) { \
729 if ((out = php_zlib_encode(ZSTR_VAL(in), ZSTR_LEN(in), encoding, level)) == NULL) { \
1086 zend_long encoding, level = -1, memory = 8, window = 15, strategy = Z_DEFAULT_STRATEGY; in PHP_FUNCTION() local
1097 level = zval_get_long(option_buffer); in PHP_FUNCTION()
1099 if (level < -1 || level > 9) { in PHP_FUNCTION()
[all …]
/php-src/Zend/tests/fibers/
H A Dbacktrace-deep-nesting.phpt6 function suspend_fiber(int $level): void
8 if ($level >= 10) {
9 $value = \Fiber::suspend($level);
13 suspend_fiber($level + 1);
/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c8390 static int zend_jit_init_fcall_guard(zend_jit_ctx *jit, uint32_t level, const zend_function *func, … argument
8419 while (level > 0) {
8422 level--;
H A Dzend_jit_trace.c680 level++; in zend_jit_trace_add_phis()
686 level--; in zend_jit_trace_add_phis()
1277 level = 0; in zend_jit_trace_build_tssa()
1344 level++; in zend_jit_trace_build_tssa()
1464 level = 0; in zend_jit_trace_build_tssa()
1485 level++; in zend_jit_trace_build_tssa()
1715 level = 0; in zend_jit_trace_build_tssa()
2403 level++; in zend_jit_trace_build_tssa()
2857 level = 0; in zend_jit_trace_allocate_registers()
3125 level++; in zend_jit_trace_allocate_registers()
[all …]
H A Dzend_jit.c111 while (blocks[b].level > blocks[a].level) { in dominates()
/php-src/ext/standard/
H A Dvar_unserializer.re62 …printf(stderr, "UNSERIALIZE_INIT == lock: %u, level: %u\n", BG(serialize_lock), BG(unserialize)…
63 if (BG(serialize_lock) || !BG(unserialize).level) {
75 BG(unserialize).level = 1;
79 ++BG(unserialize).level;
85 …printf(stderr, "UNSERIALIZE_DESTROY == lock: %u, level: %u\n", BG(serialize_lock), BG(unserialize)…
86 if (BG(serialize_lock) || BG(unserialize).level == 1) {
90 if (!BG(serialize_lock) && !--BG(unserialize).level) {
/php-src/TSRM/
H A DTSRM.c71 int tsrm_error(int level, const char *format, ...);
728 int tsrm_error(int level, const char *format, ...) in tsrm_error() argument
730 if (level<=tsrm_error_level) { in tsrm_error()
748 void tsrm_error_set(int level, const char *debug_filename) in tsrm_error_set() argument
750 tsrm_error_level = level; in tsrm_error_set()
H A DTSRM.h121 TSRM_API int tsrm_error(int level, const char *format, ...);
122 TSRM_API void tsrm_error_set(int level, const char *debug_filename);
/php-src/ext/openssl/tests/
H A Dstream_security_level.phpt14 // Security level 2 refuses certs signed by keys with length of less than 2048 bits
25 // Make sure the server side starts up successfully if the default security level is
/php-src/Zend/Optimizer/
H A Dzend_dump.c863 if (b->level >= 0) { in zend_dump_block_info()
864 fprintf(stderr, " ; level=%d\n", b->level); in zend_dump_block_info()
/php-src/ext/phar/phar/
H A Dpharcommand.inc110 'inf' => '<level> Number of preceding subdirectories to strip from file entries',
580 $level = $this->args['l']['val'];
595 $this->phar_add($phar, $level, $input, $regex, $invregex, $stub, NULL, isset($loader));
598 $this->phar_add($phar, $level, $i, $regex, $invregex, $stub, NULL, isset($loader));
644 return self::phar_add_file($phar, $level, $input, $input, $compress);
675 * @param string $level The level of the file.
681 static function phar_add_file(Phar $phar, $level, $entry, $file, $compress, $noloader = false)
684 while($level-- > 0 && ($p = strpos($entry, '/')) !== false) {
1013 $level = $this->args['l']['val'];
1020 $this->phar_add($phar, $level, $input, $regex, $invregex, NULL, $compress);
[all …]

Completed in 198 milliseconds

123456789