Home
last modified time | relevance | path

Searched full:report (Results 1 – 25 of 341) sorted by relevance

12345678910>>...14

/Zephyr-Core-3.6.0/.github/workflows/
Dlicense_check.yml27 if [ -s ./artifacts/report.txt ]; then
28 report=$(cat ./artifacts/report.txt)
29 report="${report//'%'/'%25'}"
30 report="${report//$'\n'/'%0A'}"
31 report="${report//$'\r'/'%0D'}"
32 echo "::error file=./artifacts/report.txt::$report"
/Zephyr-Core-3.6.0/cmake/reports/
DCMakeLists.txt14 foreach(report ram_report rom_report footprint)
16 ${report}
24 ${flag_for_${report}}
26 $<TARGET_PROPERTY:zephyr_property_target,${report}_DEPENDENCIES>
33 foreach(report ram_report rom_report footprint)
35 tfm_${report}
43 ${flag_for_${report}}
52 foreach(report ram_report rom_report footprint)
54 bl2_${report}
62 ${flag_for_${report}}
[all …]
/Zephyr-Core-3.6.0/scripts/coccinelle/
Dint_ms_to_timeout.cocci17 virtual report
77 depends on report
85 depends on report
92 coccilib.report.print_report(p[0], msg);
126 depends on report
141 depends on report
155 depends on report
161 coccilib.report.print_report(p[0], msg);
164 depends on report
170 coccilib.report.print_report(p[0], msg);
[all …]
Dms_timeout.cocci16 virtual report
41 depends on report
56 depends on report
63 coccilib.report.print_report(p[0], msg);
96 depends on report
112 depends on report
119 coccilib.report.print_report(p[0], msg);
155 depends on report
170 depends on report
177 coccilib.report.print_report(p[0], msg);
Dfind_functions.cocci6 // In report mode:
17 virtual report
25 depends on report
62 depends on report
72 depends on report
84 depends on report
104 depends on report
117 depends on report
Dderef_null.cocci15 virtual report
49 // For org and report modes
51 @r depends on !context && (org || report) && !(file in "ext") exists@
91 @script:python depends on !context && !org && report@
98 coccilib.report.print_report(p[0], msg)
101 @script:python depends on !context && org && !report@
112 @s depends on !context && (org || report) exists@
151 @script:python depends on !context && !org && report@
158 coccilib.report.print_report(p[0], msg)
160 @script:python depends on !context && org && !report@
[all …]
Didentifier_length.cocci4 virtual report
23 @script:python depends on report@
30 coccilib.report.print_report(pos[0], msg)
Dfind_dev_usage.cocci11 virtual report
18 depends on report
27 coccilib.report.print_report(p[0], msg)
31 coccilib.report.print_report(p[0], msg)
46 depends on report
Dreturnvar.cocci12 virtual report
39 @r1 depends on (report || org) && !(file in "ext")@
50 @script:python depends on report@
56 coccilib.report.print_report(p1[0], "Unneeded variable: \"" + ret +
/Zephyr-Core-3.6.0/subsys/bluetooth/host/
Ddirection_internal.h11 struct bt_df_per_adv_sync_iq_samples_report *report,
14 struct bt_df_per_adv_sync_iq_samples_report *report,
17 struct bt_df_conn_iq_samples_report *report,
20 struct bt_df_conn_iq_samples_report *report,
23 struct bt_df_conn_iq_samples_report *report,
Ddirection.c373 struct bt_df_per_adv_sync_iq_samples_report *report, in hci_df_prepare_connectionless_iq_report() argument
389 LOG_ERR("Unknown handle 0x%04X for iq samples report", in hci_df_prepare_connectionless_iq_report()
395 LOG_ERR("Received PA CTE report when CTE receive disabled"); in hci_df_prepare_connectionless_iq_report()
404 report->chan_idx = evt->chan_idx; in hci_df_prepare_connectionless_iq_report()
405 report->rssi = sys_le16_to_cpu(evt->rssi); in hci_df_prepare_connectionless_iq_report()
406 report->rssi_ant_id = evt->rssi_ant_id; in hci_df_prepare_connectionless_iq_report()
407 report->cte_type = BIT(evt->cte_type); in hci_df_prepare_connectionless_iq_report()
408 report->packet_status = evt->packet_status; in hci_df_prepare_connectionless_iq_report()
409 report->slot_durations = evt->slot_durations; in hci_df_prepare_connectionless_iq_report()
410 report->per_evt_counter = sys_le16_to_cpu(evt->per_evt_counter); in hci_df_prepare_connectionless_iq_report()
[all …]
/Zephyr-Core-3.6.0/scripts/tests/twister/
DREADME.md31 Then we can generate the coverage report for just twister script using
34 coverage report -m $ZEPHYR_BASE/scripts/pylib/twister/
37 To generate the coverage report for twister script use below command
40 coverage report -m $ZEPHYR_BASE/scripts/twister
43 The html coverage report for twister can be generated using
49 If needed,the full coverage html report can be generated in every run of "pytest" in the tests dire…
/Zephyr-Core-3.6.0/samples/bluetooth/iso_receive/
DKconfig9 int "Interval between each packet report"
13 Only print the packet report once in a given interval of ISO packets.
16 bool "Align report interval with incoming packets"
19 This may be needed if report printouts are to be synchronized between
/Zephyr-Core-3.6.0/subsys/usb/device/class/hid/
DKconfig53 The application can use Report ID to identify data fields
54 in the report descriptor and report itself.
56 Report IDs, the gaps and offset in Report IDs can not be supported.
57 Set this configuration value to 1 if Report IDs are not used but
/Zephyr-Core-3.6.0/samples/subsys/usb/hid-mouse/src/
Dmain.c37 static uint8_t report[MOUSE_REPORT_COUNT]; variable
59 (void)memcpy(tmp, report, sizeof(tmp)); in input_cb()
88 if (memcmp(tmp, report, sizeof(tmp))) { in input_cb()
89 memcpy(report, tmp, sizeof(report)); in input_cb()
133 ret = hid_int_ep_write(hid_dev, report, sizeof(report), NULL); in main()
134 report[MOUSE_X_REPORT_IDX] = 0U; in main()
135 report[MOUSE_Y_REPORT_IDX] = 0U; in main()
140 /* Toggle LED on sent report */ in main()
/Zephyr-Core-3.6.0/subsys/mgmt/updatehub/
Dupdatehub_priv.h62 return "report"; in uri_path()
119 struct report { struct
182 JSON_OBJ_DESCR_PRIM_NAMED(struct report,
185 JSON_OBJ_DESCR_OBJECT_NAMED(struct report,
188 JSON_OBJ_DESCR_PRIM_NAMED(struct report,
191 JSON_OBJ_DESCR_PRIM_NAMED(struct report,
194 JSON_OBJ_DESCR_PRIM(struct report,
196 JSON_OBJ_DESCR_PRIM(struct report,
198 JSON_OBJ_DESCR_PRIM_NAMED(struct report,
201 JSON_OBJ_DESCR_PRIM(struct report,
/Zephyr-Core-3.6.0/samples/bluetooth/peripheral_hids/src/
Dhog.c38 uint8_t id; /* report id */
39 uint8_t type; /* report type */
65 0x85, 0x01, /* Report Id (1) */
73 0x95, 0x03, /* Report Count (3) */
74 0x75, 0x01, /* Report Size (1) */
76 0x95, 0x01, /* Report Count (1) */
77 0x75, 0x05, /* Report Size (5) */
84 0x75, 0x08, /* Report Size (8) */
85 0x95, 0x02, /* Report Count (2) */
190 /* HID Report: in hog_button_loop()
[all …]
/Zephyr-Core-3.6.0/samples/bluetooth/direction_finding_central/src/
Dmain.c247 static void cte_recv_cb(struct bt_conn *conn, struct bt_df_conn_iq_samples_report const *report) in cte_recv_cb() argument
253 if (report->err == BT_DF_IQ_REPORT_ERR_SUCCESS) { in cte_recv_cb()
256 sample_type2str(report->sample_type), report->sample_count, in cte_recv_cb()
257 cte_type2str(report->cte_type), report->slot_durations, in cte_recv_cb()
258 packet_status2str(report->packet_status), report->rssi); in cte_recv_cb()
261 for (uint8_t idx = 0; idx < report->sample_count; idx++) { in cte_recv_cb()
262 if (report->sample_type == BT_DF_IQ_SAMPLE_8_BITS_INT) { in cte_recv_cb()
263 printk(" IQ[%d]: %d, %d\n", idx, report->sample[idx].i, in cte_recv_cb()
264 report->sample[idx].q); in cte_recv_cb()
268 report->sample16[idx].i, report->sample16[idx].q); in cte_recv_cb()
[all …]
/Zephyr-Core-3.6.0/scripts/
Dcoccicheck20 -m= , --mode= specify the mode use {report, patch, org, context, chain}
31 mode = report
109 echo 'You have not explicitly specified the mode to use. Using default "report" mode.'
110 echo 'Available modes are the following: 'patch', 'report', 'context', 'org''
113 MODE="report"
118 echo 'All available modes will be tried (in that order): patch, report, context, org'
119 elif [ "$MODE" = "report" -o "$MODE" = "org" ] ; then
157 if [[ $VIRTUAL == *report* ]]; then
158 MODE=report
183 elif [ "$MODE" = "report" ] ; then
[all …]
/Zephyr-Core-3.6.0/include/zephyr/bluetooth/mesh/
Drpr_cli.h49 /** Max number of devices to report in current scan. */
65 /** @brief Scan report callback.
124 * devices. The Server will report back the results through the @ref
128 * to report all unprovisioned devices.
130 * The Server will ignore duplicates, and report up to @c max_devs number of
136 * @param uuid Device UUID to scan for, or NULL to report all devices.
138 * @param max_devs Max number of devices to report, or 0 to report as many as
153 * the Server to report additional data for a specific device. The Remote
156 * provided, the Server will report a scan on its own OOB information and
160 * report. Some AD types invoke special behavior:
[all …]
/Zephyr-Core-3.6.0/scripts/pylib/twister/twisterlib/
Dtwister_main.py125 if tplan.report() == 0:
154 report = Reporting(tplan, env)
157 report.json_report(plan_file)
160 report.json_report(options.save_tests)
180 # figure out which report to use for size comparison
187 report.footprint_reports(
200 report.summary(runner.results, options.disable_unrecognized_section_test, duration)
207 logger.info("Skipping coverage report generation due to --build-only.")
212 report.save_reports(
220 report.synopsis()
/Zephyr-Core-3.6.0/samples/subsys/usb/hid/src/
Dmain.c26 static struct report { struct
38 * Simple HID Report Descriptor
39 * Report ID is present for completeness, although it can be omitted.
70 LOG_ERR("Failed to submit report"); in send_report()
72 LOG_DBG("Report submitted"); in send_report()
90 * report value is not incremented here.
108 "boot" : "report"); in protocol_cb()
/Zephyr-Core-3.6.0/subsys/bluetooth/controller/
DKconfig.dtm42 bool "Connectionless IQ report HCI event [EXPERIMENTAL]"
46 Enable generation of the HCI LE Connectionless IQ Report event
52 int "IQ Report pool size"
/Zephyr-Core-3.6.0/doc/develop/sca/
Dcpptest.rst27 Generating a report file
32 To import and generate a report file, something like the following should work.
36 …onf -bdf build/sca/cpptest/cpptestscan.bdf -config "builtin://Recommended Rules" -report out/report
/Zephyr-Core-3.6.0/samples/bluetooth/iso_broadcast/
DKconfig9 int "Interval between each packet report"
13 Only print the packet report once in a given interval of ISO packets.

12345678910>>...14