Home
last modified time | relevance | path

Searched full:exists (Results 1 – 25 of 500) sorted by relevance

12345678910>>...20

/Zephyr-latest/boards/others/neorv32/support/
Dneorv32.cfg4 if { [info exists CHIPNAME] } {
10 if { [info exists WORKAREASIZE] } {
16 if { [info exists WORKAREAADDR] } {
22 if { [info exists CPUTAPID] } {
Dopenocd.cfg8 if { [info exists _ZEPHYR_BOARD_SERIAL] } {
/Zephyr-latest/scripts/west_commands/zspdx/
Dsbom.py40 # check that query dir exists as a directory, or else create it
42 if os.path.exists(cmakeApiDirPath):
44 log.err(f'cmake api query directory {cmakeApiDirPath} exists and is not a directory')
46 # directory exists, we're good
51 # check that codemodel-v2 exists as a file, or else create it
53 if os.path.exists(queryFilePath):
55 log.err(f'cmake api query file {queryFilePath} exists and is not a directory')
57 # file exists, we're good
/Zephyr-latest/scripts/build/
Dsubfolder_list.py7 the list of all sub-directories found. If the output file already exists, the
45 if not os.path.exists(create_links):
49 if not os.path.exists(symlink):
63 if not os.path.exists(symlink):
75 File won't be updated if it already exists and has the same content
80 if os.path.exists(out_file):
100 if os.path.exists(trigger):
Dgen_kobject_placeholders.py45 if one_sect['exists']:
64 "exists": False,
70 "exists": False,
76 "exists": False,
92 sections[name]['exists'] = True
/Zephyr-latest/cmake/
Dvif.cmake19 if (EXISTS ${CONFIG_GENVIF_INPUT_VIF_XML_PATH})
22 elseif (EXISTS ${APPLICATION_CONFIG_DIR}/${CONFIG_GENVIF_INPUT_VIF_XML_PATH})
26 if (EXISTS ${APPLICATION_CONFIG_DIR}/boards/${board_vif_xml})
28 elseif (EXISTS ${APPLICATION_CONFIG_DIR}/${vif_xml})
30 elseif (EXISTS ${BOARD_DIR}/${vif_xml})
/Zephyr-latest/samples/net/cloud/aws_iot_mqtt/
DCMakeLists.txt11 if(NOT EXISTS ${APPLICATION_SOURCE_DIR}/src/creds/key.c OR
12 NOT EXISTS ${APPLICATION_SOURCE_DIR}/src/creds/cert.c OR
13 NOT EXISTS ${APPLICATION_SOURCE_DIR}/src/creds/ca.c)
/Zephyr-latest/boards/sc/scobc_module1/support/
Dscobc-module1.cfg4 if { [info exists CHIPNAME] } {
10 if { [info exists CPUTAPID ] } {
16 if { [info exists WORKAREASIZE] } {
/Zephyr-latest/boards/arm/v2m_beetle/support/
Dopenocd.cfg7 if { [info exists CHIPNAME] } {
13 if { [info exists ENDIAN] } {
19 if { [info exists CPUTAPID] } {
/Zephyr-latest/boards/ene/kb1200_evb/support/
Dopenocd.cfg11 if { [info exists CHIPNAME] } {
18 if { [info exists CPUDAPID ] } {
26 if { [info exists WORKAREASIZE] } {
/Zephyr-latest/scripts/tests/twister_blackbox/
Dtest_hardwaremap.py116 if os.path.exists(path):
141 assert os.path.exists(path)
153 if os.path.exists(path):
168 if os.path.exists(path):
205 assert os.path.exists(path)
235 if os.path.exists(path):
249 if os.path.exists(path):
272 assert os.path.exists(path)
287 if os.path.exists(path):
Dtest_report.py156 assert os.path.exists(path), 'file not found'
178 assert os.path.exists(platform_path), f'file not found {f_platform}'
205 assert os.path.exists(path), f'file not found {f_name}'
237 assert os.path.exists(path), f'file not found {f_name}'
255 if os.path.exists(twister_path):
269 assert os.path.exists(path), f'file not found {f_name}'
274 if os.path.exists(twister_path):
292 if os.path.exists(twister_path):
306 assert os.path.exists(path), 'file not found {f_name}'
310 assert os.path.exists(platform_path), f'file not found {f_platform}'
[all …]
/Zephyr-latest/cmake/modules/
DFindGnuLd.cmake28 # GNULD_LINKER exists on repeated builds or defined manually...
29 if(EXISTS "${GNULD_LINKER}")
41 # Since GNULD_LINKER already exists, there is no need to find it again (below).
50 if(EXISTS "${GNULD_LINKER}")
Ddts.cmake48 # - ${BINARY_DIR_INCLUDE_GENERATED}/devicetree_generated.h exists
57 # - ${PROJECT_BINARY_DIR}/zephyr.dts exists
58 # - ${PROJECT_BINARY_DIR}/edt.pickle exists
59 # - ${KCONFIG_BINARY_DIR}/Kconfig.dts exists
141 if(EXISTS ${dir}/${shortened_board_string}.dts AND NOT BOARD_${BOARD}_SINGLE_SOC)
145 elseif(EXISTS ${dir}/${board_string}.dts AND EXISTS ${dir}/${shortened_board_string}.dts)
150 elseif(EXISTS ${dir}/${board_string}.dts)
152 elseif(EXISTS ${dir}/${shortened_board_string}.dts)
158 if(EXISTS ${DTS_SOURCE})
224 if(EXISTS ${bindings_path})
[all …]
Dyaml.cmake51 yaml_context(EXISTS NAME ${ARG_YAML_NAME} result)
62 # Will result in CMake error if context exists.
66 yaml_context(EXISTS NAME ${ARG_YAML_NAME} result)
69 message(FATAL_ERROR "YAML context '${ARG_YAML_NAME}' already exists."
76 # yaml_context(EXISTS NAME <name> <result>)
81 # EXISTS : Check if the YAML context exists in the current scope
82 # If the context exists, then TRUE is returned in <result>
87 cmake_parse_arguments(ARG_YAML "EXISTS" "NAME" "" ${ARGN})
88 zephyr_check_arguments_required_all(${CMAKE_CURRENT_FUNCTION} ARG_YAML EXISTS NAME)
92 "${CMAKE_CURRENT_FUNCTION}(EXISTS NAME ${ARG_YAML_NAME} <result-var>)."
[all …]
/Zephyr-latest/scripts/tests/build/
Dtest_subfolder_list.py88 # should not be updated if it already exists and has the same content
93 # should be updated if exists with different content
111 assert os.path.exists(trigger_file)
113 # should be touched if it exists
/Zephyr-latest/share/sysbuild/
DCMakeLists.txt23 if(EXISTS ${APP_DIR}/sysbuild/CMakeLists.txt)
31 yaml_context(EXISTS NAME build_info result)
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Dfifo_handler.py58 if not os.path.exists(filename):
86 if os.path.exists(self._fifo_out_path):
88 if os.path.exists(self._fifo_in_path):
106 if os.path.exists(self._fifo_out_path):
108 if os.path.exists(self._fifo_in_path):
/Zephyr-latest/scripts/west_commands/
Dspdx.py103 # make sure SPDX directory exists, or create it if it doesn't
104 if os.path.exists(cfg.spdxDir):
106 self.err(f'SPDX output directory {cfg.spdxDir} exists but is not a directory')
108 # directory exists, we're good
/Zephyr-latest/scripts/utils/
Dboard_v1_to_v2.py51 if new_board_path.exists():
52 print("New board already exists, updating board with additional SoC")
61 if f_new.exists():
68 if not board_settings_file.exists():
172 if not new_board_kconfig_file.exists():
/Zephyr-latest/boards/ti/cc1352p7_launchpad/support/
Dopenocd.cfg3 if { [info exists _ZEPHYR_BOARD_SERIAL] } {
/Zephyr-latest/boards/infineon/cy8ckit_062s2_ai/support/
Dopenocd.cfg1 if {[info exists env(OPENOCD_INTERFACE)]} {
/Zephyr-latest/boards/infineon/cyw920829m2evk_02/support/
Dopenocd.cfg12 if { [info exists _ZEPHYR_BOARD_SERIAL] } {
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dtwister_main.py79 if os.path.exists(options.outdir):
83 if os.path.exists(ls):
88 elif os.path.exists(options.outdir):
95 if not os.path.exists(new_out):
155 if not os.path.exists(plan_file):
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/device/
Dqemu_adapter_test.py55 assert not os.path.exists(device._fifo_connection._fifo_out_path)
56 assert not os.path.exists(device._fifo_connection._fifo_in_path)

12345678910>>...20