| /components/libc/compilers/common/ |
| A D | cstdlib.c | 75 char *ltoa(long value, char *string, int radix) in ltoa() argument 84 if (string == NULL) in ltoa() 114 sp = string; in ltoa() 122 return string; in ltoa() 134 char *itoa(int value, char *string, int radix) in itoa() argument 136 return ltoa(value, string, radix); in itoa() 156 if (string == NULL) in ultoa() 176 sp = string; in ultoa() 182 return string; in ultoa() 194 char *utoa(unsigned value, char *string, int radix) in utoa() argument [all …]
|
| /components/drivers/i2c/ |
| A D | Kconfig | 39 string "Bus name" 63 string "Bus name" 87 string "Bus name" 111 string "Bus name" 135 string "Bus name" 159 string "Bus name" 183 string "Bus name" 207 string "Bus name" 231 string "Bus name"
|
| /components/drivers/wlan/ |
| A D | Kconfig | 7 string "The device name for station" 11 string "The device name for ap" 88 string "Default transport protocol" 98 string "LWIP transport protocol name" 113 string "WLAN work queue thread name"
|
| /components/drivers/ofw/libfdt/ |
| A D | libfdt_env.h | 89 static inline size_t fdt_strnlen(const char *string, size_t max_count) in fdt_strnlen() argument 91 const char *p = memchr(string, 0, max_count); in fdt_strnlen() 92 return p ? p - string : max_count; in fdt_strnlen()
|
| /components/drivers/spi/ |
| A D | Kconfig | 29 string "Bus name" 53 string "Bus name" 77 string "Bus name" 101 string "Bus name" 125 string "Bus name" 149 string "Bus name" 173 string "Bus name"
|
| /components/legacy/usb/ |
| A D | Kconfig | 17 string "Udisk mount dir" 123 string "serial number of virtual com" 134 string "Guid for winusb" 139 string "msc class disk name" 187 string "audio mic device name" 195 string "audio speaker device name"
|
| /components/dfs/dfs_v1/filesystems/nfs/ |
| A D | mount.x | 10 typedef string dirpath<MNTPATHLEN>; 11 typedef string name<MNTNAMLEN>;
|
| /components/vbus/ |
| A D | Kconfig | 45 string "RT_VBUS_SHELL_DEV_NAME" 51 string "RT_VBUS_RFS_DEV_NAME"
|
| /components/fal/ |
| A D | Kconfig | 24 string "The flash device which saving partition table" 46 string "The name of the device used by FAL"
|
| /components/drivers/usb/cherryusb/core/ |
| A D | usbd_core.c | 190 const char *string = NULL; in usbd_get_descriptor() local 241 if (string == NULL) { in usbd_get_descriptor() 249 (*data)[2] = string[0]; in usbd_get_descriptor() 250 (*data)[3] = string[1]; in usbd_get_descriptor() 256 uint16_t str_size = strlen(string); in usbd_get_descriptor() 267 (*data)[2 * i + 2] = string[i]; in usbd_get_descriptor() 310 desc = (uint8_t *)g_usbd_core[busid].descriptors->bos_descriptor->string; in usbd_get_descriptor() 346 *data = (uint8_t *)g_usbd_core[busid].msosv1_desc->string; 348 *len = g_usbd_core[busid].msosv1_desc->string[0]; 356 *data = (uint8_t *)g_usbd_core[busid].bos_desc->string; [all …]
|
| /components/drivers/usb/cherryusb/demo/ |
| A D | mtp_template.c | 193 .string = WCID_StringDescriptor_MSOS, 200 .string = bos_descriptor,
|
| A D | webusb_hid_template.c | 137 .string = USBD_WebUSBURLDescriptor, 148 .string = USBD_BinaryObjectStoreDescriptor,
|
| /components/finsh/ |
| A D | Kconfig | 17 string "The msh thread name" 70 string "The default password for shell authentication"
|
| /components/legacy/fdt/inc/ |
| A D | dtb_node.h | 205 const char *string); 265 #define dtb_node_string_list(string, ...) ((char *[]){string, ##__VA_ARGS__, NULL}) argument 347 const char *string);
|
| /components/net/lwip/ |
| A D | Kconfig | 94 string "IPv4: IP address" 98 string "IPv4: Gateway address" 102 string "IPv4: Mask address" 267 string "DHCPD SERVER IP address" 279 string "Custom DNS server IP address"
|
| /components/drivers/ofw/ |
| A D | Kconfig | 16 string "Builtin fdt path, will rebuild if have dts"
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/ |
| A D | init.h.cmake.in | 72 /* Some helper defines to get a version string */ 86 /** Provides the version of the stack as string */
|
| /components/drivers/usb/cherryusb/common/ |
| A D | usb_def.h | 494 const uint8_t *string; member 619 const uint8_t *string; member 624 const uint8_t *string; member
|
| /components/legacy/fdt/docs/ |
| A D | api.md | 310 fdt_string_list(string, ...) 314 |string | 字符串集合 |
|
| /components/drivers/usb/cherryusb/ |
| A D | Kconfig.rttpkg | 251 string "usb device msc block device name" 439 string "usb host dfs mount point" 463 string 491 string
|
| /components/net/at/ |
| A D | Kconfig | 18 string "Server device name"
|
| /components/drivers/virtio/ |
| A D | virtio_input.h | 75 char string[128]; member
|
| /components/legacy/fdt/src/ |
| A D | dtb_access.c | 422 const char *string) in dtb_node_property_match_string() argument 442 debug("comparing %s with %s\n", string, p); in dtb_node_property_match_string() 443 if (strcmp(string, p) == 0) in dtb_node_property_match_string()
|
| /components/drivers/usb/cherryusb/demo/adb/ |
| A D | usbd_adb_template.c | 105 .string = WCID_StringDescriptor_MSOS,
|
| /components/legacy/fdt/libfdt/ |
| A D | fdt_ro.c | 591 const char *string) in fdt_stringlist_search() argument 600 len = strlen(string) + 1; in fdt_stringlist_search() 610 if (length == len && memcmp(list, string, length) == 0) in fdt_stringlist_search()
|