| /Zephyr-latest/lib/posix/options/ | 
| D | fnmatch.c | 123 static int fnmatchx(const char *pattern, const char *string, int flags, size_t recursion)  in fnmatchx()  argument128 	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()
 156 			     ((flags & FNM_PATHNAME) && *(string - 1) == '/'))) {  in fnmatchx()
 [all …]
 
 | 
| /Zephyr-latest/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-latest/subsys/dap/ | 
| D | Kconfig | 21 	string "Probe vendor"25 	string "Probe name"
 29 	string "Target board vendor"
 33 	string "Target board name"
 37 	string "Target device vendor"
 41 	string "Target device name"
 
 | 
| /Zephyr-latest/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"
 77 	string "Date-Time format"
 80 	  Format of the build time string. This value is passed to cmake's string(TIMESTAMP ...)
 81 	  function, so refer to string's documentation for more info on the different formats.
 91 	string "Date format"
 [all …]
 
 | 
| D | gen_bindesc_build_time_h.cmake | 5 # Wrapper macro around string(TIMESTAMP ...), that returns the time9     string(TIMESTAMP ${out_var} ${format})
 11     string(TIMESTAMP ${out_var} ${format} UTC)
 38 string(CONFIGURE "${content}" content)
 
 | 
| /Zephyr-latest/boards/qemu/x86/ | 
| D | board.cmake | 36   string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "mmx")37   string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "mmxext")
 40   string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "sse")
 43   string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "sse2")
 46   string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "pni")
 49   string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "ssse3")
 52   string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "sse4.1")
 55   string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "sse4.2")
 58   string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "sse4a")
 61   string(JOIN "," QEMU_CPU_FLAGS "${QEMU_CPU_FLAGS}" "clflush")
 
 | 
| /Zephyr-latest/tests/subsys/llext/src/ | 
| D | object_ext.c | 18 const char *string = "hello";  variable43 	printk("string: %s\n", string);  in test_entry()
 44 	zassert_ok(strcmp(string, "hello"));  in test_entry()
 
 | 
| /Zephyr-latest/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-latest/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-latest/lib/libc/minimal/ | 
| D | CMakeLists.txt | 25   source/string/strerror.c26   source/string/strncasecmp.c
 27   source/string/strstr.c
 28   source/string/string.c
 29   source/string/strspn.c
 
 | 
| /Zephyr-latest/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-latest/soc/nordic/ | 
| D | sysbuild.cmake | 6   string(REPLACE "/" ";" launcher_quals ${BOARD_QUALIFIERS})11   string(REPLACE "cpu" "" launcher_vpr ${launcher_vpr})
 18   string(CONCAT launcher_board ${BOARD} "/" ${launcher_soc} "/" ${launcher_core})
 28   string(CONCAT launcher_snippet "nordic-" ${launcher_vpr})
 
 | 
| /Zephyr-latest/samples/net/mdns_responder/ | 
| 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"
 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-latest/tests/modules/thrift/ThriftTest/src/ | 
| D | server.hpp | 34 	void testString(string &out, const string &thing) override  in testString()70 	void testBinary(std::string &_return, const std::string &thing) override  in testBinary()
 117 	void testStringMap(map<std::string, std::string> &out,  in testStringMap()  argument
 118 			   const map<std::string, std::string> &thing) override  in testStringMap()  argument
 120 		map<std::string, std::string>::const_iterator m_iter;  in testStringMap()
 260 		       const std::map<int16_t, std::string> &arg3, const Numberz::type arg4,  in testMulti()
 273 	void testException(const std::string &arg) override  in testException()
 291 	void testMultiException(Xtruct &result, const std::string &arg0,  in testMultiException()
 292 				const std::string &arg1) override  in testMultiException()
 321 	void secondtestString(std::string &result, const std::string &thing) override  in secondtestString()
 
 | 
| /Zephyr-latest/tests/lib/devicetree/api/ | 
| D | app.overlay | 24 		string = "foo";118 			compatible = "vnd,enum-string-array-holder";
 736 		test_string_token_0: string-token-0 {
 737 			compatible = "vnd,string-token";
 741 		test_string_token_1: string-token-1 {
 742 			compatible = "vnd,string-token";
 746 		test_string_token_2: string-token-2 {
 747 			compatible = "vnd,string-token";
 751 		test_str_array_token_0: string-array-token-0 {
 752 			compatible = "vnd,string-array-token";
 [all …]
 
 | 
| /Zephyr-latest/soc/ | 
| D | Kconfig.v2 | 13 	string19 	string
 25 	string
 32 	string
 34 	  This string holds the full part number of the SoC. It is a hidden option
 36 	  the default value for this string.
 
 | 
| /Zephyr-latest/modules/thrift/src/thrift/transport/ | 
| D | TServerSocket.h | 67 	TServerSocket(const std::string &address, int port);74 	TServerSocket(const std::string &path);
 134 	std::string getPath() const;
 159 	std::string address_;
 160 	std::string path_;
 
 | 
| D | TSSLSocket.cpp | 32 using std::string;79 TSSLSocket::TSSLSocket(std::shared_ptr<SSLContext> ctx, string host, int port,  in TSSLSocket()
 86 TSSLSocket::TSSLSocket(std::shared_ptr<SSLContext> ctx, string host, int port,  in TSSLSocket()
 243 		string errStr = "TSocket::open() timed out " + getSocketInfo();  in openSecConnection()
 304 		string errStr = "TSocket::open() getaddrinfo() " + getSocketInfo() +  in open()
 305 				string(THRIFT_GAI_STRERROR(error));  in open()
 388 std::shared_ptr<TSSLSocket> TSSLSocketFactory::createSocket(const string &host, int port)  in createSocket()
 396 TSSLSocketFactory::createSocket(const string &host, int port,  in createSocket()
 404 static void tlsCredtErrMsg(string &errors, const int status);
 417 void TSSLSocketFactory::ciphers(const string &enable)  in ciphers()
 [all …]
 
 | 
| /Zephyr-latest/samples/net/vlan/ | 
| 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"
 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-latest/subsys/usb/device_next/app/ | 
| D | Kconfig.cdc_acm_serial | 20 	string "USB device manufacturer string descriptor"23 	  USB device manufacturer string descriptor.
 26 	string "USB device product string descriptor"
 29 	  USB device product string descriptor.
 
 | 
| /Zephyr-latest/samples/modules/tflite-micro/tflm_ethosu/src/ | 
| D | main.cpp | 82 	xInferenceJob(const string &_name, const DataPtr &_networkModel,  in xInferenceJob()123 	string *name = static_cast<string *>(_name);  in inferenceProcessTask()
 160 	string *name = static_cast<string *>(_name);  in inferenceSenderTask()
 237 		string *name = new string("sender " + to_string(n));  in main()
 263 		string *name = new string("runner " + to_string(n));  in main()
 
 | 
| /Zephyr-latest/samples/subsys/smf/smf_calculator/src/ | 
| D | smf_calculator_thread.c | 32 	char string[CALCULATOR_STRING_LENGTH];  member61 	op->string[0] = ' '; /* space for sign */  in setup_operand()
 62 	op->string[1] = '0'; /* A 0 indicator to be overwritten */  in setup_operand()
 63 	op->string[2] = 0x00;  in setup_operand()
 72 	op->string[op->index++] = digit;  in insert()
 73 	op->string[op->index] = 0x00;  in insert()
 80 	if (op->string[0] == ' ') {  in negate()
 81 		op->string[0] = '-';  in negate()
 83 		op->string[0] = ' ';  in negate()
 93 	strncpy(dest->string, src->string, CALCULATOR_STRING_LENGTH);  in copy_operand()
 [all …]
 
 | 
| /Zephyr-latest/doc/build/kconfig/ | 
| D | preprocessor-functions.rst | 33    $(dt_chosen_has_compat,<property in /chosen>,<compatible string>)42    $(dt_compat_any_has_prop,<compatible string>,<prop>[,<value>])
 43    $(dt_compat_any_on_bus,<compatible string>,<prop>)
 44    $(dt_compat_enabled,<compatible string>)
 45    $(dt_compat_on_bus,<compatible string>,<bus>)
 47    $(dt_has_compat,<compatible string>)
 51    $(dt_node_has_compat,<node path>,<compatible string>)
 67    $(dt_nodelabel_enabled_with_compat,<node label>,<compatible string>)
 69    $(dt_nodelabel_has_compat,<node label>,<compatible string>)
 101 The functions listed below can be used to modify string variables.
 [all …]
 
 | 
| /Zephyr-latest/samples/modules/thrift/hello/ | 
| D | hello.thrift | 9     string echo(1: string msg);
 |