/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/proxy_sol/ |
D | sol_replay.sh | 27 -flash=../results/mesh_srpl_replay_attack/flash.bin -flash_erase 33 -flash=../results/mesh_srpl_replay_attack/flash.bin -flash_rm 39 -flash=../results/mesh_srpl_replay_attack/flash.bin -flash_erase 45 -flash=../results/mesh_srpl_replay_attack/flash.bin -flash_rm 51 -flash=../results/mesh_srpl_replay_attack_psa/flash.bin -flash_erase 57 -flash=../results/mesh_srpl_replay_attack_psa/flash.bin -flash_rm
|
/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/replay_cache/ |
D | rpl_frag.sh | 16 rpc_rx_rpl_frag -flash=../results/mesh_replay_fragmentation/flash.bin -flash_erase \ 22 rpc_rx_reboot_after_defrag -flash=../results/mesh_replay_fragmentation/flash.bin -flash_rm 26 rpc_rx_rpl_frag -flash=../results/mesh_replay_fragmentation_psa/flash.bin -flash_erase \ 31 rpc_rx_reboot_after_defrag -flash=../results/mesh_replay_fragmentation_psa/flash.bin -flash_rm
|
D | replay_attack.sh | 10 rpc_rx_immediate_replay_attack -flash=../results/mesh_replay_attack/flash.bin -flash_erase 15 rpc_rx_power_replay_attack -flash=../results/mesh_replay_attack/flash.bin -flash_rm 20 rpc_rx_immediate_replay_attack -flash=../results/mesh_replay_attack_psa/flash.bin -flash_erase 25 rpc_rx_power_replay_attack -flash=../results/mesh_replay_attack_psa/flash.bin -flash_rm
|
/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/persistence/ |
D | reprovisioning.sh | 14 -flash=../results/mesh_pst_repr/flash.bin -flash_erase \ 20 -flash=../results/mesh_pst_repr/flash.bin -flash_rm \ 25 -flash=../results/mesh_pst_repr_psa/flash.bin -flash_erase \ 30 -flash=../results/mesh_pst_repr_psa/flash.bin -flash_rm \
|
/Zephyr-latest/cmake/sca/polyspace/ |
D | sca.cmake | 18 find_program(POLYSPACE_RESULTS_EXE NAMES polyspace-results-export REQUIRED) 75 # Create results directory 77 set(POLYSPACE_RESULTS_FILE ${POLYSPACE_RESULTS_DIR}/results.csv) 104 -results-dir ${POLYSPACE_RESULTS_DIR} 110 || ${CMAKE_COMMAND} -E true # allow to continue processing results 116 add_custom_target(polyspace-results ALL 118 -results-dir ${POLYSPACE_RESULTS_DIR} 121 || ${CMAKE_COMMAND} -E true # allow to continue processing results 127 add_dependencies(polyspace-results polyspace-analyze) 131 # summarize results # [all …]
|
/Zephyr-latest/tests/bsim/bluetooth/host/misc/disconnect/test_scripts/ |
D | disconnect.sh | 36 ${BSIM_OUT_PATH}/results/${simulation_id}/Trace_$i.Tx.pcap \ 37 ${BSIM_OUT_PATH}/results/${simulation_id}/d_2G4_$i.Tx.csv 40 ${BSIM_OUT_PATH}/results/${simulation_id}/Trace_$i.Rx.pcap \ 41 ${BSIM_OUT_PATH}/results/${simulation_id}/d_2G4_$i.Rx.csv
|
/Zephyr-latest/subsys/net/lib/zperf/ |
D | zperf_udp_uploader.c | 25 struct zperf_results *results) in zperf_upload_decode_stat() argument 37 results->nb_packets_rcvd = ntohl(UNALIGNED_GET(&stat->datagrams)); in zperf_upload_decode_stat() 38 results->nb_packets_lost = ntohl(UNALIGNED_GET(&stat->error_cnt)); in zperf_upload_decode_stat() 39 results->nb_packets_outorder = in zperf_upload_decode_stat() 41 results->total_len = (((uint64_t)ntohl(UNALIGNED_GET(&stat->total_len1))) << 32) + in zperf_upload_decode_stat() 43 results->time_in_us = ntohl(UNALIGNED_GET(&stat->stop_usec)) + in zperf_upload_decode_stat() 45 results->jitter_in_us = ntohl(UNALIGNED_GET(&stat->jitter2)) + in zperf_upload_decode_stat() 53 struct zperf_results *results, in zperf_upload_fin() argument 123 zperf_upload_decode_stat(stats, ret, results); in zperf_upload_fin() 143 struct zperf_results *results) in udp_upload() argument [all …]
|
D | zperf_shell.c | 479 struct zperf_results *results) in shell_udp_upload_print_stats() argument 486 if (results->time_in_us != 0U) { in shell_udp_upload_print_stats() 488 ((results->total_len * 8 * USEC_PER_SEC) / in shell_udp_upload_print_stats() 489 (results->time_in_us * 1000U)); in shell_udp_upload_print_stats() 494 if (results->client_time_in_us != 0U) { in shell_udp_upload_print_stats() 496 (((uint64_t)results->nb_packets_sent * in shell_udp_upload_print_stats() 497 (uint64_t)results->packet_size * (uint64_t)8 * in shell_udp_upload_print_stats() 499 (results->client_time_in_us * 1000U)); in shell_udp_upload_print_stats() 512 print_number_64(sh, results->time_in_us, TIME_US, in shell_udp_upload_print_stats() 515 print_number_64(sh, results->client_time_in_us, TIME_US, in shell_udp_upload_print_stats() [all …]
|
D | zperf_tcp_uploader.c | 42 struct zperf_results *results) in tcp_upload() argument 103 results->nb_packets_sent = nb_packets; in tcp_upload() 104 results->client_time_in_us = in tcp_upload() 106 results->packet_size = packet_size; in tcp_upload() 107 results->nb_packets_errors = nb_errors; in tcp_upload()
|
D | zperf_udp_receiver.c | 153 struct zperf_results results = { 0 }; in udp_received() local 180 results.nb_packets_rcvd = session->counter; in udp_received() 181 results.nb_packets_lost = session->error; in udp_received() 182 results.nb_packets_outorder = session->outorder; in udp_received() 183 results.total_len = session->length; in udp_received() 184 results.time_in_us = duration; in udp_received() 185 results.jitter_in_us = session->jitter; in udp_received() 186 results.packet_size = session->length / session->counter; in udp_received() 189 udp_session_cb(ZPERF_SESSION_FINISHED, &results, in udp_received()
|
/Zephyr-latest/tests/bsim/bluetooth/host/misc/conn_stress/scripts/ |
D | _conn_stress.sh | 56 ${BSIM_OUT_PATH}/results/${simulation_id}/Trace_$i.pcap \ 57 ${BSIM_OUT_PATH}/results/${simulation_id}/d_2G4_$i.Tx.csv 60 ${BSIM_OUT_PATH}/results/${simulation_id}/Trace_Rx_$i.pcap \ 61 ${BSIM_OUT_PATH}/results/${simulation_id}/d_2G4_$i.Rx.csv
|
/Zephyr-latest/tests/kernel/common/src/ |
D | timeout_order.c | 16 static int results[NUM_TIMEOUTS], cur; variable 28 results[cur++] = id; in thread() 61 results[ii] = -1; in ZTEST() 81 zassert_equal(results[ii], ii, ""); in ZTEST()
|
/Zephyr-latest/samples/bluetooth/handsfree_ag/src/ |
D | main.c | 218 static void discovery_timeout_cb(const struct bt_br_discovery_result *results, size_t count) in discovery_timeout_cb() argument 224 size_t len = sizeof(results->eir); in discovery_timeout_cb() 230 bt_addr_to_str(&results[i].addr, addr, sizeof(addr)); in discovery_timeout_cb() 231 printk("Device[%d]: %s, rssi %d, cod 0x%X%X%X", i, addr, results[i].rssi, in discovery_timeout_cb() 232 results[i].cod[0], results[i].cod[1], results[i].cod[2]); in discovery_timeout_cb() 234 major_device = (uint8_t)BT_COD_MAJOR_DEVICE_CLASS(results[i].cod); in discovery_timeout_cb() 235 minor_device = (uint8_t)BT_COD_MINOR_DEVICE_CLASS(results[i].cod); in discovery_timeout_cb() 242 eir = results[i].eir; in discovery_timeout_cb() 267 default_conn = bt_conn_create_br(&results[i].addr, BT_BR_CONN_PARAM_DEFAULT); in discovery_timeout_cb()
|
/Zephyr-latest/tests/bsim/bluetooth/ll/ |
D | _compile_permutate_kconfigs.sh | 35 local -a results=() 49 results=("${results[@]}" "${list[$j]}n") 51 results=("${results[@]}" "${list[$j]}y")
|
/Zephyr-latest/tests/kernel/workq/work_queue/ |
D | README.txt | 23 make clean # discard results of previous builds 26 make pristine # discard results of previous builds 49 - Checking results 58 - Checking results 75 - Checking results 84 - Checking results 94 - Checking results 100 - Checking results
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | reports.py | 506 results = [] 531 results.append((instance, metric, instance.metrics.get(metric, 0), delta, 533 return results 636 def summary(self, results, ignore_unrecognized_sections, duration): argument 655 if results.total and results.total != results.filtered_configs: 656 pass_rate = (float(results.passed) / float(results.total - results.filtered_configs)) 665 unfiltered_configs = results.total - results.filtered_configs 668 if results.notrun 673 if results.failed 678 if results.error [all …]
|
D | runner.py | 977 def process(self, pipeline, done, message, lock, results): argument 998 results.filtered_runtime_increment() 1031 results.filtered_runtime_increment() 1058 results.skipped_increment() 1076 self.determine_testcases(results) 1180 self.report_out(results) 1238 def determine_testcases(self, results): argument 1504 def _add_instance_testcases_to_status_counts(instance, results, decrement=False): argument 1509 results.passed_cases_increment(increment_value) 1511 results.notrun_cases_increment(increment_value) [all …]
|
/Zephyr-latest/subsys/net/l2/wifi/ |
D | Kconfig | 5 bool "Raw scan results" 7 This option enables raw scan results. When enabled, the raw scan 8 results (beacons or probe responses) are provided to the application. 15 int "Maximum length of raw scan results" 18 This option defines the maximum length of raw scan results. 21 bool "Only raw scan results" 23 This option enables only raw scan results. When enabled, the raw scan 24 results (beacons or probe responses) are provided to the application. 25 The scan results are not parsed and the application is responsible 26 for parsing the scan results. Normal scan results are not provided
|
/Zephyr-latest/include/zephyr/bluetooth/classic/ |
D | classic.h | 101 struct bt_br_discovery_result *results, size_t count); 128 void (*timeout)(const struct bt_br_discovery_result *results,
|
/Zephyr-latest/subsys/ipc/ipc_service/backends/ |
D | Kconfig | 26 Chosing this backend results in single endpoint implementation based 36 Chosing this backend results in multi endpoint implementation based 47 Chosing this backend results in multi endpoint implementation based
|
/Zephyr-latest/tests/kernel/xip/ |
D | README.txt | 23 make clean # discard results of previous builds 26 make pristine # discard results of previous builds
|
/Zephyr-latest/drivers/sensor/nordic/npm1300_charger/ |
D | npm1300_charger.c | 277 struct adc_results_t results; in npm1300_charger_sample_fetch() local 292 ret = mfd_npm1300_reg_read_burst(config->mfd, ADC_BASE, ADC_OFFSET_RESULTS, &results, in npm1300_charger_sample_fetch() 293 sizeof(results)); in npm1300_charger_sample_fetch() 298 data->voltage = adc_get_res(results.msb_vbat, results.lsb_a, ADC_LSB_VBAT_SHIFT); in npm1300_charger_sample_fetch() 299 data->temp = adc_get_res(results.msb_ntc, results.lsb_a, ADC_LSB_NTC_SHIFT); in npm1300_charger_sample_fetch() 300 data->dietemp = adc_get_res(results.msb_die, results.lsb_a, ADC_LSB_DIE_SHIFT); in npm1300_charger_sample_fetch() 301 data->current = adc_get_res(results.msb_ibat, results.lsb_b, ADC_LSB_IBAT_SHIFT); in npm1300_charger_sample_fetch() 302 data->ibat_stat = results.ibat_stat; in npm1300_charger_sample_fetch()
|
/Zephyr-latest/doc/_extensions/zephyr/kconfig/static/ |
D | kconfig.mjs | 20 let results; variable 33 results.replaceChildren(admonition); 56 results.replaceChildren(p); 324 /** Perform a search and display the results. */ 334 results.replaceChildren(); 367 /* show results count and search tools */ 381 results.replaceChildren(); 383 results.appendChild(renderKconfigEntry(entry)); 424 copyLinkButton.title = "Copy link to results"; 457 /* create results per page selector */ [all …]
|
/Zephyr-latest/tests/kernel/mutex/sys_mutex/ |
D | README.txt | 23 make clean # discard results of previous builds 26 make pristine # discard results of previous builds
|
/Zephyr-latest/tests/lib/sprintf/ |
D | README.txt | 23 make clean # discard results of previous builds 26 make pristine # discard results of previous builds
|