Home
last modified time | relevance | path

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

12345678910

/PHP-7.4/
H A DNEWS1389 . Fixed bug #78656 (Parse errors classified as highest log-level). (Erik
1729 . Fixed bug #78656 (Parse errors classified as highest log-level). (Erik
2828 . Added zlib/level context option for compress.zlib wrapper. (Sara)
H A Dphp.ini-development261 ; http://php.net/zlib.output-compression-level
400 ; Maximum input variable nesting level
401 ; http://php.net/max-input-nesting-level
417 ; directive is through the use of the error level constants and bitwise
418 ; operators. The error level constants are below here for convenience as well as
1011 ; happens within intl functions. The value is the level of the error produced.
1842 ; By default, only fatal errors (level 0) or errors (level 1) are logged.
1843 ; You can also enable warnings (level 2), info messages (level 3) or
1844 ; debug messages (level 4).
1868 ; Enables and sets the second level cache directory.
H A Dphp.ini-production261 ; http://php.net/zlib.output-compression-level
400 ; Maximum input variable nesting level
401 ; http://php.net/max-input-nesting-level
417 ; directive is through the use of the error level constants and bitwise
418 ; operators. The error level constants are below here for convenience as well as
1011 ; happens within intl functions. The value is the level of the error produced.
1842 ; By default, only fatal errors (level 0) or errors (level 1) are logged.
1843 ; You can also enable warnings (level 2), info messages (level 3) or
1844 ; debug messages (level 4).
1868 ; Enables and sets the second level cache directory.
/PHP-7.4/ext/libxml/
H A Dlibxml.c546 error_copy.level = XML_ERR_ERROR; in _php_list_set_error_structure()
565 static void php_libxml_ctx_error_level(int level, void *ctx, const char *msg) in php_libxml_ctx_error_level() argument
573 …php_error_docref(NULL, level, "%s in %s, line: %d", msg, parser->input->filename, parser->input->l… in php_libxml_ctx_error_level()
575 php_error_docref(NULL, level, "%s in Entity, line: %d", msg, parser->input->line); in php_libxml_ctx_error_level()
580 void php_libxml_issue_error(int level, const char *msg) in php_libxml_issue_error() argument
585 php_error_docref(NULL, level, "%s", msg); in php_libxml_issue_error()
1070 add_property_long(return_value, "level", error->level); in PHP_FUNCTION()
1106 add_property_long_ex(&z_error, "level", sizeof("level") - 1, error->level); in PHP_FUNCTION()
/PHP-7.4/ext/gd/libgd/
H A Dgd_png.c440 void gdImagePngEx (gdImagePtr im, FILE * outFile, int level, int basefilter) in gdImagePngEx() argument
443 gdImagePngCtxEx(im, out, level, basefilter); in gdImagePngEx()
465 void * gdImagePngPtrEx (gdImagePtr im, int *size, int level, int basefilter) in gdImagePngPtrEx() argument
469 gdImagePngCtxEx(im, out, level, basefilter); in gdImagePngPtrEx()
484 void gdImagePngCtxEx (gdImagePtr im, gdIOCtx * outfile, int level, int basefilter) in gdImagePngCtxEx() argument
540 if (level != -1 && (level < 0 || level > 9)) { in gdImagePngCtxEx()
544 png_set_compression_level(png_ptr, level); in gdImagePngCtxEx()
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch572 - "negative direct offset `%s' at level %u",
2447 if (level >= ms->c.len) {
2448 len = (ms->c.len = 20 + level) * sizeof(*ms->c.li);
/PHP-7.4/ext/xml/
H A Dxml.c98 int level; local
741 parser->level++; in _xml_startElementHandler()
769 if (parser->level <= XML_MAXLEVEL) { in _xml_startElementHandler()
780 add_assoc_long(&tag, "level", parser->level); in _xml_startElementHandler()
809 } else if (parser->level == (XML_MAXLEVEL + 1)) { in _xml_startElementHandler()
849 add_assoc_long(&tag, "level", parser->level); in _xml_endElementHandler()
860 efree(parser->ltags[parser->level-1]); in _xml_endElementHandler()
863 parser->level--; in _xml_endElementHandler()
944 if (parser->level <= XML_MAXLEVEL && parser->level > 0 && (doprint || (! parser->skipwhite))) { in _xml_characterDataHandler()
952 add_assoc_long(&tag, "level", parser->level); in _xml_characterDataHandler()
[all …]
H A Dcompat.c569 return !error && parser->parser->lastError.level <= XML_ERR_WARNING; in XML_Parse()
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_connection.c1206 MYSQLND_METHOD(mysqlnd_conn_data, shutdown)(MYSQLND_CONN_DATA * const conn, uint8_t level)
1211 DBG_INF_FMT("conn=%llu level=%lu", conn->thread_id, level);
1214 ret = conn->command->shutdown(conn, level);
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_main.c596 void sapi_cgi_log_fastcgi(int level, char *message, size_t len) in sapi_cgi_log_fastcgi() argument
/PHP-7.4/main/
H A Doutput.c562 handler->level = zend_stack_push(&OG(handlers), &handler); in php_output_handler_start()
689 *(int *) arg = OG(running)->level; in php_output_handler_hook()
1113 if (handler->level) { in php_output_stack_apply_op()
1122 if (!handler->level) { in php_output_stack_apply_op()
1127 if (handler->level) { in php_output_stack_apply_op()
1184 add_assoc_long(entry, "level", (zend_long) handler->level); in php_output_handler_status()
1207 … %s (%d)", (flags&PHP_OUTPUT_POP_DISCARD)?"discard":"send", ZSTR_VAL(orphan->name), orphan->level); in php_output_stack_pop()
1333 …ol", E_NOTICE, "failed to flush buffer of %s (%d)", ZSTR_VAL(OG(active)->name), OG(active)->level); in PHP_FUNCTION()
1354 …l", E_NOTICE, "failed to delete buffer of %s (%d)", ZSTR_VAL(OG(active)->name), OG(active)->level); in PHP_FUNCTION()
1409 …l", E_NOTICE, "failed to delete buffer of %s (%d)", ZSTR_VAL(OG(active)->name), OG(active)->level); in PHP_FUNCTION()
[all …]
/PHP-7.4/Zend/
H A Dzend_execute.c3820 int level; in cleanup_unfinished_calls() local
3840 level = 0; in cleanup_unfinished_calls()
3848 level++; in cleanup_unfinished_calls()
3858 if (level == 0) { in cleanup_unfinished_calls()
3862 level--; in cleanup_unfinished_calls()
3873 if (level == 0) { in cleanup_unfinished_calls()
3880 if (level == 0) { in cleanup_unfinished_calls()
3891 level = 0; in cleanup_unfinished_calls()
3899 level++; in cleanup_unfinished_calls()
3909 if (level == 0) { in cleanup_unfinished_calls()
[all …]
/PHP-7.4/ext/standard/
H A Dvar.c81 level + 1, ' ', in php_object_property_dump()
102 if (level > 1) { in php_var_dump()
131 if (level > 1) { in php_var_dump()
146 if (level > 1) { in php_var_dump()
151 if (level > 1) { in php_var_dump()
189 if (level > 1) { in php_var_dump()
270 level + 1, ' ', in zval_object_property_dump()
291 if (level > 1) { in php_debug_zval_dump()
320 if (level > 1) { in php_debug_zval_dump()
340 if (level > 1) { in php_debug_zval_dump()
[all …]
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_ssa.c29 while (blocks[b].level > blocks[a].level) { in dominates()
1480 block->level = -1; in zend_ssa_remove_block()
/PHP-7.4/sapi/fpm/tests/
H A Dlogtool.inc26 private $level;
71 * @param string $level
74 public function setExpectedLevel(string $level)
76 return $this->level = $level;
84 return $this->level ?: 'WARNING';
/PHP-7.4/sapi/litespeed/
H A Dlsapilib.c267 int level = flag & LSAPI_LOG_LEVEL_BITS; in LSAPI_Log() local
268 if (level && level <= LSAPI_LOG_FLAG_FATAL) in LSAPI_Log()
270 p += snprintf(p, 100, "[%s] ", s_log_level_names[level]); in LSAPI_Log()
/PHP-7.4/ext/zlib/
H A Dzlib_filter.c344 int level = Z_DEFAULT_COMPRESSION; in php_zlib_filter_create() local
395 level = tmp; in php_zlib_filter_create()
402 status = deflateInit2(&(data->strm), level, Z_DEFLATED, windowBits, memLevel, 0); in php_zlib_filter_create()
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_references.phpt34 print "reference, one level...\n";
158 print "reference, one level, change after bind...\n";
252 reference, one level...
283 reference, one level, change after bind...
H A Dmysqli_pconn_reuse.phpt5 die("skip TODO - we need to add a user level way to check if CHANGE_USER gets called by pconnect");
H A Dmysqli_pconn_disabled.phpt9 die("skip TODO - we need to add a user level way to check if CHANGE_USER gets called by pconnect");
H A Dmysqli_fetch_all.phpt310 /* on mysqlnd level this would not be allowed */
H A Dmysqli_debug_mysqlnd_control_string.phpt98 …printf("[065] Nesting level seem to be missing, first characters from trace are '%s'\n", substr($t…
100 // -t,[N] - maximum nesting level
106 …printf("[075] Nesting level seem to be missing, first characters from trace are '%s'\n", substr($l…
109 …printf("[076] Nesting level seem to be %d, should not be higher than 1, first characters from trac…
/PHP-7.4/build/
H A Dlibtool.m4414 # Remove one level of quotation (which was required for Make).
/PHP-7.4/ext/snmp/
H A Dsnmp.c1188 static int netsnmp_session_set_sec_level(struct snmp_session *s, char *level) in netsnmp_session_set_sec_level() argument
1190 if (!strcasecmp(level, "noAuthNoPriv") || !strcasecmp(level, "nanp")) { in netsnmp_session_set_sec_level()
1192 } else if (!strcasecmp(level, "authNoPriv") || !strcasecmp(level, "anp")) { in netsnmp_session_set_sec_level()
1194 } else if (!strcasecmp(level, "authPriv") || !strcasecmp(level, "ap")) { in netsnmp_session_set_sec_level()
/PHP-7.4/ext/soap/
H A Dsoap.c49 static void type_to_string(sdlTypePtr type, smart_str *buf, int level);
4641 static void model_to_string(sdlContentModelPtr model, smart_str *buf, int level) /* {{{ */ argument
4647 type_to_string(model->u.element, buf, level);
4651 for (i = 0;i < level;i++) {
4662 model_to_string(tmp, buf, level);
4667 model_to_string(model->u.group->model, buf, level);
4674 static void type_to_string(sdlTypePtr type, smart_str *buf, int level) /* {{{ */ argument
4679 for (i = 0;i < level;i++) {
4814 model_to_string(type->model, buf, level+1);

Completed in 155 milliseconds

12345678910