Home
last modified time | relevance | path

Searched +full:log +full:- (Results 1 – 25 of 1172) sorted by relevance

12345678910>>...47

/third_party/iptables/extensions/
Dlibip6t_LOG.t2 -j LOG;-j LOG;OK
3 -j LOG --log-prefix "test: ";=;OK
4 -j LOG --log-prefix "test: " --log-level 1;=;OK
5 # iptables displays the log-level output using the number; not the string
6 -j LOG --log-prefix "test: " --log-level alert;-j LOG --log-prefix "test: " --log-level 1;OK
7 -j LOG --log-prefix "test: " --log-tcp-sequence;=;OK
8 -j LOG --log-prefix "test: " --log-tcp-options;=;OK
9 -j LOG --log-prefix "test: " --log-ip-options;=;OK
10 -j LOG --log-prefix "test: " --log-uid;=;OK
11 -j LOG --log-prefix "test: " --log-level bad;;FAIL
[all …]
Dlibipt_LOG.t2 -j LOG;-j LOG;OK
3 -j LOG --log-prefix "test: ";=;OK
4 -j LOG --log-prefix "test: " --log-level 1;=;OK
5 # iptables displays the log-level output using the number; not the string
6 -j LOG --log-prefix "test: " --log-level alert;-j LOG --log-prefix "test: " --log-level 1;OK
7 -j LOG --log-prefix "test: " --log-tcp-sequence;=;OK
8 -j LOG --log-prefix "test: " --log-tcp-options;=;OK
9 -j LOG --log-prefix "test: " --log-ip-options;=;OK
10 -j LOG --log-prefix "test: " --log-uid;=;OK
11 -j LOG --log-prefix "test: " --log-level bad;;FAIL
[all …]
Dlibebt_log.t2 --log;--log-level notice;OK
3 --log-level crit;=;OK
4 --log-level 1;--log-level alert;OK
5 --log-level emerg --log-ip --log-arp --log-ip6;=;OK
6 --log-level crit --log-ip --log-arp --log-ip6 --log-prefix foo;--log-level crit --log-prefix "foo"
Dlibebt_log.txlate1 ebtables-translate -A INPUT --log
2 nft 'add rule bridge filter INPUT log level notice flags ether counter'
4 ebtables-translate -A INPUT --log-level 1
5 nft 'add rule bridge filter INPUT log level alert flags ether counter'
7 ebtables-translate -A INPUT --log-level crit
8 nft 'add rule bridge filter INPUT log level crit flags ether counter'
10 ebtables-translate -A INPUT --log-level emerg --log-ip --log-arp --log-ip6
11 nft 'add rule bridge filter INPUT log level emerg flags ether counter'
13 ebtables-translate -A INPUT --log-level crit --log-ip --log-arp --log-ip6 --log-prefix foo
14 nft 'add rule bridge filter INPUT log prefix "foo" level crit flags ether counter'
Dlibxt_LOG.c25 "LOG target options:\n" in LOG_help()
26 " --log-level level Level of logging (numeric or see syslog.conf)\n" in LOG_help()
27 " --log-prefix prefix Prefix log messages with this prefix.\n" in LOG_help()
28 " --log-tcp-sequence Log TCP sequence numbers.\n" in LOG_help()
29 " --log-tcp-options Log TCP options.\n" in LOG_help()
30 " --log-ip-options Log IP options.\n" in LOG_help()
31 " --log-uid Log UID owning the local socket.\n" in LOG_help()
32 " --log-macdecode Decode MAC addresses and protocol.\n"); in LOG_help()
37 {.name = "log-level", .id = O_LOG_LEVEL, .type = XTTYPE_SYSLOGLEVEL,
39 {.name = "log-prefix", .id = O_LOG_PREFIX, .type = XTTYPE_STRING,
[all …]
/third_party/vk-gl-cts/framework/qphelper/
DqpTestLog.c1 /*-------------------------------------------------------------------------
3 * ----------------------------
11 * http://www.apache.org/licenses/LICENSE-2.0
22 *//*--------------------------------------------------------------------*/
94 return stack->numElements == 0; in ContainerStack_isEmpty()
99 if (stack->numElements == MAX_CONTAINER_STACK_DEPTH) in ContainerStack_push()
102 if (stack->numElements > 0 && !childContainersOk(stack->elements[stack->numElements-1])) in ContainerStack_push()
105 stack->elements[stack->numElements] = type; in ContainerStack_push()
106 stack->numElements += 1; in ContainerStack_push()
113 DE_ASSERT(stack->numElements > 0); in ContainerStack_pop()
[all …]
DqpTestLog.h3 /*-------------------------------------------------------------------------
5 * -------------------------------------------
13 * http://www.apache.org/licenses/LICENSE-2.0
26 * \brief Test log library
30 * Each function takes qpTestLog pointer. Operations are done on that log
40 * All functions writing to the log return a boolean value. False
41 * means that the current write operation failed and the current log
44 *//*--------------------------------------------------------------------*/
72 QP_TEST_CASE_TYPE_SELF_VALIDATE = 0, /*!< Self-validating test case */
80 /*--------------------------------------------------------------------*//*!
[all …]
/third_party/zlib/examples/
Dgzlog.c30 Files (log name "foo"):
31 foo.gz -- gzip file with the complete log
32 foo.add -- last message to append or last data to compress
33 foo.dict -- dictionary of the last 32K of data for next compression
34 foo.temp -- temporary dictionary file for compression after this one
35 foo.lock -- lock file for reading and writing the other files
36 foo.repairs -- log file for log file recovery operations (not compressed)
39 - fixed-length (no file name) header with extra field (see below)
40 - compressed data ending initially with empty stored block
41 - uncompressed data filling out originally empty stored block and
[all …]
/third_party/typescript/tests/baselines/reference/
DsourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues.types3 >console : { log(msg: any): void; }
5 log(msg: any): void;
6 >log : (msg: any) => void
77 console.log(nameA);
78 >console.log(nameA) : void
79 >console.log : (msg: any) => void
80 >console : { log(msg: any): void; }
81 >log : (msg: any) => void
91 console.log(nameA);
92 >console.log(nameA) : void
[all …]
DsourceMapValidationDestructuringForOfArrayBindingPatternDefaultValues2.types3 >console : { log(msg: any): void; }
5 log(msg: any): void;
6 >log : (msg: any) => void
99 console.log(nameA);
100 >console.log(nameA) : void
101 >console.log : (msg: any) => void
102 >console : { log(msg: any): void; }
103 >log : (msg: any) => void
115 console.log(nameA);
116 >console.log(nameA) : void
[all …]
DsourceMapValidationDestructuringForArrayBindingPatternDefaultValues.types3 >console : { log(msg: any): void; }
5 log(msg: any): void;
6 >log : (msg: any) => void
65 console.log(nameA);
66 >console.log(nameA) : void
67 >console.log : (msg: any) => void
68 >console : { log(msg: any): void; }
69 >log : (msg: any) => void
86 console.log(nameA);
87 >console.log(nameA) : void
[all …]
DerrorOnFunctionReturnType.symbols11 console.log("Nope");
12 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
13 >console : Symbol(console, Decl(lib.dom.d.ts, --, --))
14 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
27 console.log("test")
28 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
29 >console : Symbol(console, Decl(lib.dom.d.ts, --, --))
30 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
37 console.log("test")
38 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
[all …]
DquotedConstructors.symbols6 console.log(this);
7 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
8 >console : Symbol(console, Decl(lib.dom.d.ts, --, --))
9 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
18 console.log(this);
19 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
20 >console : Symbol(console, Decl(lib.dom.d.ts, --, --))
21 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
33 console.log(this);
34 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
[all …]
DsourceMapValidationDestructuringForArrayBindingPatternDefaultValues2.types3 >console : { log(msg: any): void; }
5 log(msg: any): void;
6 >log : (msg: any) => void
93 console.log(nameA);
94 >console.log(nameA) : void
95 >console.log : (msg: any) => void
96 >console : { log(msg: any): void; }
97 >log : (msg: any) => void
119 console.log(nameA);
120 >console.log(nameA) : void
[all …]
DextendedUnicodePlaneIdentifiers.symbols8 console.log(�� + ��); // 9
9 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
10 >console : Symbol(console, Decl(lib.dom.d.ts, --, --))
11 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
29 console.log(ၡ ** ၡ);
30 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
31 >console : Symbol(console, Decl(lib.dom.d.ts, --, --))
32 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
40 console.log(ဒ ** ဒ);
41 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --))
[all …]
Des2020IntlAPIs.js2 // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_ide…
4 const date = new Date("2012-05-24");
6 function log(locale: string) { function
7 console.log(
12 log("en-US");
15 log("de-DE");
18 // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTi…
21 console.log(rtf1.format(3, 'quarter'));
24 console.log(rtf1.format(-1, 'day'));
29 console.log(rtf2.format(2, 'day'));
[all …]
/third_party/libexif/libexif/
Dexif-log.c1 /* exif-log.c
18 * Boston, MA 02110-1301 USA.
20 * SPDX-License-Identifier: LGPL-2.0-or-later
25 #include <libexif/exif-log.h>
75 ExifLog *log; in exif_log_new_mem() local
77 log = exif_mem_alloc (mem, sizeof (ExifLog)); in exif_log_new_mem()
78 if (!log) return NULL; in exif_log_new_mem()
79 log->ref_count = 1; in exif_log_new_mem()
81 log->mem = mem; in exif_log_new_mem()
84 return log; in exif_log_new_mem()
[all …]
/third_party/libabigail/tests/data/test-abidiff-exit/test-PR30034/split/include/
Drte_log.h1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2017 Intel Corporation
13 * This file provides a log API to RTE applications.
28 /* SDK log type */
29 #define RTE_LOGTYPE_EAL 0 /**< Log related to eal. */
30 #define RTE_LOGTYPE_MALLOC 1 /**< Log related to malloc. */
31 #define RTE_LOGTYPE_RING 2 /**< Log related to ring. */
32 #define RTE_LOGTYPE_MEMPOOL 3 /**< Log related to mempool. */
33 #define RTE_LOGTYPE_TIMER 4 /**< Log related to timers. */
34 #define RTE_LOGTYPE_PMD 5 /**< Log related to poll mode driver. */
[all …]
/third_party/libabigail/tests/data/test-abidiff-exit/test-PR30034/reference/include/
Drte_log.h1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2017 Intel Corporation
13 * This file provides a log API to RTE applications.
28 /* SDK log type */
29 #define RTE_LOGTYPE_EAL 0 /**< Log related to eal. */
30 #define RTE_LOGTYPE_MALLOC 1 /**< Log related to malloc. */
31 #define RTE_LOGTYPE_RING 2 /**< Log related to ring. */
32 #define RTE_LOGTYPE_MEMPOOL 3 /**< Log related to mempool. */
33 #define RTE_LOGTYPE_TIMER 4 /**< Log related to timers. */
34 #define RTE_LOGTYPE_PMD 5 /**< Log related to poll mode driver. */
[all …]
/third_party/libwebsockets/READMEs/
DREADME.logging.md12 or custom log emission is possible if you point it to your own.
14 Currently the following log levels are defined
17 |---|---|---|---|
31 The first four log levels are built into lws even on Release builds, the others
34 You can select between Debug and Release builds using cmake `-DCMAKE_BUILD_TYPE=`
38 see emitted, only log levels that were built in can be enabled since the code for them
41 ## Finegrained control of log level build
43 You can deviate from the default log inclusion for release / debug by overriding it
46 For example you can set `-DLWS_LOGGING_BITFIELD_SET="LLL_INFO|LLL_DEBUG"`, which will
47 cause those log level traces to be built in even in Release mode. Clear works
[all …]
/third_party/zlib/
Dconfigure5 # If you want to build just a static library, use: ./configure --static
8 # prefix=$HOME CC=cc CFLAGS="-O4" ./configure
10 # (setenv prefix $HOME; setenv CC cc; setenv CFLAGS "-O4"; ./configure)
16 # start off configure.log
17 echo -------------------- >> configure.log
18 echo $0 $* >> configure.log
19 date >> configure.log
25 ZINCOUT="-I."
28 ZINC='-I. -include zconf.h'
29 ZINCOUT='-I. -I$(SRCDIR)'
[all …]
/third_party/vk-gl-cts/modules/egl/
DteglNegativeApiTests.cpp1 /*-------------------------------------------------------------------------
3 * ---------------------------------------
11 * http://www.apache.org/licenses/LICENSE-2.0
22 *//*--------------------------------------------------------------------*/
81 // \todo [2012-10-02 pyry] Add tests for EGL_NOT_INITIALIZED to all functions taking in EGLDisplay in init()
82 // \todo [2012-10-02 pyry] Implement negative cases for following non-trivial cases: in init()
84 // - EGL_BAD_ACCESS is generated if buffer is already bound to a texture in init()
85 …// - EGL_BAD_MATCH is generated if the surface attribute EGL_TEXTURE_FORMAT is set to EGL_NO_TE… in init()
86 …// - EGL_BAD_MATCH is generated if buffer is not a valid buffer (currently only EGL_BACK_BUFFER… in init()
87 // - EGL_BAD_SURFACE is generated if surface is not a pbuffer surface supporting texture binding in init()
[all …]
/third_party/rust/rust/tests/ui/drop/
Dissue-30018-nopanic.rs1 // run-pass
5 // (for both scratch arrays and non-scratch ones) interacts with
6 // breaks in the control-flow, in terms of the order of evaluation of
30 let log = &RefCell::new(Vec::new()); in break_during_elem() localVariable
32 // CASE 1: Fixed-size array itself is stored in _r slot. in break_during_elem()
34 let _r = [D(log, 10), in break_during_elem()
35 D(log, 11), in break_during_elem()
36 { D(log, 12); break; }, in break_during_elem()
37 D(log, 13)]; in break_during_elem()
39 assert_eq!(&log.borrow()[..], &[12, 11, 10]); in break_during_elem()
[all …]
/third_party/fsverity-utils/scripts/
Drun-tests.sh2 # SPDX-License-Identifier: MIT
5 # Use of this source code is governed by an MIT-style
10 # Test script for fsverity-utils. Runs 'make check' in lots of configurations,
14 # fsverity-utils into a kvm-xfstests test appliance and run
15 # 'kvm-xfstests -c ext4,f2fs -g verity'
17 set -e -u -o pipefail
20 log() function
31 TMPDIR=$(mktemp -d -t libfsverity_test.XXXXXXXXX)
32 trap 'rm -r "$TMPDIR"' EXIT
34 # Both stdout and stderr go to log file.
[all …]
/third_party/nghttp2/src/
Dshrpx_log.h2 * nghttp2 - HTTP/2 C Library
45 #define LOG_ENABLED(SEVERITY) (ENABLE_LOG && shrpx::Log::log_enabled(SEVERITY))
53 #define LOG(SEVERITY) shrpx::Log(SEVERITY, NGHTTP2_FILE_NAME, __LINE__) macro
55 // Listener log
57 (shrpx::Log(SEVERITY, NGHTTP2_FILE_NAME, __LINE__) \
60 // Worker log
62 (shrpx::Log(SEVERITY, NGHTTP2_FILE_NAME, __LINE__) \
65 // ClientHandler log
67 (shrpx::Log(SEVERITY, NGHTTP2_FILE_NAME, __LINE__) \
70 // Upstream log
[all …]

12345678910>>...47