Home
last modified time | relevance | path

Searched full:string (Results 1 – 25 of 2079) sorted by relevance

12345678910>>...84

/Zephyr-Core-3.6.0/cmake/compiler/gcc/
Dtarget_riscv.cmake7 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 …]
Dtarget_x86.cmake4 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.6.0/include/zephyr/shell/
Dshell_string_conv.h17 /** @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.6.0/subsys/bindesc/
DKconfig.build_time62 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.6.0/lib/posix/options/
Dfnmatch.c44 #include <string.h>
123 static int fnmatchx(const char *pattern, const char *string, int flags, size_t recursion) in fnmatchx() argument
128 if (pattern == NULL || string == NULL) { in fnmatchx()
136 for (stringstart = string;;) { in fnmatchx()
140 if ((flags & FNM_LEADING_DIR) && *string == '/') { in fnmatchx()
144 return *string == EOS ? 0 : FNM_NOMATCH; in fnmatchx()
146 if (*string == EOS) { in fnmatchx()
150 if (*string == '/' && (flags & FNM_PATHNAME)) { in fnmatchx()
154 if (*string == '.' && (flags & FNM_PERIOD) && in fnmatchx()
155 (string == stringstart || in fnmatchx()
[all …]
DKconfig.uname14 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.6.0/soc/arm64/nxp_imx/mimx8m/
DKconfig.soc41 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.6.0/tests/ztest/fail/src/
Dmain.cpp8 #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.6.0/dts/bindings/base/
Dbase.yaml7 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.6.0/samples/net/sockets/echo_server/
DKconfig16 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.6.0/drivers/gnss/
Dgnss_parse.h13 * @brief Parse decimal string to nano parts
17 * @param str The decimal string to be parsed
26 * @brief Parse decimal string to micro parts
30 * @param str The decimal string to be parsed
39 * @brief Parse decimal string to milli parts
43 * @param str The decimal string to be parsed
52 * @brief Parse integer string of configurable base to integer
56 * @param str Decimal string to be parsed
57 * @param base Base of decimal string to be parsed
/Zephyr-Core-3.6.0/subsys/usb/device/class/
DKconfig.msc13 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.6.0/samples/net/cloud/mqtt_azure/
DKconfig9 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.6.0/samples/net/virtual/
DKconfig9 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.6.0/dts/bindings/ethernet/
Dinfineon,xmc4xxx-ethernet.yaml27 type: string
37 type: string
46 type: string
53 type: string
65 type: string
78 type: string
87 type: string
97 type: string
106 type: string
115 type: string
/Zephyr-Core-3.6.0/scripts/dts/python-devicetree/tests/test-bindings/
Denums.yaml16 string-enum: # not tokenizable
17 type: string
23 type: string
29 type: string
36 type: string
Dprops.yaml24 string:
25 type: string
28 string-array:
29 type: string-array
42 type: string-array
/Zephyr-Core-3.6.0/boards/x86/qemu_x86/
Dboard.cmake35 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")
60 string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "clflush")
/Zephyr-Core-3.6.0/scripts/tests/twister/
Dtest_cmakecache.py70 '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.6.0/dts/bindings/usb/uac2/
Dzephyr,uac2-input-terminal.yaml29 type: string
35 type: string
41 type: string
47 type: string
53 type: string
59 type: string
/Zephyr-Core-3.6.0/samples/net/mdns_responder/
DKconfig9 string "My IPv6 address for second interface"
14 string "My IPv4 address for second interface"
19 string "My IPv4 netmask for second interface"
33 string "My IPv6 address for third interface"
38 string "My IPv4 address for third interface"
43 string "My IPv4 netmask for third interface"
/Zephyr-Core-3.6.0/soc/xtensa/nxp_adsp/rt5xx/
DKconfig.defconfig.series7 string
11 string
15 string
19 string
/Zephyr-Core-3.6.0/lib/libc/minimal/
DCMakeLists.txt21 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.6.0/samples/subsys/usb/common/
DKconfig.sample_usbd13 string "USB device sample manufacturer string"
16 USB device sample manufacturer string.
19 string "USB device sample product string"
/Zephyr-Core-3.6.0/scripts/logging/dictionary/dictionary_parser/
Dutils.py29 """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)):

12345678910>>...84