/scripts/west_commands/zspdx/ |
A D | spdxids.py | 8 def getSPDXIDSafeCharacter(c): argument 17 if c.isalpha() or c.isdigit() or c == "-" or c == ".": 18 return c 33 return "".join([getSPDXIDSafeCharacter(c) for c in s])
|
/scripts/west_commands/completion/ |
A D | west-completion.fish | 337 complete -c west -f 340 complete -c west -n "__zephyr_west_exclude -h --help" -o h -l help -d "show help" 341 complete -c west -o v -l verbose -d "enable verbosity" 342 complete -c west -n "__zephyr_west_exclude -V --version" -o V -l version -d "print version" 346 complete -c west -n __zephyr_west_use_subcommand -ra init -d "create a west workspace" 373 complete -c west -n __zephyr_west_use_subcommand -ra manifest -d "manage the west manifest" 393 complete -c west -n "__zephyr_west_seen_subcommand_from forall" -o c -x -d "command to execute" 398 complete -c west -n __zephyr_west_use_subcommand -ra config -d "get or set config file values" 410 complete -c west -n __zephyr_west_use_subcommand -ra help -d "get help for west or a command" 422 complete -c west -n "__zephyr_west_seen_subcommand_from boards" -o n -l name -d "name regex" [all …]
|
/scripts/tracing/ |
A D | parse_ctf.py | 126 c = Fore.GREEN 128 c = Fore.CYAN 130 c = Fore.YELLOW 131 … print(c + f"{dt} (+{diff_s:.6f} s): {event.name} {event.payload_field['id']}" + Fore.RESET) 133 c = Fore.CYAN 134 … print(c + f"{dt} (+{diff_s:.6f} s): {event.name} ({event.payload_field['id']})" + Fore.RESET) 136 c = Fore.MAGENTA 137 … print(c + f"{dt} (+{diff_s:.6f} s): {event.name} ({event.payload_field['id']})" + Fore.RESET)
|
/scripts/kconfig/ |
A D | menuconfig.py | 862 elif c == " ": 909 elif c == "/": 915 elif c == "?": 950 if c is None or c == "c": 953 if c == "y": 959 elif c == "n": 1824 if c is None or c == "c": 1963 c = c.lower() 2150 if c == "\n": 3159 c = chr(c) [all …]
|
/scripts/coccinelle/ |
A D | boolean.cocci | 2 // https://gitlab.com/MISRA/MISRA-C/MISRA-C-2012/Example-Suite/-/blob/master/R_14_04.c 83 constant c; 86 while (c@p) {...} 88 while (!c@p) {...} 90 if (c@p) {...} 92 if (!c@p) {...}
|
/scripts/native_simulator/ |
A D | Makefile | 85 SRCS:=$(shell ls ${NSI_PATH}common/src/*.c) 87 SRCS+=$(shell ls ${NSI_PATH}native/src/*.c) 98 …=$(abspath $(addprefix $(NSI_BUILD_PATH)/,$(sort $(patsubst %.c,%.o,${NSI_EXTRA_SRCS:%.cpp=%.c})))) 99 OBJS:=$(abspath $(addprefix $(NSI_BUILD_PATH)/,${SRCS:${NSI_PATH}%.c=%.o})) ${EXTRA_OBJS} 111 ${NSI_BUILD_PATH}/%.o: /%.c ${NSI_PATH}Makefile ${NSI_CONFIG_FILE} 120 ${NSI_BUILD_PATH}/%.o: ${NSI_PATH}/%.c ${NSI_PATH}Makefile ${NSI_CONFIG_FILE} 125 ${NSI_CC} -x c -E -P $< -o $@ ${DEPENDFLAGS}
|
/scripts/dts/ |
A D | gen_driver_kconfig_dts.py | 85 for c in sorted(compats): 87 compat=c, COMPAT=c.upper().translate(TO_UNDERSCORES)
|
/scripts/ |
A D | list_hardware.py | 59 [c['name'] for c in soc.get('cpuclusters', [])], 68 [c['name'] for c in soc.get('cpuclusters', [])], 77 [c['name'] for c in soc.get('cpuclusters', [])], 90 self._socs.append(Soc(soc['name'], [c['name'] for c in soc.get('cpuclusters', [])], 94 [c['name'] for c in soc.get('cpuclusters', [])],
|
/scripts/pylib/twister/ |
A D | scl.py | 64 c = pykwalify.core.Core(source_data=data, schema_data=schema) 65 c.validate(raise_exception=True)
|
/scripts/utils/ |
A D | ntc_thermistor_table.py | 31 def c_to_k(c: float): 33 return c + 273.15
|
/scripts/tests/twister_blackbox/test_data/tests/seed_native_sim/dummy/ |
A D | Kconfig | 2 # Copyright (c) 2024 Intel Corporation
|
/scripts/pylib/twister/twisterlib/ |
A D | testinstance.py | 144 for c in self.testsuite.testcases: 145 self.add_testcase(c.name, freeform=c.freeform) 204 for c in self.testcases: 205 if c.name == name: 206 return c 210 for c in self.testcases: 211 if c.name == name: 212 return c
|
/scripts/tests/twister/test_data/quarantines/ |
A D | with_regexp.yaml | 2 - test_(a|c).check_2
|
/scripts/tests/twister_blackbox/test_data/samples/hello_world/ |
A D | CMakeLists.txt | 8 target_sources(app PRIVATE src/main.c)
|
/scripts/tests/twister_blackbox/test_data/tests/pytest/ |
A D | CMakeLists.txt | 7 target_sources(app PRIVATE src/main.c)
|
/scripts/tests/twister_blackbox/test_data/tests/always_build_error/dummy/ |
A D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/scripts/tests/twister_blackbox/test_data/tests/always_fail/dummy/ |
A D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/scripts/tests/twister_blackbox/test_data/tests/always_timeout/dummy/ |
A D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/scripts/tests/twister_blackbox/test_data/tests/always_warning/dummy/ |
A D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/scripts/tests/twister_blackbox/test_data/tests/dummy/agnostic/group1/subgroup1/ |
A D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/scripts/tests/twister_blackbox/test_data/tests/dummy/agnostic/group1/subgroup2/ |
A D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/scripts/tests/twister_blackbox/test_data/tests/dummy/agnostic/group2/ |
A D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/scripts/tests/twister_blackbox/test_data/tests/one_fail_one_pass/agnostic/group1/subgroup2/ |
A D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/scripts/tests/twister_blackbox/test_data/tests/params/dummy/ |
A D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/scripts/tests/twister_blackbox/test_data/tests/qemu_overflow/dummy/ |
A D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|