/Zephyr-Core-3.5.0/cmake/compiler/gcc/ |
D | target_riscv.cmake | 7 string(CONCAT riscv_mabi ${riscv_mabi} "64") 8 string(CONCAT riscv_march ${riscv_march} "64") 12 string(CONCAT riscv_mabi "i" ${riscv_mabi} "32") 13 string(CONCAT riscv_march ${riscv_march} "32") 17 string(CONCAT riscv_mabi ${riscv_mabi} "e") 18 string(CONCAT riscv_march ${riscv_march} "e") 20 string(CONCAT riscv_march ${riscv_march} "i") 24 string(CONCAT riscv_march ${riscv_march} "m") 27 string(CONCAT riscv_march ${riscv_march} "a") 33 string(CONCAT riscv_mabi ${riscv_mabi} "d") [all …]
|
D | target_x86.cmake | 4 string(PREPEND CMAKE_ASM_FLAGS "-m64 ") 5 string(PREPEND CMAKE_C_FLAGS "-m64 ") 6 string(PREPEND CMAKE_CXX_FLAGS "-m64 ") 8 string(PREPEND CMAKE_ASM_FLAGS "-m32 ") 9 string(PREPEND CMAKE_C_FLAGS "-m32 ") 10 string(PREPEND CMAKE_CXX_FLAGS "-m32 ")
|
/Zephyr-Core-3.5.0/include/zephyr/shell/ |
D | shell_string_conv.h | 17 /** @brief String to long conversion with error check. 23 * @param str Input string. 26 * -EINVAL on invalid string input. 27 * -ERANGE if numeric string input is to large to convert. 34 /** @brief String to unsigned long conversion with error check. 40 * @param str Input string. 43 * Set to -EINVAL on invalid string input. 44 * Set to -ERANGE if numeric string input is to large to convert. 51 /** @brief String to unsigned long long conversion with error check. 57 * @param str Input string. [all …]
|
/Zephyr-Core-3.5.0/subsys/bindesc/ |
D | Kconfig.build_time | 62 bool "Build date and time as string" 64 The date and time of compilation as a string, such as "2023-09-29T17:43:14+0000" 67 bool "Build date as string" 69 The date of compilation as a string, such as "2023-09-29" 72 bool "Build time as string" 74 The time of compilation as a string, such as "T17:43:14+0000" 78 string "Date-Time format" 81 Format of the build time string. This value is passed to cmake's string(TIMESTAMP ...) 82 function, so refer to string's documentation for more info on the different formats. 93 string "Date format" [all …]
|
/Zephyr-Core-3.5.0/lib/posix/ |
D | fnmatch.c | 44 #include <string.h> 122 static int fnmatchx(const char *pattern, const char *string, int flags, size_t recursion) in fnmatchx() argument 127 if (pattern == NULL || string == NULL) { in fnmatchx() 135 for (stringstart = string;;) { in fnmatchx() 139 if ((flags & FNM_LEADING_DIR) && *string == '/') { in fnmatchx() 143 return *string == EOS ? 0 : FNM_NOMATCH; in fnmatchx() 145 if (*string == EOS) { in fnmatchx() 149 if (*string == '/' && (flags & FNM_PATHNAME)) { in fnmatchx() 153 if (*string == '.' && (flags & FNM_PERIOD) && in fnmatchx() 154 (string == stringstart || in fnmatchx() [all …]
|
D | Kconfig.uname | 14 int "uname version string length" 17 Defines the maximum string length of uname version. 20 int "uname nodename string length" 24 Defines the maximum string length of nodename version.
|
/Zephyr-Core-3.5.0/tests/ztest/fail/src/ |
D | main.cpp | 8 #include <string> 17 std::string result; in ZTEST() 28 /* Already found the error string, no need to do any more string in ZTEST() 34 /* Append the buffer to the result string */ in ZTEST() 37 /* Check if result contains the right error string */ in ZTEST() 39 (result.find(CONFIG_TEST_ERROR_STRING) != std::string::npos); in ZTEST() 41 /* If the result string is longer than the expected string, in ZTEST() 54 zassert_true(found_error_string, "Test binary did not produce the expected error string \"" in ZTEST()
|
/Zephyr-Core-3.5.0/dts/bindings/base/ |
D | base.yaml | 7 type: string 18 type: string-array 27 type: string-array 42 type: string-array 50 type: string 53 Human readable string describing the device (used as device_get_binding() argument) 60 type: string-array 76 type: string-array 84 type: string-array 93 type: string-array
|
/Zephyr-Core-3.5.0/soc/arm64/nxp_imx/mimx8m/ |
D | Kconfig.soc | 41 string 44 This string holds the full part number of the SoC. It is a hidden option 46 the default value for this string. 55 string 59 This string holds the full part number of the SoC. It is a hidden option 61 the default value for this string. 78 string 84 This string holds the full part number of the SoC. It is a hidden option 86 the default value for this string.
|
/Zephyr-Core-3.5.0/samples/net/sockets/echo_server/ |
D | Kconfig | 16 string "My IPv6 address for second interface" 21 string "My IPv4 address for second interface" 26 string "My IPv4 netmask for second interface" 40 string "My IPv6 address for third interface" 45 string "My IPv4 address for third interface" 50 string "My IPv4 netmask for third interface" 64 string "Remote IP address of the tunnel interface" 70 string "My address for tunnel interface" 76 string "Header file containing PSK"
|
/Zephyr-Core-3.5.0/subsys/usb/device/class/ |
D | Kconfig.msc | 13 string "Mass storage disk or drive name" 19 string "T10 assigned vendor ID for inquiry (must be 8 characters)" 23 Spaces must be added to bring the string to 8 bytes. 26 string "Product ID for inquiry (must be 16 characters)" 30 Spaces must be added to bring the string to 16 bytes. 33 string "Revision for inquiry (must be 4 characters)" 37 Spaces must be added to bring the string to 4 bytes.
|
/Zephyr-Core-3.5.0/samples/net/virtual/ |
D | Kconfig | 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 19 string "My IPv4 netmask for second interface" 26 string "My IPv6 address for third interface" 31 string "My IPv4 address for third interface" 36 string "My IPv4 netmask for third interface"
|
/Zephyr-Core-3.5.0/samples/net/cloud/mqtt_azure/ |
D | Kconfig | 9 string "Azure cloud username" 14 string "Azure cloud password" 19 string "Azure cloud IoT hub MQTT client ID" 24 string "Azure cloud IoT hub hostname" 29 string "Azure cloud server address" 40 string "Proxy address"
|
/Zephyr-Core-3.5.0/scripts/dts/python-devicetree/tests/test-bindings/ |
D | enums.yaml | 16 string-enum: # not tokenizable 17 type: string 23 type: string 29 type: string 36 type: string
|
D | props.yaml | 24 string: 25 type: string 28 string-array: 29 type: string-array 42 type: string-array
|
D | defaults.yaml | 23 string: 24 type: string 28 string-array: 29 type: string-array
|
/Zephyr-Core-3.5.0/scripts/tests/twister/ |
D | test_cmakecache.py | 70 'DUMMY_VALUE_NAME1:STRING=I am a dummy string', 71 CMakeCacheEntry('DUMMY_VALUE_NAME1', 'I am a dummy string') 74 'DUMMY_VALUE_NAME2:STRING=list_el1;list_el2;list_el3', 81 'DUMMY_VALUE_NAME3:INTERNAL=I am a dummy internal string', 82 CMakeCacheEntry('DUMMY_VALUE_NAME3', 'I am a dummy internal string')), 122 'string', 123 'string list', 124 'internal string', 167 ids=['string value', 'bool value'] 175 'DUMMY_NAME1:STRING=First line\n' [all …]
|
/Zephyr-Core-3.5.0/boards/x86/qemu_x86/ |
D | board.cmake | 35 string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "mmx") 36 string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "mmxext") 39 string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "sse") 42 string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "sse2") 45 string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "pni") 48 string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "ssse3") 51 string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "sse4.1") 54 string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "sse4.2") 57 string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "sse4a")
|
/Zephyr-Core-3.5.0/include/zephyr/net/ |
D | wifi_utils.h | 35 * @brief Convert a band specification string to a bitmap representing the bands. 37 * @details The function will parse a string which specifies Wi-Fi frequency band 38 * values as a comma separated string and convert it to a bitmap. The string can 48 * E.g. a string "2,5,6" will be converted to a bitmap value of 0x7 50 * @param scan_bands_str String which spe. 60 * @brief Append a string containing an SSID to an array of SSID strings. 62 * @param scan_ssids_str string to be appended in the list of scanned SSIDs. 75 * @brief Convert a string containing a specification of scan channels to an array. 77 * @details The function will parse a string which specifies channels to be scanned 78 * as a string and convert it to an array. [all …]
|
/Zephyr-Core-3.5.0/lib/libc/minimal/ |
D | CMakeLists.txt | 21 source/string/strerror.c 22 source/string/strncasecmp.c 23 source/string/strstr.c 24 source/string/string.c 25 source/string/strspn.c
|
/Zephyr-Core-3.5.0/scripts/logging/dictionary/dictionary_parser/ |
D | utils.py | 29 """Extract one string in an ELF section""" 48 Find string pointed by string_ptr in the string mapping 61 # This may be a combined string. So check for that. 62 for ptr, string in string_mappings.items(): 63 if ptr <= str_ptr < (ptr + len(string)):
|
/Zephyr-Core-3.5.0/soc/xtensa/nxp_adsp/imx8m/ |
D | Kconfig.soc | 26 string 30 This string holds the full part number of the SoC. It is a hidden option 32 the default value for this string. 35 string
|
/Zephyr-Core-3.5.0/samples/net/sockets/echo_client/ |
D | Kconfig | 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 28 string "My IPv6 address for third interface" 33 string "My IPv4 address for third interface" 47 string "Header file containing PSK"
|
/Zephyr-Core-3.5.0/drivers/modem/ |
D | Kconfig.quectel-bg9x | 34 string "APN for establishing network connection" 42 string "Username for establishing network connection" 50 string "Password for establishing network connection" 58 string "Unsolicited response string expected from the modem" 61 This string is used to determine when modem powered and ready
|
/Zephyr-Core-3.5.0/dts/bindings/spi/ |
D | telink,b91-spi.yaml | 15 type: string 25 type: string 36 type: string 46 type: string
|