/linux-4.4.14/Documentation/usb/ |
D | gadget_configfs.txt | 81 A gadget also needs its serial number, manufacturer and product strings. 82 In order to have a place to store them, a strings subdirectory must be created 85 $ mkdir strings/0x409 87 Then the strings can be specified: 89 $ echo <serial number> > strings/0x409/serialnumber 90 $ echo <manufacturer> > strings/0x409/manufacturer 91 $ echo <product> > strings/0x409/product 110 Each configuration also needs its strings, so a subdirectory must be created 113 $ mkdir configs/c.1/strings/0x409 117 $ echo <configuration> > configs/c.1/strings/0x409/configuration [all …]
|
D | functionfs.txt | 6 strings (the user space program has to provide the same information 15 write descriptors and strings to that file. It does not need 16 to worry about endpoints, interfaces or strings numbers but 18 only one (endpoints and strings numbers starting from one and 23 When descriptors and strings are written "ep#" files appear
|
D | linux-cdc-acm.inf | 102 ;Modify these strings to customize your device
|
D | acm.txt | 112 usb.c: new device strings: Mfr=1, Product=2, SerialNumber=3
|
/linux-4.4.14/drivers/usb/gadget/legacy/ |
D | printer.c | 95 static struct usb_string strings [] = { variable 104 .strings = strings, 164 ret = usb_string_ids_tab(cdev, strings); in printer_bind() 168 device_desc.iManufacturer = strings[USB_GADGET_MANUFACTURER_IDX].id; in printer_bind() 169 device_desc.iProduct = strings[USB_GADGET_PRODUCT_IDX].id; in printer_bind() 170 device_desc.iSerialNumber = strings[USB_GADGET_SERIAL_IDX].id; in printer_bind() 214 .strings = dev_strings,
|
D | ncm.c | 84 .strings = strings_dev, 205 .strings = dev_strings,
|
D | gmidi.c | 108 .strings = strings_dev, 189 .strings = dev_strings,
|
D | cdc2.c | 75 .strings = strings_dev, 231 .strings = dev_strings,
|
D | acm_ms.c | 73 .strings = strings_dev, 258 .strings = dev_strings,
|
D | mass_storage.c | 78 .strings = strings_dev, 249 .strings = dev_strings,
|
D | serial.c | 57 .strings = strings_dev, 240 .strings = dev_strings,
|
D | hid.c | 82 .strings = strings_dev, 261 .strings = dev_strings,
|
D | audio.c | 94 .strings = strings_dev, 301 .strings = audio_strings,
|
D | ether.c | 185 .strings = strings_dev, 476 .strings = dev_strings,
|
D | zero.c | 144 .strings = strings_dev, 407 .strings = dev_strings,
|
D | nokia.c | 81 .strings = strings_dev, 430 .strings = dev_strings,
|
D | webcam.c | 66 .strings = webcam_strings, 428 .strings = webcam_device_strings,
|
D | multi.c | 100 .strings = strings_dev, 488 .strings = dev_strings,
|
D | g_ffs.c | 113 .strings = gfs_strings, 155 .strings = gfs_dev_strings,
|
/linux-4.4.14/sound/core/ |
D | info_oss.c | 36 static DEFINE_MUTEX(strings); 47 mutex_lock(&strings); in snd_oss_info_register() 56 mutex_unlock(&strings); in snd_oss_info_register() 61 mutex_unlock(&strings); in snd_oss_info_register() 73 mutex_lock(&strings); in snd_sndstat_show_strings() 84 mutex_unlock(&strings); in snd_sndstat_show_strings()
|
/linux-4.4.14/drivers/net/ethernet/sfc/ |
D | ethtool.c | 215 static void efx_fill_test(unsigned int test_index, u8 *strings, u64 *data, in efx_fill_test() argument 226 if (strings) { in efx_fill_test() 233 snprintf(strings + test_index * ETH_GSTRING_LEN, in efx_fill_test() 261 u8 *strings, u64 *data) in efx_fill_loopback_test() argument 268 efx_fill_test(test_index++, strings, data, in efx_fill_loopback_test() 272 efx_fill_test(test_index++, strings, data, in efx_fill_loopback_test() 277 efx_fill_test(test_index++, strings, data, in efx_fill_loopback_test() 281 efx_fill_test(test_index++, strings, data, in efx_fill_loopback_test() 304 u8 *strings, u64 *data) in efx_ethtool_fill_self_tests() argument 310 efx_fill_test(n++, strings, data, &tests->phy_alive, in efx_ethtool_fill_self_tests() [all …]
|
D | nic.h | 571 size_t efx_ptp_describe_stats(struct efx_nic *efx, u8 *strings);
|
/linux-4.4.14/Documentation/acpi/apei/ |
D | output_format.txt | 12 <section flags strings> 20 <section flags strings># := 35 <proc error type strings>] 38 <proc flags strings>] 51 <processor error type strings># := 57 <proc flags strings># := 136 All <field strings> description with # has the following format: 139 <field strings> 141 Where each string in <fields strings> corresponding to one set bit of 143 strings> description.
|
/linux-4.4.14/drivers/of/ |
D | unittest.c | 392 const char *strings[4]; in of_unittest_property_string() local 428 rc = of_property_read_string_index(np, "string-property", 0, strings); in of_unittest_property_string() 429 …unittest(rc == 0 && !strcmp(strings[0], "foobar"), "of_property_read_string_index() failure; rc=%i… in of_unittest_property_string() 430 strings[0] = NULL; in of_unittest_property_string() 431 rc = of_property_read_string_index(np, "string-property", 1, strings); in of_unittest_property_string() 432 …unittest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n",… in of_unittest_property_string() 433 rc = of_property_read_string_index(np, "phandle-list-names", 0, strings); in of_unittest_property_string() 434 …unittest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\… in of_unittest_property_string() 435 rc = of_property_read_string_index(np, "phandle-list-names", 1, strings); in of_unittest_property_string() 436 …unittest(rc == 0 && !strcmp(strings[0], "second"), "of_property_read_string_index() failure; rc=%i… in of_unittest_property_string() [all …]
|
/linux-4.4.14/tools/lib/traceevent/ |
D | plugin_kvm.c | 224 struct str_values *strings; member 226 { .isa = 1, .strings = vmx_exit_reasons }, 227 { .isa = 2, .strings = svm_exit_reasons }, 233 struct str_values *strings = NULL; in find_exit_reason() local 236 for (i = 0; isa_exit_reasons[i].strings; ++i) in find_exit_reason() 238 strings = isa_exit_reasons[i].strings; in find_exit_reason() 241 if (!strings) in find_exit_reason() 243 for (i = 0; strings[i].val >= 0; i++) in find_exit_reason() 244 if (strings[i].val == val) in find_exit_reason() 247 return strings[i].str; in find_exit_reason()
|
D | event-parse.c | 4100 } *strings = NULL, *string; in process_defined_func() local 4133 string->next = strings; in process_defined_func() 4142 strings = string; in process_defined_func() 4160 while (strings) { in process_defined_func() 4161 string = strings; in process_defined_func() 4162 strings = string->next; in process_defined_func()
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | configfs-usb-gadget | 43 What: /config/usb-gadget/gadget/configs/config/strings 48 strings for this configuration. 50 What: /config/usb-gadget/gadget/configs/config/strings/language 95 7: multiple unicode strings 99 What: /config/usb-gadget/gadget/strings 104 strings for this gadget. 106 What: /config/usb-gadget/gadget/strings/language
|
D | sysfs-class-regulator | 10 This will be one of the following strings: 36 This will be one of the following strings: 75 This will be one of the following strings: 130 The opmode value can be one of the following strings: 324 This will be one of the same strings reported by 337 This will be one of the same strings reported by 350 This will be one of the same strings reported by 361 This will be one of the following strings:
|
D | sysfs-firmware-dmi-entries | 63 terminated strings, with termination signalled 67 "unformatted" strings portion of the entry,
|
D | sysfs-power | 30 Writing to this file one of these strings causes the system to 68 file one of the accepted strings: 192 The /sys/power/autosleep file can be written one of the strings
|
D | sysfs-driver-hid-wiimote | 39 Other strings for each device-type are available and may be
|
D | sysfs-firmware-acpi | 168 Besides this, user can also write specific strings to these files
|
D | sysfs-class-mic.txt | 122 valid strings:
|
D | sysfs-class-mtd | 104 One of the following ASCII strings, representing the device
|
/linux-4.4.14/drivers/xen/xenbus/ |
D | xenbus_xs.c | 344 static unsigned int count_strings(const char *strings, unsigned int len) in count_strings() argument 349 for (p = strings, num = 0; p < strings + len; p += strlen(p) + 1) in count_strings() 367 static char **split(char *strings, unsigned int len, unsigned int *num) in split() argument 372 *num = count_strings(strings, len); in split() 377 kfree(strings); in split() 380 memcpy(&ret[*num], strings, len); in split() 381 kfree(strings); in split() 383 strings = (char *)&ret[*num]; in split() 384 for (p = strings, *num = 0; p < strings + len; p += strlen(p) + 1) in split() 393 char *strings, *path; in xenbus_directory() local [all …]
|
/linux-4.4.14/arch/avr32/kernel/ |
D | module.c | 29 char *strings, Elf32_Sym *symbols) in check_rela() argument 44 strings + symbols[ELF32_R_SYM(rela->r_info)].st_name, in check_rela() 53 strings + symbols[ELF32_R_SYM(rela->r_info)].st_name); in check_rela() 66 char *strings; in module_frob_arch_sections() local 91 strings = (void *)hdr + sechdrs[symtab->sh_link].sh_offset; in module_frob_arch_sections() 94 strcmp(strings + symbols[i].st_name, in module_frob_arch_sections() 111 strings, symbols); in module_frob_arch_sections()
|
/linux-4.4.14/Documentation/pcmcia/ |
D | devicetable.txt | 6 - product ID strings _and_ hashes of these strings 13 If you want to match product ID strings, you also need to pass the crc32 22 You can determine the hash of the product ID strings by catting the file
|
/linux-4.4.14/lib/ |
D | test-string_helpers.c | 40 static const struct test_string strings[] __initconst = { variable 75 for (i = 0; i < ARRAY_SIZE(strings); i++) { in test_string_unescape() 76 const char *s = strings[i].in; in test_string_unescape() 77 int len = strlen(strings[i].in); in test_string_unescape() 84 if (flags & strings[i].flags) { in test_string_unescape() 85 s = strings[i].out; in test_string_unescape() 86 len = strlen(strings[i].out); in test_string_unescape()
|
D | Kconfig.kgdb | 58 information about other strings you could use beyond the
|
/linux-4.4.14/Documentation/devicetree/bindings/leds/backlight/ |
D | pm8941-wled.txt | 26 - qcom,num-strings: #; number of led strings attached; value from 1 to 3 41 qcom,num-strings = <2>;
|
/linux-4.4.14/tools/usb/ffs-aio-example/simple/device_app/ |
D | aio_simple.c | 126 } __attribute__ ((__packed__)) strings = { variable 129 .length = htole32(sizeof(strings)), 244 if (write(ep0, &strings, sizeof(strings)) < 0) { in main()
|
/linux-4.4.14/tools/usb/ffs-aio-example/multibuff/device_app/ |
D | aio_multibuff.c | 128 } __attribute__ ((__packed__)) strings = { variable 131 .length = htole32(sizeof(strings)), 273 if (write(ep0, &strings, sizeof(strings)) < 0) { in main()
|
/linux-4.4.14/Documentation/devicetree/bindings/hsi/ |
D | nokia-modem.txt | 10 - hsi-channel-names: Should contain the following strings 17 - gpio-names: Should contain the following strings
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | omap-mcbsp.txt | 11 - reg-names: Array of strings associated with the address space 17 - interrupt-names: Array of strings associated with the interrupt numbers
|
D | widgets.txt | 5 Each entry is a pair of strings in DT:
|
D | sirf-audio-port.txt | 8 These strings correspond 1:1 with the ordered pairs in dmas.
|
D | brcm,bcm2835-i2s.txt | 10 These strings correspond 1:1 with the ordered pairs in dmas.
|
D | sirf-usp.txt | 8 These strings correspond 1:1 with the ordered pairs in dmas.
|
D | atmel-sam9x5-wm8731-audio.txt | 9 Each entry is a pair of strings, the first being the connection's sink,
|
D | samsung,odroidx2-max98090.txt | 10 components; each entry is a pair of strings, the first being the
|
D | nvidia,tegra-audio-wm9712.txt | 13 Each entry is a pair of strings, the first being the connection's sink,
|
D | atmel-wm8904.txt | 7 Each entry is a pair of strings, the first being the connection's sink,
|
D | imx-audio-wm8962.txt | 14 Each entry is a pair of strings, the first being the
|
D | omap-twl4030.txt | 13 Each entry is a pair of strings, the first being the connection's sink,
|
D | nvidia,tegra-audio-wm8753.txt | 13 Each entry is a pair of strings, the first being the connection's sink,
|
D | nvidia,tegra-audio-alc5632.txt | 13 Each entry is a pair of strings, the first being the connection's sink,
|
D | imx-audio-sgtl5000.txt | 14 Each entry is a pair of strings, the first being the
|
D | imx-audio-es8328.txt | 11 Each entry is a pair of strings, the first being the
|
D | nvidia,tegra-audio-max98090.txt | 13 Each entry is a pair of strings, the first being the connection's sink,
|
D | nvidia,tegra-audio-rt5640.txt | 13 Each entry is a pair of strings, the first being the connection's sink,
|
D | davinci-evm-audio.txt | 9 Each entry is a pair of strings, the first being the connection's sink,
|
D | omap-abe-twl6040.txt | 10 Each entry is a pair of strings, the first being the connection's sink,
|
D | renesas,rsrc-card.txt | 35 Each entry is a pair of strings, the first being the connection's sink,
|
D | nvidia,tegra-audio-wm8903.txt | 13 Each entry is a pair of strings, the first being the connection's sink,
|
D | davinci-mcasp-audio.txt | 25 These strings correspond 1:1 with the ordered pairs in dmas. The dma
|
D | nvidia,tegra-audio-rt5677.txt | 13 Each entry is a pair of strings, the first being the connection's sink,
|
D | fsl-asoc-card.txt | 44 Each entry is a pair of strings, the first being the
|
D | samsung-i2s.txt | 25 These strings correspond 1:1 with the ordered pairs in dmas.
|
D | simple-card.txt | 15 Each entry is a pair of strings, the first being the
|
/linux-4.4.14/Documentation/devicetree/bindings/usb/ |
D | atmel-usb.txt | 11 - clock-names: Should contains two strings 38 - clock-names: Should contains two strings 61 - clock-names: Should contains two strings 88 - clock-names: Should contains two strings
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | brcm,iproc-clocks.txt | 29 An ordered list of strings defining the names of the clocks 69 An ordered list of strings defining the names of the ASIU clocks 89 PLL and leaf clock compatible strings for Cygnus are: 136 PLL and leaf clock compatible strings for Northstar and Northstar Plus are: 166 PLL and leaf clock compatible strings for Northstar 2 are:
|
D | zynq-7000.txt | 20 - clock-output-names : List of strings used to name the clock outputs. Shall be 32 The following strings are optional parameters to the 'clock-names' property in
|
D | clock-bindings.txt | 22 clock-output-names: Recommended to be a list of strings of clock output signal 60 This ensures we do not have any empty strings in clock-output-names 72 clock-names: List of clock input name strings sorted in the same
|
D | ingenic,cgu.txt | 15 - clock-names : List of name strings for the external clocks.
|
D | brcm,kona-ccu.txt | 17 The compatible strings used for each supported SoC family 26 Shall be an ordered list of strings defining the names of
|
D | hi6220-clock.txt | 11 - compatible: the compatible should be one of the following strings to
|
D | qoriq-clock.txt | 25 Chip-specific strings are of the form "fsl,<chip>-clockgen", such as: 35 Chassis-version clock strings include:
|
D | exynos7-clock.txt | 25 compatible strings to indicate the clock controller
|
D | renesas,cpg-mstp-clocks.txt | 31 - clock-output-names: The name of the clocks as free-form strings
|
D | lpc1850-cgu.txt | 38 Shall be an ordered list of strings defining the names of
|
/linux-4.4.14/Documentation/devicetree/bindings/iio/ |
D | st-sensors.txt | 8 - compatible: see the list of valid compatible strings below 23 Valid compatible strings:
|
D | iio-bindings.txt | 55 List of IIO input name strings sorted in the same
|
/linux-4.4.14/drivers/usb/gadget/ |
D | composite.c | 970 sp = composite->strings; in get_string() 975 sp = c->strings; in get_string() 980 sp = f->strings; in get_string() 1027 if (composite->strings) { in get_string() 1028 len = lookup_string(composite->strings, buf, language, id); in get_string() 1033 if (c->strings) { in get_string() 1034 len = lookup_string(c->strings, buf, language, id); in get_string() 1039 if (!f->strings) in get_string() 1041 len = lookup_string(f->strings, buf, language, id); in get_string() 1138 gs->strings = stash; in copy_gadget_strings() [all …]
|
D | usbstring.c | 53 for (s = table->strings; s && s->s; s++) in usb_gadget_get_string()
|
D | configfs.c | 90 struct usb_string strings[USB_GADGET_FIRST_AVAIL_IDX]; member 105 struct usb_string strings; member 1283 gs->stringtab_dev.strings = gs->strings; in configfs_composite_bind() 1284 gs->strings[USB_GADGET_MANUFACTURER_IDX].s = in configfs_composite_bind() 1286 gs->strings[USB_GADGET_PRODUCT_IDX].s = gs->product; in configfs_composite_bind() 1287 gs->strings[USB_GADGET_SERIAL_IDX].s = gs->serialnumber; in configfs_composite_bind() 1337 cn->stringtab_dev.strings = &cn->strings; in configfs_composite_bind() 1338 cn->strings.s = cn->configuration; in configfs_composite_bind()
|
/linux-4.4.14/tools/usb/ |
D | ffs-test.c | 268 } __attribute__((packed)) strings = { variable 271 .length = cpu_to_le32(sizeof strings), 281 #define STR_INTERFACE strings.lang0.str1 604 ret = write(t->fd, &strings, sizeof strings); in ep0_init()
|
/linux-4.4.14/include/linux/usb/ |
D | composite.h | 185 struct usb_gadget_strings **strings; member 291 struct usb_gadget_strings **strings; member 377 struct usb_gadget_strings **strings; member
|
D | gadget.h | 1150 struct usb_string *strings; member
|
/linux-4.4.14/fs/ceph/ |
D | Makefile | 9 mds_client.o mdsmap.o strings.o ceph_frag.o \
|
/linux-4.4.14/arch/cris/include/asm/ |
D | eshlibld.h | 73 unsigned char *strings, unsigned long stringlength,
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | sunxi.txt | 4 using one of the following compatible strings:
|
D | arm-boards | 93 a core-module with regs and the compatible strings
|
/linux-4.4.14/Documentation/ABI/stable/ |
D | o2cb | 7 and can be written into with the strings "allow", "deny", or
|
/linux-4.4.14/Documentation/devicetree/bindings/mailbox/ |
D | mailbox.txt | 25 - mbox-names: List of identifier strings for each mailbox channel.
|
/linux-4.4.14/drivers/net/ethernet/stmicro/stmmac/ |
D | dwmac-rk.c | 456 const char *strings = NULL; in rk_gmac_setup() local 476 ret = of_property_read_string(dev->of_node, "clock_in_out", &strings); in rk_gmac_setup() 482 strings); in rk_gmac_setup() 483 if (!strcmp(strings, "input")) in rk_gmac_setup()
|
/linux-4.4.14/Documentation/devicetree/bindings/phy/ |
D | mxs-usb-phy.txt | 10 "fsl,imx23-usbphy" is still a fallback for other strings
|
D | qcom,usb-8x16-phy.txt | 23 Definition: Must contain "iface" and "core" strings.
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | lantiq,pinctrl-falcon.txt | 32 - lantiq,groups : An array of strings. Each string contains the name of a group. 50 - lantiq,pins : An array of strings. Each string contains the name of a pin.
|
D | lantiq,pinctrl-xway.txt | 32 - lantiq,groups : An array of strings. Each string contains the name of a group. 57 - lantiq,pins : An array of strings. Each string contains the name of a pin.
|
D | berlin,pinctrl.txt | 29 - groups: a list of strings describing the group names.
|
D | pinctrl-sirf.txt | 20 - sirf,pins : An array of strings. Each string contains the name of a group.
|
D | pinctrl-atlas7.txt | 67 - groups : An array of strings. Each string contains the name of a group.
|
D | renesas,pfc-pinctrl.txt | 62 - pins : An array of strings, each string containing the name of a pin. 63 - groups : An array of strings, each string containing the name of a pin
|
D | meson,pinctrl.txt | 15 - reg-names: an array of strings describing the "reg" entries. Must
|
D | allwinner,sunxi-pinctrl.txt | 36 - allwinner,pins: List of strings containing the pin name.
|
D | cnxt,cx92755-pinctrl.txt | 58 - pins: Multiple strings. Specifies the name(s) of one or more pins to be
|
D | ste,nomadik.txt | 28 - groups : An array of strings. Each string contains the name of a pin
|
D | img,tz1090-pdc-pinctrl.txt | 31 - tz1090,pins : An array of strings. Each string contains the name of a pin or
|
D | nvidia,tegra124-xusb-padctl.txt | 48 - nvidia,lanes: An array of strings. Each string is the name of a lane.
|
D | pinctrl_spear.txt | 43 - st,pins : An array of strings. Each string contains the name of a pin or
|
D | nvidia,tegra20-pinmux.txt | 31 - nvidia,pins : An array of strings. Each string contains the name of a pin or
|
D | nvidia,tegra210-pinmux.txt | 36 - nvidia,pins : An array of strings. Each string contains the name of a pin or
|
D | img,tz1090-pinctrl.txt | 31 - tz1090,pins : An array of strings. Each string contains the name of a pin or
|
D | pinctrl-bindings.txt | 225 - Whether the entries are integers or strings, and their meaning.
|
/linux-4.4.14/Documentation/devicetree/bindings/ |
D | submitting-patches.txt | 21 4) Any compatible strings used in a chip or board DTS file must be 29 5) The wildcard "<chip>" may be used in compatible strings, as in
|
D | resource-names.txt | 5 items. The names property consists of a list of strings in the same
|
D | ABI.txt | 23 2) Use specific compatible strings so that if we need to add a feature (DMA)
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | ingenic,intc.txt | 5 - compatible : should be "ingenic,<socname>-intc". Valid strings are:
|
/linux-4.4.14/arch/s390/kernel/ |
D | module.c | 113 char *strings; in module_frob_arch_sections() local 136 strings = (void *) hdr + sechdrs[symtab->sh_link].sh_offset; in module_frob_arch_sections() 139 strcmp(strings + symbols[i].st_name, in module_frob_arch_sections()
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/ |
D | en_ethtool.c | 432 int i, strings = 0; in mlx4_en_get_strings() local 448 for (i = 0; i < NUM_MAIN_STATS; i++, strings++, in mlx4_en_get_strings() 452 main_strings[strings]); in mlx4_en_get_strings() 454 for (i = 0; i < NUM_PORT_STATS; i++, strings++, in mlx4_en_get_strings() 458 main_strings[strings]); in mlx4_en_get_strings() 460 for (i = 0; i < NUM_PF_STATS; i++, strings++, in mlx4_en_get_strings() 464 main_strings[strings]); in mlx4_en_get_strings() 466 for (i = 0; i < NUM_FLOW_STATS; i++, strings++, in mlx4_en_get_strings() 470 main_strings[strings]); in mlx4_en_get_strings() 472 for (i = 0; i < NUM_PKT_STATS; i++, strings++, in mlx4_en_get_strings() [all …]
|
/linux-4.4.14/Documentation/power/ |
D | states.txt | 9 The states are represented by strings that can be read or written to the 10 /sys/power/state file. Those strings may be "mem", "standby", "freeze" and 15 For relative_sleep_states=1, the strings "mem", "standby" and "freeze" label the
|
D | interface.txt | 14 Writing to this file one of those strings causes the system to
|
/linux-4.4.14/Documentation/devicetree/bindings/pwm/ |
D | imx-pwm.txt | 5 compatible strings:
|
D | pwm.txt | 18 An optional property "pwm-names" may contain a list of strings to label
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | davinci_mmc.txt | 19 - dma-names: RX and TX DMA request names. These strings correspond
|
D | ti-omap-hsmmc.txt | 28 dma-names: List of DMA request names. These strings correspond
|
/linux-4.4.14/tools/scripts/ |
D | Makefile.include | 40 EXTRA_WARNINGS += -Wwrite-strings
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | f_serial.c | 139 .strings = gser_string_defs, 348 gser->port.func.strings = gser_strings; in gser_alloc()
|
D | f_loopback.c | 160 .strings = strings_loopback, 455 loop->function.strings = loopback_strings; in loopback_alloc()
|
D | f_fs.c | 1534 struct usb_string *str = (*lang)->strings; in functionfs_bind() 2241 struct usb_string *strings, *s; in __ffs_data_got_strings() local 2277 vla_item(d, struct usb_string, strings, in __ffs_data_got_strings() 2299 s = vla_ptr(vlabuf, d, strings); in __ffs_data_got_strings() 2300 strings = s; in __ffs_data_got_strings() 2313 t->strings = s; in __ffs_data_got_strings() 2576 newValue = func->ffs->stringtabs[0]->strings[*valuep - 1].id; in __ffs_func_bind_do_nums() 2725 func->function.strings = func->ffs->stringtabs; in ffs_do_functionfs_bind()
|
D | f_acm.c | 292 .strings = acm_string_defs, 743 acm->port.func.strings = acm_strings; in acm_alloc_func()
|
D | f_subset.c | 247 .strings = geth_string_defs,
|
D | f_obex.c | 64 .strings = obex_string_defs,
|
D | f_sourcesink.c | 289 .strings = strings_sourcesink, 879 ss->function.strings = sourcesink_strings; in source_sink_alloc_func()
|
D | f_eem.c | 160 .strings = eem_string_defs,
|
D | f_ecm.c | 368 .strings = ecm_string_defs,
|
D | f_rndis.c | 362 .strings = rndis_string_defs,
|
/linux-4.4.14/tools/perf/util/ |
D | util.c | 336 char **strings = backtrace_symbols(array, size); in dump_stack() local 342 printf("%s\n", strings[i]); in dump_stack() 344 free(strings); in dump_stack()
|
/linux-4.4.14/Documentation/devicetree/bindings/net/can/ |
D | rcar_can.txt | 12 - clock-names: 3 clock input name strings: "clkp1", "clkp2", "can_clk".
|
/linux-4.4.14/Documentation/devicetree/bindings/spi/ |
D | omap-spi.txt | 17 - dma-names: List of DMA request names. These strings correspond
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/msm/ |
D | timer.txt | 20 - clock-names: The name of the clocks as free-form strings. They should be in
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/st/ |
D | st,quadfs.txt | 33 4 strings are provided then no clocks will be created
|
D | st,clkgen-vcc.txt | 30 16 strings are provided then no clocks will be created
|
D | st,flexgen.txt | 70 - clock-output-names : List of strings used to name the clock outputs.
|
/linux-4.4.14/Documentation/devicetree/bindings/input/touchscreen/ |
D | edt-ft5x06.txt | 12 different chips. Nevertheless distinct compatible strings are used so
|
/linux-4.4.14/Documentation/devicetree/bindings/hwlock/ |
D | hwlock.txt | 32 - hwlock-names: List of hwlock name strings defined in the same order
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/omap/ |
D | timer.txt | 9 different compatible strings.
|
D | omap.txt | 17 - ti,hwmods: list of hwmod names (ascii strings), that comes from the OMAP
|
/linux-4.4.14/drivers/staging/most/Documentation/ABI/ |
D | sysfs-class-most.txt | 139 The following strings will be accepted: 150 The following strings will be accepted:
|
/linux-4.4.14/scripts/kconfig/ |
D | zconf.l | 187 printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno());
|
/linux-4.4.14/Documentation/s390/ |
D | 3270.ChangeLog | 5 ESC sequences (especially coloring ones) and the strings
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | fsl-tsec-phy.txt | 11 mdio. Currently supported strings/devices are: 18 When device_type is "mdio", the following strings are also considered:
|
/linux-4.4.14/drivers/ps3/ |
D | ps3-vuart.c | 126 static const char *strings[] = { in _dump_port_params() local 140 for (i = 0; i < ARRAY_SIZE(strings); i++) { in _dump_port_params() 145 port_number, strings[i], ps3_result(result)); in _dump_port_params() 149 func, line, port_number, strings[i], value); in _dump_port_params()
|
/linux-4.4.14/Documentation/devicetree/bindings/ufs/ |
D | ufs-qcom.txt | 19 - clock-names : List of clock input name strings sorted in the same
|
D | ufshcd-pltfrm.txt | 34 - clock-names : List of clock input name strings sorted in the same
|
/linux-4.4.14/Documentation/DocBook/ |
D | gadget.xml.db | 42 API-struct-usb-gadget-strings
|
/linux-4.4.14/drivers/crypto/qat/qat_common/ |
D | icp_qat_uclo.h | 190 uint64_t strings; member
|
D | qat_uclo.c | 122 return (char *)(((unsigned long)(str_table->strings)) + str_offset); in qat_uclo_get_string() 699 hdr_size = (char *)&str_table->strings - (char *)str_table; in qat_uclo_map_str_table() 700 str_table->strings = (unsigned long)obj_hdr->file_buff + in qat_uclo_map_str_table()
|
/linux-4.4.14/Documentation/hwmon/ |
D | acpi_power_meter | 33 strings that ACPI provides with the meter. The measures/ directory contains
|
/linux-4.4.14/Documentation/acpi/ |
D | enumeration.txt | 371 property whose value is a string or an array of strings recognized as device 372 identifiers by drivers and the driver core. The set of all those strings may be 400 driver) and the identification strings from the "compatible" property value will 405 the identification strings listed by the "compatible" property value (if present
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | qcom-pm8941.dtsi | 172 qcom,num-strings = <2>;
|
/linux-4.4.14/Documentation/fmc/ |
D | mezzanine.txt | 49 bus supports a catch-all driver that specifies NULL strings. For this 99 The argument is an array of strings. If no busid= is specified,
|
/linux-4.4.14/tools/testing/selftests/futex/ |
D | README | 39 ERROR strings in color for easy visual parsing. Output shall conform to the
|
/linux-4.4.14/drivers/media/pci/cx88/ |
D | cx88-core.c | 477 void cx88_print_irqbits(const char *name, const char *tag, const char *strings[], in cx88_print_irqbits() argument 486 if (strings[i]) in cx88_print_irqbits() 487 printk(" %s", strings[i]); in cx88_print_irqbits()
|
D | cx88.h | 619 extern void cx88_print_irqbits(const char *name, const char *tag, const char *strings[],
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-script-perl.txt | 180 strings for flag and symbolic fields. These correspond to the strings
|
D | perf-script-python.txt | 268 numbers to the corresponding syscall name strings). The output is 575 strings for flag and symbolic fields. These correspond to the strings
|
/linux-4.4.14/drivers/scsi/isci/ |
D | remote_node_context.c | 67 static const char * const strings[] = RNC_STATES; in rnc_state_name() local 69 return strings[state]; in rnc_state_name()
|
D | phy.c | 66 static const char * const strings[] = PHY_STATES; in phy_state_name() local 68 return strings[state]; in phy_state_name()
|
D | port.c | 67 static const char * const strings[] = PORT_STATES; in port_state_name() local 69 return strings[state]; in port_state_name()
|
D | remote_device.c | 69 static const char * const strings[] = REMOTE_DEV_STATES; in dev_state_name() local 71 return strings[state]; in dev_state_name()
|
/linux-4.4.14/Documentation/devicetree/ |
D | booting-without-of.txt | 24 4) Device tree "strings" block 350 u32 off_dt_strings; /* offset to strings */ 360 u32 size_dt_strings; /* size of the strings block */ 394 the device-tree structure, strings, and the memory reserve map. 404 of the "strings" part of the device-tree 429 Version 3 adds the size of the strings block, allowing the kernel 464 gives the size of the "strings" section of the device tree (which 494 | device-tree strings | 510 structure block and a strings block. Both need to be aligned to a 4 677 4) Device tree "strings" block [all …]
|
D | usage-model.txt | 31 names are simply text strings, it is easy to extend existing bindings 116 The 'compatible' property contains a sorted list of strings starting 143 documentation for compatible strings in Documentation/devicetree/bindings.
|
/linux-4.4.14/Documentation/devicetree/bindings/reset/ |
D | reset.txt | 55 reset-names: List of reset signal name strings sorted in the same order as
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | arizona.txt | 8 - compatible : One of the following chip-specific strings:
|
D | qcom-rpm.txt | 33 Definition: must be the three strings "ack", "err" and "wakeup", in order
|
/linux-4.4.14/Documentation/devicetree/bindings/dma/ |
D | dma.txt | 78 the dmas property. The specific strings that can be used
|
/linux-4.4.14/drivers/media/pci/cx25821/ |
D | cx25821.h | 436 extern void cx25821_print_irqbits(char *name, char *tag, char **strings,
|
D | cx25821-core.c | 1252 void cx25821_print_irqbits(char *name, char *tag, char **strings, in cx25821_print_irqbits() argument 1262 if (strings[i]) in cx25821_print_irqbits() 1263 pr_cont(" %s", strings[i]); in cx25821_print_irqbits()
|
/linux-4.4.14/drivers/usb/core/ |
D | Kconfig | 9 strings for every new USB device to the syslog. This option is
|
/linux-4.4.14/Documentation/devicetree/bindings/reserved-memory/ |
D | reserved-memory.txt | 49 - may contain the following strings:
|
/linux-4.4.14/Documentation/sound/alsa/soc/ |
D | codec.txt | 105 xtexts = pointer to array of strings that describe each setting
|
/linux-4.4.14/drivers/staging/unisys/Documentation/ABI/ |
D | sysfs-platform-visorchipset | 61 strings: MODULES_LOADED to indicate that the s-Par driver
|
/linux-4.4.14/Documentation/devicetree/bindings/regulator/ |
D | qcom,spmi-regulator.txt | 19 Definition: List of strings defining the names of the
|
/linux-4.4.14/drivers/usb/ |
D | Kconfig | 44 select NLS # for UTF-8 strings
|
/linux-4.4.14/arch/powerpc/boot/ |
D | wrapper | 348 version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
|
/linux-4.4.14/firmware/keyspan_pda/ |
D | keyspan_pda.S | 573 ;; using the workaround is that the strings gathered by the kernel 575 ;; leftover strings). Writing this out by hand is a nuisance, so for 1073 ;; sigh. These strings are Unicode, meaning UTF16? 2 bytes each. Now
|
D | xircom_pgs.S | 611 ;; using the workaround is that the strings gathered by the kernel 613 ;; leftover strings). Writing this out by hand is a nuisance, so for 1141 ;; sigh. These strings are Unicode, meaning UTF16? 2 bytes each. Now
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | brcm,brcmnand.txt | 66 - compatible: Can be one of several SoC-specific strings. Each SoC may have
|
/linux-4.4.14/Documentation/leds/ |
D | leds-lp55xx.txt | 108 Full LED strings are selected by 'engine2_leds'.
|
/linux-4.4.14/Documentation/gpio/ |
D | sysfs.txt | 86 "both". Write these strings to select the signal edge(s)
|
/linux-4.4.14/Documentation/hid/ |
D | hidraw.txt | 87 This ioctl returns a string containing the vendor and product strings of
|
/linux-4.4.14/Documentation/ |
D | eisa.txt | 85 id_table : an array of NULL terminated EISA id strings,
|
/linux-4.4.14/drivers/staging/most/Documentation/ |
D | driver_usage.txt | 172 that is going to be used. The following strings can be used:
|
/linux-4.4.14/Documentation/scsi/ |
D | scsi-changer.txt | 107 strings then.
|
/linux-4.4.14/drivers/tty/vt/ |
D | defkeymap.c_shipped | 151 * Philosophy: most people do not define more strings, but they who do
|
/linux-4.4.14/Documentation/device-mapper/ |
D | statistics.txt | 126 The strings "precise_timestamps" and "histogram" are printed only
|
/linux-4.4.14/Documentation/devicetree/bindings/bus/ |
D | mvebu-mbus.txt | 56 compatible strings)
|
/linux-4.4.14/Documentation/networking/dsa/ |
D | dsa.txt | 439 - get_strings: ethtool function used to query the driver's strings, will 440 typically return statistics strings, private flags strings etc.
|
/linux-4.4.14/Documentation/blockdev/ |
D | floppy.txt | 33 prompt, the option strings of both places are concatenated, the boot
|