Searched refs:arg_list (Results 1 – 11 of 11) sorted by relevance
/Zephyr-latest/scripts/tests/twister/ |
D | test_config_parser.py | 20 arg_list = "FIELD1=value1 FIELD2=value2 FIELD3=value3" 22 target_fields, arg_list) 30 arg_list = "arg1 arg2 arg3" 33 target_fields, arg_list) 41 arg_list = "arg1 arg2 arg3" 43 target_fields, arg_list)
|
/Zephyr-latest/soc/intel/common/ |
D | soc_gpio.c | 18 ACPI_OBJECT_LIST arg_list; in gpio_info_acpi_get() local 21 arg_list.Count = ARRAY_SIZE(args); in gpio_info_acpi_get() 22 arg_list.Pointer = args; in gpio_info_acpi_get() 30 status = acpi_invoke_method(GET_GPIO_BASE_NUM, &arg_list, &gpio_obj); in gpio_info_acpi_get()
|
/Zephyr-latest/soc/nuvoton/npcm/common/esiost/ |
D | esiost_args.py | 94 def _create_parser(arg_list): argument 107 args = parser.parse_known_args(arg_list.split()) 109 if arg_list == "":
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | config_parser.py | 13 def extract_fields_from_arg_list(target_fields: set, arg_list: str | list): 21 if isinstance(arg_list, str): 22 args = arg_list.strip().split() 24 args = arg_list
|
/Zephyr-latest/soc/nuvoton/npcx/common/ecst/ |
D | ecst_args.py | 179 def _create_parser(arg_list): argument 203 args = parser.parse_known_args(arg_list.split()) 205 if arg_list == "":
|
/Zephyr-latest/scripts/west_commands/ |
D | build.py | 359 arg_list = extra.split(" ") 361 arg_list = extra 365 for arg in arg_list: 379 config_options = [arg for arg in arg_list if arg.startswith("CONFIG_")] 380 … non_config_options = [arg for arg in arg_list if not arg.startswith("CONFIG_")] 384 extra_conf_files.extend(arg_list) 387 extra_overlay_confs.extend(arg_list) 390 extra_dtc_overlay_files.extend(arg_list) 393 required_snippets.extend(arg_list)
|
/Zephyr-latest/lib/acpi/ |
D | acpi.c | 177 ACPI_OBJECT_LIST arg_list; in acpi_enable_pic_mode() local 180 arg_list.Count = 1; in acpi_enable_pic_mode() 181 arg_list.Pointer = arg; in acpi_enable_pic_mode() 186 status = AcpiEvaluateObject(NULL, "\\_PIC", &arg_list, NULL); in acpi_enable_pic_mode() 934 int acpi_invoke_method(char *path, ACPI_OBJECT_LIST *arg_list, ACPI_OBJECT *ret_obj) in acpi_invoke_method() argument 942 status = AcpiEvaluateObject(NULL, path, arg_list, &ret_buff); in acpi_invoke_method()
|
/Zephyr-latest/scripts/logging/dictionary/dictionary_parser/ |
D | log_parser_v1.py | 107 def process_one_fmt_str(self, fmt_str, arg_list, string_tbl): argument 193 one_arg = struct.unpack_from(unpack_fmt, arg_list, arg_offset)[0]
|
D | log_parser_v3.py | 112 def process_one_fmt_str(self, fmt_str, arg_list, string_tbl): argument 198 one_arg = struct.unpack_from(unpack_fmt, arg_list, arg_offset)[0]
|
/Zephyr-latest/include/zephyr/acpi/ |
D | acpi.h | 300 int acpi_invoke_method(char *path, ACPI_OBJECT_LIST *arg_list, ACPI_OBJECT *ret_obj);
|
/Zephyr-latest/cmake/modules/ |
D | extensions.cmake | 3729 set(arg_list ${ARGV}) variable 3730 list(FIND arg_list VALUE index) 3732 list(FIND arg_list PATH index) 3751 list(SUBLIST arg_list 0 ${index} keys) 3752 list(SUBLIST arg_list ${index} -1 values)
|