/Zephyr-latest/boards/common/ |
D | renode_robot.board.cmake | 5 # `--variable` is a renode-test argument, for setting a variable that can be later used in a .robot… 6 # ELF: used in common.robot to set the `elf` variable in the default .resc script defined i… 11 board_runner_args(renode-robot "--renode-robot-arg=--variable=ELF:@${PROJECT_BINARY_DIR}/${KERNEL_E… 12 board_runner_args(renode-robot "--renode-robot-arg=--variable=RESC:@${RENODE_SCRIPT}") 13 board_runner_args(renode-robot "--renode-robot-arg=--variable=UART:${RENODE_UART}") 14 board_runner_args(renode-robot "--renode-robot-arg=--variable=KEYWORDS:${ZEPHYR_BASE}/tests/robot/c… 15 board_runner_args(renode-robot "--renode-robot-arg=--variable=RESULTS_DIR:${APPLICATION_BINARY_DIR}…
|
/Zephyr-latest/tests/cmake/zephyr_get/ |
D | CMakeLists.txt | 47 # - assert_equal(<variable> <expected-value>) 49 # - assert_equal(<variable> 54 function(assert_equal variable expected_value) 55 if("${variable}" MATCHES "{.+}$") 56 string(CONFIGURE "$${variable}" actual_value) 58 set(actual_value "${${variable}}") 83 set(info "${TEST_NAME}: ${variable} == '${actual_value}'") 98 # Test with a local variable not controlled by sysbuild. 99 set(ENV{VARIABLE} "environment") 100 set(VARIABLE "cmake cache" CACHE INTERNAL "") variable [all …]
|
/Zephyr-latest/doc/kernel/services/synchronization/ |
D | condvar.rst | 6 A :dfn:`condition variable` is a synchronization primitive 17 condition variable is referenced by its memory address. 20 variable. 22 A condition variable is basically a queue of threads that threads can put 28 #. Puts the current thread in the condition variable queue. 38 A condition variable must be initialized before it can be used. 44 Defining a Condition Variable 47 A condition variable is defined using a variable of type :c:struct:`k_condvar`. 50 The following code defines a condition variable: 58 Alternatively, a condition variable can be defined and initialized at compile time [all …]
|
/Zephyr-latest/cmake/sca/eclair/ECL/ |
D | db_generation.ecl | 3 # NEEDED: set the variable for the binary output directory from the environment 4 # variable. 7 # NEEDED: set the variable for the ECLAIR project database from the environment 8 # variable. 11 # NEEDED: set the variable for the output directory from the environment 12 # variable.
|
/Zephyr-latest/doc/kernel/services/other/ |
D | atomic.rst | 6 An :dfn:`atomic variable` is one that can be read and modified 7 by threads and ISRs in an uninterruptible manner. It is a 32-bit variable on 8 32-bit machines and a 64-bit variable on 64-bit machines. 19 Using the kernel's atomic APIs to manipulate an atomic variable 21 even if higher priority contexts also manipulate the same variable. 29 Defining an Atomic Variable 32 An atomic variable is defined using a variable of type :c:type:`atomic_t`. 34 By default an atomic variable is initialized to zero. However, it can be given 41 Manipulating an Atomic Variable 44 An atomic variable is manipulated using the APIs listed at the end of [all …]
|
D | thread_local_storage.rst | 24 :kconfig:option:`CONFIG_ERRNO` to let the variable ``errno`` be a thread local 25 variable. This allows user threads to access the value of ``errno`` without 34 For example, to declare a thread local variable in header files: 40 And to declare the actual variable in source files: 46 Keyword ``static`` can also be used to limit the variable within a source file: 52 Using the thread local variable is the same as using other variable, for example:
|
/Zephyr-latest/include/zephyr/sys/ |
D | atomic.h | 52 * @brief Initialize an atomic variable. 54 * This macro can be used to initialize an atomic variable. For example, 57 * @param i Value to assign to atomic variable. 62 * @brief Initialize an atomic pointer variable. 64 * This macro can be used to initialize an atomic pointer variable. For 68 * @param p Pointer value to assign to atomic pointer variable. 118 * The target may be a single atomic variable or an array of them. 122 * @param target Address of atomic variable or array. 138 * The target may be a single atomic variable or an array of them. 142 * @param target Address of atomic variable or array. [all …]
|
/Zephyr-latest/include/zephyr/arch/x86/ |
D | intel_vtd.h | 64 #define VTD_MTRR_PHYSBASE0_REG 0x180 /* Variable-range MTRR Base0 */ 65 #define VTD_MTRR_PHYSMASK0_REG 0x188 /* Variable-range MTRR Mask0 */ 66 #define VTD_MTRR_PHYSBASE1_REG 0x190 /* Variable-range MTRR Base1 */ 67 #define VTD_MTRR_PHYSMASK1_REG 0x198 /* Variable-range MTRR Mask1 */ 68 #define VTD_MTRR_PHYSBASE2_REG 0x1A0 /* Variable-range MTRR Base2 */ 69 #define VTD_MTRR_PHYSMASK2_REG 0x1A8 /* Variable-range MTRR Mask2 */ 70 #define VTD_MTRR_PHYSBASE3_REG 0x1B0 /* Variable-range MTRR Base3 */ 71 #define VTD_MTRR_PHYSMASK3_REG 0x1B8 /* Variable-range MTRR Mask3 */ 72 #define VTD_MTRR_PHYSBASE4_REG 0x1C0 /* Variable-range MTRR Base4 */ 73 #define VTD_MTRR_PHYSMASK4_REG 0x1C8 /* Variable-range MTRR Mask4 */ [all …]
|
/Zephyr-latest/tests/kernel/mem_protect/mem_protect/src/ |
D | mem_partition.c | 29 /* The global variable var will be inside the bounds of 34 /* The global variable zeroed_var will be inside the bounds of 36 * used, indicating a BSS variable. 40 /* The global variable var will be inside the bounds of 42 * used, indicating a BSS variable.
|
/Zephyr-latest/scripts/ |
D | snippets.py | 54 def append_value(variable, value): argument 55 if variable in ('SB_EXTRA_CONF_FILE', 'EXTRA_DTC_OVERLAY_FILE', 'EXTRA_CONF_FILE'): 58 _err(f'snippet file {pathobj}: {variable}: file not found: {path}') 60 if variable in ('DTS_EXTRA_CPPFLAGS'): 62 _err(f'unknown append variable: {variable}') 64 for variable, value in snippet_data.get('append', {}).items(): 65 if (sysbuild is True and variable[0:3] == 'SB_') or \ 66 (sysbuild is False and variable[0:3] != 'SB_'): 67 self.appends[variable].append(append_value(variable, value)) 72 for variable, value in settings.get('append', {}).items(): [all …]
|
/Zephyr-latest/share/sysbuild/cmake/modules/ |
D | sysbuild_extensions.cmake | 47 # sysbuild_get(<variable> IMAGE <image> [VAR <image-variable>] <KCONFIG|CACHE>) 49 # This function will return the variable found in the CMakeCache.txt file 52 # `VAR` is not given, the `<variable>` name provided will be used both for 55 # The result will be returned in `<variable>`. 60 # and return the value in the local variable `PROJECT_NAME`. 64 # and return the value in the local variable `my_sample_PROJECT_NAME`. 68 # and return the value in the local variable `my_sample_CONFIG_FOO`. 70 # <variable>: variable used for returning CMake cache value. Also used as lookup 71 # variable if `VAR` is not provided. 72 # IMAGE: image name identifying the cache to use for variable lookup. [all …]
|
/Zephyr-latest/subsys/mgmt/mcumgr/grp/settings_mgmt/ |
D | Kconfig | 48 variable if placed on the stack or the maximum allocated size of the 49 variable if placed on the heap. 56 variable if placed on the stack or the allocated size of the 57 variable if placed on the heap (settings does not support getting
|
/Zephyr-latest/samples/posix/env/ |
D | README.rst | 12 If the user sets a new value for the ``ALERT`` environment variable, it is printed to standard 41 The shell command below shows how to create a new environment variable or update the value 42 associated with an existing environment variable. 45 ``ALERT`` environment variable and then immediately unsets it. 58 The shell command below may be used to display the value associated with one environment variable.
|
/Zephyr-latest/cmake/modules/ |
D | FindTargetTools.cmake | 34 # https://cmake.org/cmake/help/latest/variable/CMAKE_SYSTEM_NAME.html: 41 # variable is used for constructing the file names of the platform files 46 # https://cmake.org/cmake/help/latest/variable/CMAKE_SYSTEM_PROCESSOR.html: 51 # target system. This variable is not used very much except for one 58 # https://cmake.org/cmake/help/latest/variable/CMAKE_SYSTEM_VERSION.html: 59 # When the CMAKE_SYSTEM_NAME variable is set explicitly to enable cross 64 # https://cmake.org/cmake/help/latest/variable/CMAKE_LANG_BYTE_ORDER.html 68 # this setting to allow users to read the standard CMake variable or use
|
D | configuration_files.cmake | 21 # loaded, then no changes to the variable will happen. 64 The CACHED_CONF_FILE is internal Zephyr variable used between CMake runs. \ 65 To change CONF_FILE, use the CONF_FILE variable." ${CONF_FILE_FORCE_CACHE}) 67 # The CONF_FILE variable is now set to its final value. 96 # The DTC_OVERLAY_FILE variable is now set to its final value.
|
D | extensions.cmake | 382 # Set the output variable in the parent scope 409 # with a name accessible through the variable ZEPHYR_CURRENT_LIBRARY. 411 # The variable ZEPHYR_CURRENT_LIBRARY should seldom be needed since 937 # variable `ACTIVE_BOARD_REVISION` with the selected revision. 1158 key_value # Output variable 1538 # Writes 1 to the output variable 'ok' if 1560 # pow2round(<variable>) 1572 # n = Variable containing the number to round 1612 # zephyr_build_string(<out-variable> 1614 # [SHORT <out-variable>] [all …]
|
/Zephyr-latest/samples/modules/tflite-micro/magic_wand/train/ |
D | data_prepare_test.py | 35 …./%s/output_%s_%s.txt" % (folders[0], folders[0], names[0]) # pylint: disable=undefined-variable 37 …e_original_data(folders[0], names[0], self.data, self.file) # pylint: disable=undefined-variable 43 for idx, line in enumerate(lines): # pylint: disable=unused-variable 50 self.assertEqual(self.data[0]["name"], names[0]) # pylint: disable=undefined-variable 57 for idx, data in enumerate(self.data): # pylint: disable=unused-variable
|
/Zephyr-latest/samples/boards/st/ccm/ |
D | README.rst | 13 By prefixing a variable with __ccm_data_section, __ccm_bss_section, 64 Checking initial variable values: ... PASSED 66 Initial variable values: 77 Variable values after writing: 110 Checking initial variable values: ... PASSED 112 Initial variable values: 123 Variable values after writing:
|
/Zephyr-latest/scripts/coccinelle/ |
D | returnvar.cocci | 2 /// Remove unneeded variable used to store return value. 56 coccilib.report.print_report(p1[0], "Unneeded variable: \"" + ret + 66 cocci.print_main("unneeded \"" + ret + "\" variable", p1)
|
/Zephyr-latest/tests/subsys/llext/src/ |
D | find_section_ext.c | 7 /* This very basic extension only contains a global variable "number", which is 9 * CONFIG_LLEXT_STORAGE_WRITABLE-enabled builds to verify that the variable
|
/Zephyr-latest/subsys/net/lib/sockets/ |
D | Kconfig | 38 This variable specifies time in milliseconds after connect() 48 This variable specifies time in milliseconds after which DNS 60 This variable is related to the DNS timeout. If the DNS timeout is 62 is larger, then this variable specifies time in milliseconds after 163 This variable specifies time in milliseconds after which DTLS 178 This variable specifies the Maximum Fragment Length (MFL) value to 204 "This variable specifies maximum number of TLS/DTLS contexts that can 212 This variable sets maximum number of TLS/DTLS credentials that can be 220 This variable sets maximum number of TLS/DTLS ciphersuites that can 230 This variable sets maximum number of supported application layer [all …]
|
/Zephyr-latest/samples/subsys/zbus/benchmark/ |
D | benchmark_256KB.robot | 44 ${total} Set Variable 0 72 ${obs_type_str} Set Variable LISTENERS 74 ${obs_type_str} Set Variable SUBSCRIBERS 76 ${obs_type_str} Set Variable MSG_SUBSCRIBERS
|
/Zephyr-latest/tests/bsim/ |
D | generate_coverage_report.sh | 16 the variable WORK_DIR which by default is 20 You can override this by setting the variable OUTPUT_DIR 26 the variable TWISTER_COVERAGE_FILE, for example as:
|
/Zephyr-latest/cmake/toolchain/cross-compile/ |
D | generic.cmake | 4 # toolchain with a single environment variable. 15 # It can be set from either the environment or from a CMake variable
|
/Zephyr-latest/samples/boards/nxp/adsp/number_crunching/ |
D | CMakeLists.txt | 15 message(STATUS "LIB_LOCATION environment variable defined") 34 message(STATUS "LIB_LOCATION environment variable NOT defined")
|