Home
last modified time | relevance | path

Searched refs:logs (Results 1 – 25 of 195) sorted by relevance

12345678

/OK3568_Linux_fs/external/mpp/mpp/base/
H A Dmpp_buffer_impl.cpp134 MppBufLogs *logs = NULL; in buf_logs_init() local
140 logs = mpp_malloc_size(MppBufLogs, sizeof(MppBufLogs) + max_count * sizeof(MppBufLog)); in buf_logs_init()
141 if (!logs) { in buf_logs_init()
148 pthread_mutex_init(&logs->lock, &attr); in buf_logs_init()
151 logs->max_count = max_count; in buf_logs_init()
152 logs->log_count = 0; in buf_logs_init()
153 logs->log_write = 0; in buf_logs_init()
154 logs->log_read = 0; in buf_logs_init()
155 logs->logs = (MppBufLog *)(logs + 1); in buf_logs_init()
157 return logs; in buf_logs_init()
[all …]
H A Dmpp_buf_slot.cpp186 MppBufSlotLog *logs; member
242 MppBufSlotLogs *logs; member
381 static void buf_slot_logs_reset(MppBufSlotLogs *logs) in buf_slot_logs_reset() argument
383 logs->log_count = 0; in buf_slot_logs_reset()
384 logs->log_write = 0; in buf_slot_logs_reset()
385 logs->log_read = 0; in buf_slot_logs_reset()
390 MppBufSlotLogs *logs = NULL; in buf_slot_logs_init() local
395 logs = mpp_malloc_size(MppBufSlotLogs, sizeof(MppBufSlotLogs) + in buf_slot_logs_init()
397 if (!logs) { in buf_slot_logs_init()
402 logs->max_count = max_count; in buf_slot_logs_init()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/arm64/fp/
H A Dsve-stress11 logs=
23 if [ -n "$logs" ]; then
24 cat $logs
25 rm $logs
26 logs=
44 logs=$logs\ $log
H A Dfpsimd-stress11 logs=
23 if [ -n "$logs" ]; then
24 cat $logs
25 rm $logs
26 logs=
45 logs=$logs\ $log
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dlogging.bbclass10 # Output: logs console
20 # Output: logs
31 # Output: logs console
42 # Output: logs console
53 # Output: logs console
65 # Output: logs console
76 # messages to the logs. Depending on the debug log level, they may also
78 # Output: logs console
94 # All debug output is printed to the logs
/OK3568_Linux_fs/kernel/fs/nilfs2/
H A Dsegbuf.h160 void nilfs_clear_logs(struct list_head *logs);
161 void nilfs_truncate_logs(struct list_head *logs,
163 int nilfs_write_logs(struct list_head *logs, struct the_nilfs *nilfs);
164 int nilfs_wait_on_logs(struct list_head *logs);
165 void nilfs_add_checksums_on_logs(struct list_head *logs, u32 seed);
167 static inline void nilfs_destroy_logs(struct list_head *logs) in nilfs_destroy_logs() argument
169 nilfs_truncate_logs(logs, NULL); in nilfs_destroy_logs()
H A Dsegbuf.c261 void nilfs_clear_logs(struct list_head *logs) in nilfs_clear_logs() argument
265 list_for_each_entry(segbuf, logs, sb_list) in nilfs_clear_logs()
269 void nilfs_truncate_logs(struct list_head *logs, in nilfs_truncate_logs() argument
274 segbuf = list_prepare_entry(last, logs, sb_list); in nilfs_truncate_logs()
275 list_for_each_entry_safe_continue(segbuf, n, logs, sb_list) { in nilfs_truncate_logs()
282 int nilfs_write_logs(struct list_head *logs, struct the_nilfs *nilfs) in nilfs_write_logs() argument
287 list_for_each_entry(segbuf, logs, sb_list) { in nilfs_write_logs()
295 int nilfs_wait_on_logs(struct list_head *logs) in nilfs_wait_on_logs() argument
300 list_for_each_entry(segbuf, logs, sb_list) { in nilfs_wait_on_logs()
313 void nilfs_add_checksums_on_logs(struct list_head *logs, u32 seed) in nilfs_add_checksums_on_logs() argument
[all …]
H A Dsegment.c1403 static void nilfs_free_incomplete_logs(struct list_head *logs, in nilfs_free_incomplete_logs() argument
1410 segbuf = NILFS_FIRST_SEGBUF(logs); in nilfs_free_incomplete_logs()
1429 list_for_each_entry_continue(segbuf, logs, sb_list) { in nilfs_free_incomplete_logs()
1459 static void nilfs_cancel_segusage(struct list_head *logs, struct inode *sufile) in nilfs_cancel_segusage() argument
1464 segbuf = NILFS_FIRST_SEGBUF(logs); in nilfs_cancel_segusage()
1470 list_for_each_entry_continue(segbuf, logs, sb_list) { in nilfs_cancel_segusage()
1754 static void nilfs_abort_logs(struct list_head *logs, int err) in nilfs_abort_logs() argument
1760 if (list_empty(logs)) in nilfs_abort_logs()
1763 list_for_each_entry(segbuf, logs, sb_list) { in nilfs_abort_logs()
1798 LIST_HEAD(logs); in nilfs_segctor_abort_construction()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/
H A Dparselogs.py270 logs = []
274 logs.append(str(location))
283 logs.append(os.path.join(location, str(logfile)))
284 return logs
302 logs = [f for f in dir_files if os.path.isfile(f)]
303 return logs
337 def parse_logs(self, errors, ignore_errors, logs, argument
343 for log in logs:
/OK3568_Linux_fs/kernel/Documentation/firmware-guide/acpi/
H A Dmethod-tracing.rst37 logs when the control method evaluation is started, and disable the
43 a. Filter out the debug layer/level matched logs when control methods
51 b. Filter out the debug layer/level matched logs when the specified
60 c. Filter out the debug layer/level matched logs when the specified
102 that, as the "AML tracer" logs are implemented via ACPI_DEBUG_PRINT()
104 "AML tracer" logs.
109 a. Filter out the method start/stop "AML tracer" logs when control
126 c. Filter out the method start/stop "AML tracer" logs when the specified
176 used to match all "AML tracer" logs.
182 debug_level used to match all "AML tracer" logs.
/OK3568_Linux_fs/external/mpp/osal/
H A Dmpp_mem.cpp145 MppMemLog *logs; member in MppMemService
210 logs(NULL), in MppMemService()
239 os_malloc((void **)&logs, MEM_ALIGN, size); in MppMemService()
240 mpp_assert(logs); in MppMemService()
241 add_node(__FUNCTION__, logs, size); in MppMemService()
261 del_node(__FUNCTION__, logs, &size); in ~MppMemService()
297 os_free(logs); in ~MppMemService()
564 MppMemLog *log = &logs[log_idx]; in add_log()
626 MppMemLog *log = &logs[start]; in dump()
/OK3568_Linux_fs/kernel/tools/testing/selftests/rcutorture/bin/
H A Dkvm-find-errors.sh47 echo Build-only run, no console logs to check.
64 echo No errors in console logs.
/OK3568_Linux_fs/external/mpp/mpp/base/inc/
H A Dmpp_buffer_impl.h72 MppBufLog *logs; member
93 MppBufLogs *logs; member
156 MppBufLogs *logs; member
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/colord/
H A Dcolord-native.bb23 version=`grep 'Project version:' ${B}/meson-logs/meson-log.txt | sed 's|Project version: ||'`
30 proj_name=`grep 'Project name:' ${B}/meson-logs/meson-log.txt | sed 's|Project name: ||'`
53 version=`grep 'Project version:' ${B}/meson-logs/meson-log.txt | sed 's|Project version: ||'`
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/
H A Drunner.py175 logs = {}
190 if status not in logs:
191 logs[status] = []
192 logs[status].append("RESULTS - %s: %s%s" % (case.id(), status, t))
219 if i not in logs:
221 for l in logs[i]:
/OK3568_Linux_fs/kernel/tools/bpf/bpftool/Documentation/
H A Dcommon_options.rst20 Print all logs available, even debug-level information. This includes
21 logs from libbpf as well as from the verifier, when attempting to
/OK3568_Linux_fs/kernel/Documentation/s390/
H A Ds390dbf.rst14 One purpose of this is to inspect the debug logs after a production system crash
18 it is possible to look at the debug logs on a live system via the Linux
60 The debug logs can be inspected in a live system through entries in
74 All debug logs have an actual debug level (range from 0 to 6).
195 Views to the debug logs can be investigated through reading the corresponding
271 ``s390dbf`` to display all the debug logs or export them to the file system.
273 to investigate the debug logs on a live system and with a memory dump after
278 One last possibility to investigate the debug logs at a live
281 It is possible to find the anchor of the debug-logs through
286 a global variable with the pointer to the debug-logs. Following
[all …]
/OK3568_Linux_fs/external/mpp/mpp/
H A Dmpp_impl.cpp238 char logs[64]; in _ops_log() local
245 len = strftime(logs, sizeof(logs), "%m-%d %H:%M:%S", ptm); in _ops_log()
246 mpp_assert(len < sizeof(logs)); in _ops_log()
247 fprintf(fp, "%s.%03ld,", logs, tp.tv_nsec / 1000000); in _ops_log()
/OK3568_Linux_fs/buildroot/package/coremark-pro/
H A Dcoremark-pro.mk51 mkdir -p $(TARGET_DIR)/usr/share/coremark-pro/logs
54 size $(TARGET_DIR)/usr/bin/$(m) > $(TARGET_DIR)/usr/share/coremark-pro/logs/$(m).size.log$(sep))
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/daemontools/
H A Ddaemontools_0.76.bb7 multilog saves error messages to one or more logs. It optionally timestamps \
9 patterns. It automatically rotates logs to limit the amount of disk space \
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Ddata.py19 logs = []
22 logs.append(record)
27 return logs
33 def logContains(item, logs): argument
34 for l in logs:
422 with LogRecord() as logs:
424 …self.assertTrue(logContains("Variable key VAL_${FOO} (A) replaces original key VAL_foo (B)", logs))
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/
H A Dthingsboard-gateway_2.9.bb39 file://logs.conf \
63 install -m 0644 ${WORKDIR}/logs.conf ${D}${sysconfdir}/thingsboard-gateway/config
/OK3568_Linux_fs/buildroot/package/sysklogd/
H A DConfig.in24 When set up to forward logs to a remote syslog server, the
37 It makes use of the new syslogp() API for RFC5424 style logs,
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dat91-wb45n.dtsi114 logs@7fa0000 {
115 label = "logs";
/OK3568_Linux_fs/buildroot/package/libmodsecurity/
H A D0001-configure.ac-drop-usage-of-git-at-configure-time.patch57 AC_ARG_ENABLE(debug-logs,
58 [AC_HELP_STRING([--disable-debug-logs],[Turn off the SecDebugLog feature])],

12345678