Home
last modified time | relevance | path

Searched refs:log_level (Results 1 – 25 of 76) sorted by relevance

1234

/third_party/ffmpeg/libavdevice/
Ddshow_crossbar.c63 int log_level = ctx->list_options ? AV_LOG_INFO : AV_LOG_DEBUG; in setup_crossbar_options() local
69 av_log(avctx, log_level, "Crossbar Switching Information for %s:\n", device_name); in setup_crossbar_options()
84 av_log(avctx, log_level, "Routing video input from pin %d\n", video_input_pin); in setup_crossbar_options()
93 av_log(avctx, log_level, "Routing audio input from pin %d\n", audio_input_pin); in setup_crossbar_options()
109 …av_log(avctx, log_level, " Crossbar Output pin %d: \"%s\" related output pin: %ld ", i, GetPhysic… in setup_crossbar_options()
110 av_log(avctx, log_level, "current input pin: %ld ", route_to_pin); in setup_crossbar_options()
111 av_log(avctx, log_level, "compatible input pins: "); in setup_crossbar_options()
117 av_log(avctx, log_level ,"%d ", j); in setup_crossbar_options()
119 av_log(avctx, log_level, "\n"); in setup_crossbar_options()
130 … av_log(avctx, log_level, " Crossbar Input pin %d - \"%s\" ", i, GetPhysicalPinName(pin_type)); in setup_crossbar_options()
[all …]
/third_party/rust/crates/clap/examples/
Dtyped-derive.md23 …mization: Some(1), include: None, bind: None, sleep: None, defines: [], port: 22, log_level: Info }
36 … None, include: Some("../hello"), bind: None, sleep: None, defines: [], port: 22, log_level: Info }
43 …: None, include: None, bind: Some(192.0.0.1), sleep: None, defines: [], port: 22, log_level: Info }
56 …ne, include: None, bind: None, sleep: Some(Duration(10s)), defines: [], port: 22, log_level: Info }
69 …: None, bind: None, sleep: None, defines: [("Foo", 10), ("Alice", 30)], port: 22, log_level: Info }
88 Args { optimization: None, include: None, bind: None, sleep: None, defines: [], port: 22, log_level
91 Args { optimization: None, include: None, bind: None, sleep: None, defines: [], port: 80, log_level
112 Args { optimization: None, include: None, bind: None, sleep: None, defines: [], port: 22, log_level
115 Args { optimization: None, include: None, bind: None, sleep: None, defines: [], port: 22, log_level
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/scripts/
Dupdate.py138 def run_command(command, log_level=1): argument
139 log(command, log_level)
143 def run_subprocess(*popenargs, log_level=1, cwd=None): argument
144 log([' '.join(t) for t in popenargs][0], log_level)
220 cmake_options, log_level=2, cwd=LLVM_OBJS)
222 str(num_jobs)], log_level=2, cwd=LLVM_OBJS)
/third_party/ffmpeg/libavformat/
Dlibrist.c49 int log_level; member
74 …{ "log_level", "set loglevel", OFFSET(log_level), AV_OPT_TYPE_INT, {.i64=RIST_LOG_INFO}, …
90 static int log_cb(void *arg, enum rist_log_level log_level, const char *msg) in log_cb() argument
94 switch (log_level) { in log_cb()
134 ret = rist_logging_set(&logging_settings, s->log_level, log_cb, h, NULL, NULL); in librist_open()
/third_party/selinux/secilc/
Dsecil2conf.c77 enum cil_log_level log_level = CIL_ERR; in main() local
96 log_level++; in main()
131 cil_set_log_level(log_level); in main()
Dsecil2tree.c81 enum cil_log_level log_level = CIL_ERR; in main() local
100 log_level++; in main()
138 cil_set_log_level(log_level); in main()
Dsecilc.c110 enum cil_log_level log_level = CIL_ERR; in main() local
139 log_level++; in main()
244 cil_set_log_level(log_level); in main()
/third_party/ffmpeg/libavcodec/
Dlibopenh264dec.c56 int log_level; in svc_decode_init() local
68 log_level = WELS_LOG_DETAIL; in svc_decode_init()
70 (*s->decoder)->SetOption(s->decoder, DECODER_OPTION_TRACE_LEVEL, &log_level); in svc_decode_init()
Dttmlenc.c112 int log_level = (ret != AVERROR_INVALIDDATA || in ttml_encode_frame() local
115 av_log(avctx, log_level, in ttml_encode_frame()
120 if (log_level == AV_LOG_ERROR) { in ttml_encode_frame()
Dlibxavs2.c51 int log_level; member
87 xavs2_opt_set2("Log", "%d", cae->log_level); in xavs2_init()
270 … "log level: -1: none, 0: error, 1: warning, 2: info, 3: debug", OFFSET(log_level) , AV_OPT_TYP…
/third_party/libbpf/src/
Dbpf.c238 __u32 log_size, log_level, attach_prog_fd, attach_btf_obj_fd; in bpf_prog_load() local
289 log_level = OPTS_GET(opts, log_level, 0); in bpf_prog_load()
308 if (log_level) { in bpf_prog_load()
311 attr.log_level = log_level; in bpf_prog_load()
361 if (log_level == 0 && log_buf) { in bpf_prog_load()
368 attr.log_level = 1; in bpf_prog_load()
1189 __u32 log_level; in bpf_btf_load() local
1201 log_level = OPTS_GET(opts, log_level, 0); in bpf_btf_load()
1215 if (log_level) { in bpf_btf_load()
1218 attr.btf_log_level = log_level; in bpf_btf_load()
[all …]
Dbpf_gen_internal.h40 int log_level; member
54 void bpf_gen__init(struct bpf_gen *gen, int log_level, int nr_progs, int nr_maps);
Dgen_loader.c113 void bpf_gen__init(struct bpf_gen *gen, int log_level, int nr_progs, int nr_maps) in bpf_gen__init() argument
119 gen->log_level = log_level; in bpf_gen__init()
139 nr_maps * (6 + (gen->log_level ? 6 : 0)))); in bpf_gen__init()
304 if (!gen->log_level) in emit_debug()
350 2 + (gen->log_level ? 6 : 0))); in __emit_sys_close()
433 offsetof(struct bpf_loader_ctx, log_level), false); in bpf_gen__load_btf()
720 if (!gen->log_level) in emit_relo_kfunc_btf()
738 if (!gen->log_level) in emit_ksym_relo_log()
996 move_ctx2blob(gen, attr_field(prog_load_attr, log_level), 4, in bpf_gen__prog_load()
997 offsetof(struct bpf_loader_ctx, log_level), false); in bpf_gen__prog_load()
Dlibbpf_probes.c110 .log_level = log_buf ? 1 : 0, in probe_prog_load()
136 opts.log_level = 1; in probe_prog_load()
149 opts.log_level = 1; in probe_prog_load()
Dskel_internal.h55 __u32 log_level; member
337 attr.log_level = opts->ctx->log_level; in bpf_load_and_run()
/third_party/pulseaudio/src/daemon/
Dohos_daemon-conf.c80 .log_level = PA_LOG_NOTICE,
217 c->log_level = (pa_log_level_t) u; in pa_daemon_conf_set_log_level()
219 c->log_level = PA_LOG_DEBUG; in pa_daemon_conf_set_log_level()
221 c->log_level = PA_LOG_INFO; in pa_daemon_conf_set_log_level()
223 c->log_level = PA_LOG_NOTICE; in pa_daemon_conf_set_log_level()
225 c->log_level = PA_LOG_WARN; in pa_daemon_conf_set_log_level()
227 c->log_level = PA_LOG_ERROR; in pa_daemon_conf_set_log_level()
790 pa_assert(c->log_level < PA_LOG_LEVEL_MAX); in pa_daemon_conf_dump()
819 pa_strbuf_printf(s, "log-level = %s\n", log_level_to_string[c->log_level]); in pa_daemon_conf_dump()
Ddaemon-conf.c80 .log_level = PA_LOG_NOTICE,
217 c->log_level = (pa_log_level_t) u; in pa_daemon_conf_set_log_level()
219 c->log_level = PA_LOG_DEBUG; in pa_daemon_conf_set_log_level()
221 c->log_level = PA_LOG_INFO; in pa_daemon_conf_set_log_level()
223 c->log_level = PA_LOG_NOTICE; in pa_daemon_conf_set_log_level()
225 c->log_level = PA_LOG_WARN; in pa_daemon_conf_set_log_level()
227 c->log_level = PA_LOG_ERROR; in pa_daemon_conf_set_log_level()
790 pa_assert(c->log_level < PA_LOG_LEVEL_MAX); in pa_daemon_conf_dump()
819 pa_strbuf_printf(s, "log-level = %s\n", log_level_to_string[c->log_level]); in pa_daemon_conf_dump()
Ddumpmodules.c122 show_info(e, path, c->log_level >= PA_LOG_INFO ? long_info : short_info); in callback()
149 show_info(buf, NULL, c->log_level >= PA_LOG_INFO ? long_info : short_info); in pa_dump_modules()
/third_party/libcoap/examples/lwip/
Dserver-coap.c122 coap_log_t log_level = COAP_LOG_WARN; in server_coap_init() local
140 log_level = atoi(optarg); in server_coap_init()
152 coap_set_log_level(log_level); in server_coap_init()
Dclient-coap.c116 coap_log_t log_level = COAP_LOG_WARN; in client_coap_init() local
134 log_level = atoi(optarg); in client_coap_init()
152 coap_set_log_level(log_level); in client_coap_init()
/third_party/selinux/libsepol/fuzz/
Dsecilc-fuzzer.c16 enum cil_log_level log_level = CIL_ERR; in LLVMFuzzerTestOneInput() local
30 cil_set_log_level(log_level); in LLVMFuzzerTestOneInput()
/third_party/benchmark/src/
Dlog.h59 static int log_level = 0; in LogLevel() local
60 return log_level; in LogLevel()
/third_party/ffmpeg/libavutil/tests/
Dtree.c68 int log_level = argc <= 1 ? AV_LOG_INFO : atoi(argv[1]); in main() local
70 av_log_set_level(log_level); in main()
/third_party/libcoap/src/
Dcoap_io_lwip.c23 coap_lwip_dump_memory_pools(coap_log_t log_level) { in coap_lwip_dump_memory_pools() argument
28 if (log_level > coap_get_log_level()) in coap_lwip_dump_memory_pools()
31 coap_log(log_level, "* LwIP custom memory pools information\n"); in coap_lwip_dump_memory_pools()
38 coap_log(log_level, "* %-17s avail %3d in-use %3d peak %3d failed %3d\n", in coap_lwip_dump_memory_pools()
/third_party/jerryscript/tools/
Dsrcmerger.py255 log_level = logging.WARNING
257 log_level = logging.DEBUG
259 logging.basicConfig(level=log_level)

1234