Home
last modified time | relevance | path

Searched refs:recording (Results 1 – 22 of 22) sorted by relevance

/Zephyr-latest/scripts/ci/es_upload/
DREADME.md56 either `testcases` or `recording`, so each item there becomes an independent data record
87 ### Twister tests with recording
89 Store test results with `recording` data entries, for example from
96 --index zephyr-test-recording-example-1 \
100 Upload data with 'flattened' test suites creating documents for each `recording` data entry.
103 --index zephyr-test-recording-example-1 \
105 --flatten recording \
110 ### Twister test with recording and extracting more data
112 Store test results with `recording` data entries which are also scanned by regular expressions
120 --index zephyr-test-recording-example-2 \
[all …]
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dtestinstance.py61 self.recording = None
102 def record(self, recording, fname_csv="recording.csv"): argument
103 if recording:
104 if self.recording is None:
105 self.recording = recording.copy()
107 self.recording.extend(recording)
111 for r in self.recording:
119 cw.writerows(self.recording)
Dharness.py60 self.recording = []
140 if self.record_merge and len(self.recording) > 0:
142 if k in self.recording[0]:
143 if isinstance(self.recording[0][k], list):
144 self.recording[0][k].append(v)
146 self.recording[0][k] = [self.recording[0][k], v]
148 self.recording[0][k] = v
150 self.recording.append(rec)
388 self.instance.record(self.recording)
1017 self.instance.record(self.recording)
Dreports.py452 if instance.recording is not None:
453 suite['recording'] = instance.recording
Dhandlers.py165 self.instance.record(harness.recording)
/Zephyr-latest/tests/benchmarks/sched_queues/
DKconfig29 to the Twister JSON report and recording.csv file(s).
DREADME.rst28 into ``recording.csv`` files and ``twister.json`` report.
/Zephyr-latest/tests/benchmarks/wait_queues/
DKconfig29 to the Twister JSON report and recording.csv file(s).
DREADME.rst26 into ``recording.csv`` files and ``twister.json`` report.
/Zephyr-latest/samples/subsys/usb/audio/headphones_microphone/
DREADME.rst35 - Start recording audio stream (for example using Audacity).
/Zephyr-latest/samples/subsys/usb/audio/headset/
DREADME.rst34 - Start recording audio stream (for example using Audacity).
/Zephyr-latest/samples/subsys/usb/uac2_implicit_feedback/
DREADME.rst5 USB Audio 2 implicit feedback sample playing stereo and recording mono audio
/Zephyr-latest/scripts/tests/twister/
Dtest_testinstance.py242 recording = [ {'field_1': 'recording_1_1', 'field_2': 'recording_1_2'},
257 testinstance.record(recording)
266 mock_writeheader.assert_has_calls([mock.call({ k:k for k in recording[0]})])
267 mock_writerows.assert_has_calls([mock.call(recording)])
Dtest_harness.py228 assert not harness.recording
233 assert harness.recording == expected_records
276 assert harness.recording == []
505 console.recording = []
Dtest_handlers.py138 harness.recording = mock.Mock()
153 instance.assert_has_calls([mock.call.record(harness.recording)])
/Zephyr-latest/doc/services/resource_management/
Dindex.rst57 responsible for recording whether their requests were accepted, and for
/Zephyr-latest/samples/net/sockets/http_server/
DREADME.rst233 we can stop the recording and analyze the data using:
/Zephyr-latest/doc/develop/test/
Dtwister.rst887 record: <recording options> (optional)
892 directory ``recording.csv`` file as well as ``recording`` property
922 into ``twister.json`` as nested ``recording`` object properties.
923 The corresponding ``recording.csv`` columns will contain JSON strings
948 "recording":[
/Zephyr-latest/doc/develop/west/
Dzephyr-cmds.rst134 - ``--analyze-includes``: in addition to recording the compiled source code
/Zephyr-latest/tests/benchmarks/thread_metric/
Dthread_metric_readme.txt141 this data in twister.json and recording.csv report files for analysis.
/Zephyr-latest/doc/develop/flash_debug/
Dhost-tools.rst295 - SystemView: Real-time event visualization and recording
/Zephyr-latest/doc/services/tracing/
Dindex.rst233 This allows for recording very long traces. To configure Zephyr for RTT streaming to Tracealyzer,