/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | twister_main.py | 62 def main(options: argparse.Namespace, default_options: argparse.Namespace): 66 color_strip = False if options.force_color else None 74 options.no_clean 75 or options.only_failed 76 or options.test_only 77 or options.report_summary is not None 79 if os.path.exists(options.outdir): 81 elif options.last_metrics: 82 ls = os.path.join(options.outdir, "twister.json") 88 elif os.path.exists(options.outdir): [all …]
|
D | package.py | 16 self.options = env.options 19 root = os.path.basename(self.options.outdir) 21 tar.add(self.options.outdir, recursive=False) 23 f = os.path.relpath(d, self.options.outdir) 28 with open(os.path.join(self.options.outdir, "twister.json")) as json_test_plan: 34 dirs.append(os.path.join(self.options.outdir, normalized, t['name'])) 38 os.path.join(self.options.outdir, "twister.json"), 39 os.path.join(self.options.outdir, "testplan.json") 42 self.make_tarfile(self.options.package_artifacts, dirs)
|
D | hardwaremap.py | 174 self.options = env.options 178 if self.options.generate_hardware_map: 179 self.scan(persistent=self.options.persistent_hardware_map) 180 self.save(self.options.generate_hardware_map) 183 if not self.options.device_testing and self.options.hardware_map: 184 self.load(self.options.hardware_map) 189 if self.options.device_testing: 190 if self.options.hardware_map: 191 self.load(self.options.hardware_map) 192 if not self.options.platform: [all …]
|
D | environment.py | 368 "Valid options for 'gcovr' tool are: " + 370 " Valid options for 'lcov' tool are: " + 516 help="Ignore all other command line options and just produce a report to " 701 "--report-all-options", action="store_true", 702 help="""Show all command line options applied, including defaults, as 703 environment.options object in twister.json. Default: show only non-default settings. 847 options = None, argument 850 if options is None: 851 options = parser.parse_args(args) 854 if options.short_build_path and not options.ninja: [all …]
|
D | testplan.py | 109 self.options = env.options 176 sub_tests = self.options.sub_test 192 if self.options.test: 193 self.run_individual_testsuite = self.options.test 213 ql = self.options.quarantine_list 214 qv = self.options.quarantine_verify 229 if self.options.report_suffix: 231 self.options.outdir, 232 f"twister_{self.options.report_suffix}.json" 235 last_run = os.path.join(self.options.outdir, "twister.json") [all …]
|
/Zephyr-latest/boards/andestech/adp_xc7k_ae350/ |
D | adp_xc7k_ae350_defconfig | 5 # Serial driver options 8 # GPIO driver options 11 # Syscon driver options 14 # hwinfo driver options 18 # RV64 options 21 # FPU (single precision) options 27 # FPU (double precision) options 33 # PMP granularity options 36 # HW DSP options 39 # EXEC.IT options [all …]
|
/Zephyr-latest/tests/bluetooth/host/id/bt_id_set_adv_own_addr/src/ |
D | test_suite_invalid_inputs.c | 61 * - Options 'BT_LE_ADV_OPT_CONN' bit is set 62 * - Options 'BT_LE_ADV_OPT_DIR_ADDR_RPA' bit is set 70 uint32_t options = 0; in ZTEST() local 74 options |= BT_LE_ADV_OPT_CONN; in ZTEST() 75 options |= BT_LE_ADV_OPT_DIR_ADDR_RPA; in ZTEST() 79 err = bt_id_set_adv_own_addr(&adv, options, true, &own_addr_type); in ZTEST() 86 * privacy is enabled and 'BT_LE_ADV_OPT_USE_IDENTITY' options bit isn't set. 90 * - Options 'BT_LE_ADV_OPT_CONN' bit is set 91 * - Options 'BT_LE_ADV_OPT_USE_IDENTITY' bit isn't set 101 uint32_t options = 0; in ZTEST() local [all …]
|
D | main.c | 35 * privacy is enabled and 'BT_LE_ADV_OPT_USE_IDENTITY' options bit isn't set. 38 * - Options 'BT_LE_ADV_OPT_CONN' bit is set 39 * - Options 'BT_LE_ADV_OPT_USE_IDENTITY' bit isn't set 50 uint32_t options = 0; in ZTEST() local 57 options |= BT_LE_ADV_OPT_CONN; in ZTEST() 63 err = bt_id_set_adv_own_addr(&adv, options, dir_adv_test_lut[i], &own_addr_type); in ZTEST() 70 options |= BT_LE_ADV_OPT_DIR_ADDR_RPA; in ZTEST() 74 err = bt_id_set_adv_own_addr(&adv, options, true, &own_addr_type); in ZTEST() 86 * - Options 'BT_LE_ADV_OPT_CONN' bit is set 97 uint32_t options = 0; in ZTEST() local [all …]
|
/Zephyr-latest/drivers/adc/ |
D | adc_handlers.c | 27 struct adc_sequence_options *options, in copy_sequence() argument 35 if (dst->options) { in copy_sequence() 36 if (k_usermode_from_copy(options, dst->options, in copy_sequence() 41 dst->options = options; in copy_sequence() 56 struct adc_sequence_options options; in z_vrfy_adc_read() local 59 K_OOPS(K_SYSCALL_VERIFY_MSG(copy_sequence(&sequence, &options, in z_vrfy_adc_read() 62 if (sequence.options != NULL) { in z_vrfy_adc_read() 63 K_OOPS(K_SYSCALL_VERIFY_MSG(sequence.options->callback == NULL, in z_vrfy_adc_read() 77 struct adc_sequence_options options; in z_vrfy_adc_read_async() local 80 K_OOPS(K_SYSCALL_VERIFY_MSG(copy_sequence(&sequence, &options, in z_vrfy_adc_read_async() [all …]
|
/Zephyr-latest/include/zephyr/arch/arc/v2/dsp/ |
D | arc_dsp.h | 15 * The @a options parameter indicates which register sets will 19 * @param options register sets options 22 void arc_dsp_disable(struct k_thread *thread, unsigned int options); 30 * The @a options parameter indicates which register sets will 34 * @param options register sets options 37 void arc_dsp_enable(struct k_thread *thread, unsigned int options);
|
/Zephyr-latest/tests/kernel/timer/timer_behavior/pytest/ |
D | saleae_logic2.py | 68 # options should be a string of the format: 72 def run(seconds, options): argument 73 options = [i for p in options.split(',') for i in p.split('=')] 74 options = dict(zip(options[::2], options[1::2])) 76 device_id = options.get('device-id') 77 address = str(options.get('address')) 78 port = int(options.get('port')) 79 channel = int(options.get('channel')) 80 sample_rate = int(options.get('sample-rate')) 81 threshold_volts = float(options.get('threshold-volts'))
|
/Zephyr-latest/scripts/kconfig/ |
D | hardenconfig.py | 18 options = compare_with_hardened_conf(kconf, hardened_kconf_filename) 20 display_results(options) 40 options = [] 54 options.append(Option(name=name, current=current, 59 …options.append(Option(name=node.item.name, current=node.item.str_value, recommended='n', symbol=no… 61 return options 64 def display_results(options): argument 70 # results, only printing options that have failed for now. It simplify the readability. 72 for opt in options:
|
/Zephyr-latest/include/zephyr/linker/ |
D | linker-tool-lld.h | 35 * @param options Section options, such as (NOLOAD), or left blank 39 #define SECTION_PROLOGUE(name, options, align) \ argument 40 name options : align 54 * @param options Section options, or left blank 58 #define SECTION_DATA_PROLOGUE(name, options, align) \ argument 59 SECTION_PROLOGUE(name, options, align)
|
/Zephyr-latest/samples/drivers/video/tcpserversink/ |
D | prj.conf | 1 # Generic networking options 9 # Kernel options 30 # IP address options 38 # Network application options and configuration
|
/Zephyr-latest/scripts/ |
D | coccicheck | 15 usage="Usage: ./scripts/coccicheck [OPTIONS]... [DIRECTORY|FILE]... 17 OPTIONS: 85 OPTIONS="--dir $ZEPHYR_BASE" 87 OPTIONS="--dir $FILE" 96 OPTIONS="--macro-file $ZEPHYR_BASE/scripts/coccinelle/macros.h $OPTIONS" 99 OPTIONS="--patch $ZEPHYR_BASE $OPTIONS" 105 OPTIONS="$OPTIONS --jobs $NPROC --chunksize 1" 142 OPTIONS="$OPTIONS $SPFLAGS" 146 OPT=`grep "Options:" $COCCI | cut -d':' -f2` 207 $FLAGS --cocci-file $COCCI $OPT $OPTIONS || \ [all …]
|
/Zephyr-latest/samples/net/mqtt_sn_publisher/ |
D | prj.conf | 1 # Generic networking options 11 # Kernel options 29 # IP address options 32 # Network application options and configuration
|
/Zephyr-latest/samples/net/promiscuous_mode/ |
D | prj.conf | 1 # Generic networking options 12 # Kernel options 30 # IP address options 37 # Network application options and configuration
|
/Zephyr-latest/samples/net/sockets/net_mgmt/ |
D | prj.conf | 1 # Generic networking options 13 # Kernel options 23 # IP address options 32 # Network application options and configuration
|
/Zephyr-latest/scripts/west_commands/tests/ |
D | test_twister.py | 48 options = twister._parse_arguments(args=test_case["r"], options=None) 50 assert options.clobber_output == test_case["c"] 51 assert options.test_only == test_case["test_only"] 53 assert options.testsuite_root == test_case["T"]
|
/Zephyr-latest/scripts/west_commands/ |
D | twister_cmd.py | 24 Convenience wrapper for twister. The below options are shared with the twister 59 options = parse_arguments(self.parser, args=remainder, options=args) 61 ret = main(options, default_options) 64 def _parse_arguments(self, args, options): argument 66 return parse_arguments(self.parser, args, options)
|
/Zephyr-latest/subsys/mgmt/mcumgr/grp/os_mgmt_client/ |
D | Kconfig | 5 # of MCUmgr client subsystem and provides Kconfig options to configure 8 # Options defined in this file should be prefixed: 9 # MCUMGR_GRP_OS_CLIENT_ -- general group options; 11 # When adding Kconfig options, that control the same feature,
|
/Zephyr-latest/kernel/ |
D | float.c | 21 int z_impl_k_float_enable(struct k_thread *thread, unsigned int options) in z_impl_k_float_enable() argument 24 return arch_float_enable(thread, options); in z_impl_k_float_enable() 27 ARG_UNUSED(options); in z_impl_k_float_enable() 40 static inline int z_vrfy_k_float_enable(struct k_thread *thread, unsigned int options) in z_vrfy_k_float_enable() argument 43 return z_impl_k_float_enable(thread, options); in z_vrfy_k_float_enable()
|
/Zephyr-latest/samples/net/sockets/echo_server/ |
D | prj.conf | 1 # Generic networking options 11 # Kernel options 30 # IP address options 39 # Network application options and configuration
|
/Zephyr-latest/tests/subsys/mgmt/mcumgr/handler_demo/ |
D | Kconfig | 4 # of MCUmgr subsystem and provides Kconfig options to configure 7 # Options defined in this file should be prefixed: 8 # MCUMGR_GRP_EXAMPLE_ -- general group options; 10 # When adding Kconfig options, that control the same feature,
|
/Zephyr-latest/tests/subsys/mgmt/mcumgr/handler_demo/example_as_module/ |
D | Kconfig | 4 # of MCUmgr subsystem and provides Kconfig options to configure 7 # Options defined in this file should be prefixed: 8 # MCUMGR_GRP_EXAMPLE_ -- general group options; 10 # When adding Kconfig options, that control the same feature,
|