/Zephyr-Core-2.7.6/scripts/ |
D | twister | 748 options = parse_arguments() 751 if options.no_clean or options.only_failed or options.test_only: 752 if os.path.exists(options.outdir): 754 elif options.last_metrics: 755 ls = os.path.join(options.outdir, "twister.csv") 761 elif os.path.exists(options.outdir): 762 if options.clobber_output: 763 print("Deleting output directory {}".format(options.outdir)) 764 shutil.rmtree(options.outdir) 767 new_out = options.outdir + ".{}".format(i) [all …]
|
/Zephyr-Core-2.7.6/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 (z_user_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 Z_OOPS(Z_SYSCALL_VERIFY_MSG(copy_sequence(&sequence, &options, in z_vrfy_adc_read() 62 if (sequence.options != NULL) { in z_vrfy_adc_read() 63 Z_OOPS(Z_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 Z_OOPS(Z_SYSCALL_VERIFY_MSG(copy_sequence(&sequence, &options, in z_vrfy_adc_read_async() [all …]
|
D | adc_context.h | 58 struct adc_sequence_options options; member 95 k_timer_start(&ctx->timer, K_NO_WAIT, K_USEC(ctx->options.interval_us)); in adc_context_enable_timer() 185 if (sequence->options) { in adc_context_start_read() 186 ctx->options = *sequence->options; in adc_context_start_read() 187 ctx->sequence.options = &ctx->options; in adc_context_start_read() 190 if (ctx->options.interval_us != 0U) { in adc_context_start_read() 208 if (ctx->sequence.options) { in adc_context_on_sampling_done() 209 adc_sequence_callback callback = ctx->options.callback; in adc_context_on_sampling_done() 231 ctx->options.extra_samplings) { in adc_context_on_sampling_done() 246 if (ctx->options.interval_us == 0U) { in adc_context_on_sampling_done() [all …]
|
/Zephyr-Core-2.7.6/boards/riscv/adp_xc7k_ae350/ |
D | adp_xc7k_ae350_defconfig | 12 # Serial driver options 16 # GPIO driver options 20 # RV64 options 23 # FPU (single precision) options 29 # FPU (double precision) options 35 # HW DSP options 38 # Cache options 41 # Nocache memory options
|
/Zephyr-Core-2.7.6/include/linker/ |
D | linker-tool-gcc.h | 173 #define SECTION_PROLOGUE(name, options, align) \ argument 174 name options : ALIGN_WITH_INPUT align 176 #define SECTION_PROLOGUE(name, options, align) \ 177 name options : align 198 #define SECTION_DATA_PROLOGUE(name, options, align) \ argument 199 name options : ALIGN_WITH_INPUT align 201 #define SECTION_DATA_PROLOGUE(name, options, align) \ 202 SECTION_PROLOGUE(name, options, align)
|
D | linker-tool-mwdt.h | 92 #define SECTION_PROLOGUE(name, options, align) name options align : argument 102 #define SECTION_DATA_PROLOGUE(name, options, align) \ argument 103 name options ALIGN_WITH_INPUT align : 105 #define SECTION_DATA_PROLOGUE(name, options, align) name options align : argument
|
/Zephyr-Core-2.7.6/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, 56 return options 59 def display_results(options): argument 67 for opt in options:
|
/Zephyr-Core-2.7.6/subsys/bluetooth/host/ |
D | adv.c | 45 if (param->options & BT_LE_ADV_OPT_USE_NAME) { in get_adv_name_type_param() 46 if (param->options & BT_LE_ADV_OPT_FORCE_NAME_IN_AD) { in get_adv_name_type_param() 50 if ((param->options & BT_LE_ADV_OPT_EXT_ADV) && in get_adv_name_type_param() 51 !(param->options & BT_LE_ADV_OPT_SCANNABLE)) { in get_adv_name_type_param() 241 !(param->options & BT_LE_ADV_OPT_EXT_ADV) && in valid_adv_ext_param() 242 !(param->options & BT_LE_ADV_OPT_CONNECTABLE)) { in valid_adv_ext_param() 250 (param->options & BT_LE_ADV_OPT_EXT_ADV) && in valid_adv_ext_param() 251 !(param->options & BT_LE_ADV_OPT_DIR_MODE_LOW_DUTY)) { in valid_adv_ext_param() 258 if (!(param->options & BT_LE_ADV_OPT_EXT_ADV) && in valid_adv_ext_param() 259 param->options & (BT_LE_ADV_OPT_EXT_ADV | in valid_adv_ext_param() [all …]
|
/Zephyr-Core-2.7.6/drivers/misc/ft8xx/ |
D | ft8xx_copro.c | 79 uint16_t options, in ft8xx_copro_cmd_text() argument 88 sizeof(options) + in ft8xx_copro_cmd_text() 108 ft8xx_wr16(FT800_RAM_CMD + reg_cmd_write, options); in ft8xx_copro_cmd_text() 109 increase_reg_cmd_write(sizeof(options)); in ft8xx_copro_cmd_text() 120 uint16_t options, in ft8xx_copro_cmd_number() argument 127 sizeof(options) + in ft8xx_copro_cmd_number() 146 ft8xx_wr16(FT800_RAM_CMD + reg_cmd_write, options); in ft8xx_copro_cmd_number() 147 increase_reg_cmd_write(sizeof(options)); in ft8xx_copro_cmd_number()
|
/Zephyr-Core-2.7.6/doc/_extensions/zephyr/ |
D | application.py | 126 tool = self.options.get('tool', 'west').lower() 127 app = self.options.get('app', None) 128 zephyr_app = self.options.get('zephyr-app', None) 129 cd_into = 'cd-into' in self.options 130 generator = self.options.get('generator', 'ninja').lower() 131 host_os = self.options.get('host-os', 'all').lower() 132 board = self.options.get('board', None) 133 shield = self.options.get('shield', None) 134 conf = self.options.get('conf', None) 135 gen_args = self.options.get('gen-args', None) [all …]
|
/Zephyr-Core-2.7.6/scripts/gitlint/ |
D | zephyr_commit_rules.py | 17 from gitlint.options import IntOption, StrOption 33 min_line_count = self.options['min-line-count'].value 50 max_line_count = self.options['max-line-count'].value 85 max_length = self.options['line-length'].value 96 regex = self.options['regex'].value 110 max_length = self.options['line-length'].value
|
/Zephyr-Core-2.7.6/subsys/bluetooth/shell/ |
D | bt.c | 827 static int cmd_active_scan_on(const struct shell *sh, uint32_t options, in cmd_active_scan_on() argument 833 .options = BT_LE_SCAN_OPT_NONE, in cmd_active_scan_on() 838 param.options |= options; in cmd_active_scan_on() 852 static int cmd_passive_scan_on(const struct shell *sh, uint32_t options, in cmd_passive_scan_on() argument 857 .options = BT_LE_SCAN_OPT_NONE, in cmd_passive_scan_on() 863 param.options |= options; in cmd_passive_scan_on() 895 uint32_t options = 0; in cmd_scan() local 903 options |= BT_LE_SCAN_OPT_FILTER_DUPLICATE; in cmd_scan() 905 options &= ~BT_LE_SCAN_OPT_FILTER_DUPLICATE; in cmd_scan() 907 options |= BT_LE_SCAN_OPT_FILTER_ACCEPT_LIST; in cmd_scan() [all …]
|
/Zephyr-Core-2.7.6/tests/drivers/adc/adc_dma/src/ |
D | test_adc.c | 243 const struct adc_sequence_options options = { in test_task_asynchronous_call() local 249 .options = &options, in test_task_asynchronous_call() 269 check_samples(1 + options.extra_samplings); in test_task_asynchronous_call() 309 const struct adc_sequence_options options = { in test_task_with_interval() local 315 .options = &options, in test_task_with_interval() 337 check_samples2(1 + options.extra_samplings); in test_task_with_interval() 389 const struct adc_sequence_options options = { in test_task_repeated_samplings() local 404 .options = &options, in test_task_repeated_samplings()
|
/Zephyr-Core-2.7.6/include/drivers/ |
D | watchdog.h | 113 typedef int (*wdt_api_setup)(const struct device *dev, uint8_t options); 163 __syscall int wdt_setup(const struct device *dev, uint8_t options); 165 static inline int z_impl_wdt_setup(const struct device *dev, uint8_t options) in z_impl_wdt_setup() argument 170 return api->setup(dev, options); in z_impl_wdt_setup()
|
/Zephyr-Core-2.7.6/tests/net/all/ |
D | README.txt | 1 This test tries to enable all possible networking related config options 6 a list of missing network related kconfig options from prj.conf file. 10 * separate conflicting configuration options and create new test cases
|
/Zephyr-Core-2.7.6/drivers/bluetooth/ |
D | Kconfig | 1 # Bluetooth LE driver configuration options 7 # Bluetooth options 11 # options are only applicable if controller support hasn't been enabled.
|
/Zephyr-Core-2.7.6/tests/drivers/adc/adc_api/src/ |
D | test_adc.c | 472 const struct adc_sequence_options options = { in test_task_asynchronous_call() local 478 .options = &options, in test_task_asynchronous_call() 500 check_samples(1 + options.extra_samplings); in test_task_asynchronous_call() 525 if (sequence->options->user_data != &my_sequence_identifier) { in sample_with_interval_callback() 526 user_data = sequence->options->user_data; in sample_with_interval_callback() 537 const struct adc_sequence_options options = { in test_task_with_interval() local 544 .options = &options, in test_task_with_interval() 560 zassert_equal(user_data, sequence.options->user_data, in test_task_with_interval() 562 user_data, sequence.options->user_data); in test_task_with_interval() 564 check_samples(1 + options.extra_samplings); in test_task_with_interval() [all …]
|
/Zephyr-Core-2.7.6/subsys/net/lib/sockets/ |
D | sockets_tls.c | 130 } options; member 349 tls->options.verify_level = -1; in tls_alloc() 367 tls->options.dtls_handshake_timeout_min = in tls_alloc() 369 tls->options.dtls_handshake_timeout_max = in tls_alloc() 401 memcpy(&target_tls->options, &source_tls->options, in tls_clone() 402 sizeof(target_tls->options)); in tls_clone() 405 if (target_tls->options.is_hostname_set) { in tls_clone() 569 if (tls_ctx->options.role == MBEDTLS_SSL_IS_SERVER) { in dtls_rx() 769 for (i = 0; i < tls->options.sec_tag_list.sec_tag_count; i++) { in tls_mbedtls_set_credentials() 770 tag = tls->options.sec_tag_list.sec_tags[i]; in tls_mbedtls_set_credentials() [all …]
|
/Zephyr-Core-2.7.6/drivers/watchdog/ |
D | wdt_handlers.c | 10 static inline int z_vrfy_wdt_setup(const struct device *dev, uint8_t options) in z_vrfy_wdt_setup() argument 13 return z_impl_wdt_setup(dev, options); in z_vrfy_wdt_setup()
|
/Zephyr-Core-2.7.6/soc/xtensa/intel_adsp/ |
D | Kconfig | 1 # Intel CAVS SoC family configuration options 15 # Select SoC Part No. and configuration options
|
/Zephyr-Core-2.7.6/soc/xtensa/nxp_adsp/ |
D | Kconfig | 1 # NXP i.MX8 SoC family configuration options 16 # Select SoC Part No. and configuration options
|
/Zephyr-Core-2.7.6/soc/arm/atmel_sam/ |
D | Kconfig | 1 # Atmel SAM MCU family configuration options 16 # Select SoC Part No. and configuration options
|
/Zephyr-Core-2.7.6/drivers/serial/ |
D | Kconfig.stellaris | 21 the additional configure options below. 29 the additional configure options below. 37 the additional configure options below.
|
/Zephyr-Core-2.7.6/arch/x86/core/ |
D | x86_mmu.c | 882 uint32_t options) in pte_atomic_update() argument 884 bool user_table = (options & OPTION_USER) != 0U; in pte_atomic_update() 885 bool reset = (options & OPTION_RESET) != 0U; in pte_atomic_update() 886 bool clear = (options & OPTION_CLEAR) != 0U; in pte_atomic_update() 952 pentry_t *old_val_ptr, pentry_t mask, uint32_t options) in page_map_set() argument 955 bool flush = (options & OPTION_FLUSH) != 0U; in page_map_set() 967 mask, options); in page_map_set() 1019 uint32_t options) in range_map_ptables() argument 1021 bool zero_entry = (options & (OPTION_RESET | OPTION_CLEAR)) != 0U; in range_map_ptables() 1045 options); in range_map_ptables() [all …]
|
/Zephyr-Core-2.7.6/arch/x86/core/ia32/ |
D | thread.c | 63 extern int z_float_enable(struct k_thread *thread, unsigned int options); 65 int arch_float_enable(struct k_thread *thread, unsigned int options) in arch_float_enable() argument 68 return z_float_enable(thread, options); in arch_float_enable()
|