/linux-4.1.27/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
|
D | gadget_serial.txt | 264 Under "Modem and dialing" erase all the modem and dialing strings.
|
/linux-4.1.27/drivers/usb/gadget/legacy/ |
D | printer.c | 106 static struct usb_string strings [] = { variable 115 .strings = strings, 176 ret = usb_string_ids_tab(cdev, strings); in printer_bind() 181 device_desc.iManufacturer = strings[USB_GADGET_MANUFACTURER_IDX].id; in printer_bind() 182 device_desc.iProduct = strings[USB_GADGET_PRODUCT_IDX].id; in printer_bind() 183 device_desc.iSerialNumber = strings[USB_GADGET_SERIAL_IDX].id; in printer_bind() 205 .strings = dev_strings,
|
D | ncm.c | 97 .strings = strings_dev, 201 .strings = dev_strings,
|
D | gmidi.c | 110 .strings = strings_dev, 191 .strings = dev_strings,
|
D | cdc2.c | 89 .strings = strings_dev, 228 .strings = dev_strings,
|
D | mass_storage.c | 92 .strings = strings_dev, 246 .strings = dev_strings,
|
D | acm_ms.c | 87 .strings = strings_dev, 255 .strings = dev_strings,
|
D | serial.c | 58 .strings = strings_dev, 236 .strings = dev_strings,
|
D | hid.c | 97 .strings = strings_dev, 258 .strings = dev_strings,
|
D | audio.c | 95 .strings = strings_dev, 298 .strings = audio_strings,
|
D | ether.c | 198 .strings = strings_dev, 472 .strings = dev_strings,
|
D | nokia.c | 58 .strings = strings_dev, 344 .strings = dev_strings,
|
D | zero.c | 161 .strings = strings_dev, 406 .strings = dev_strings,
|
D | webcam.c | 66 .strings = webcam_strings, 428 .strings = webcam_device_strings,
|
D | multi.c | 114 .strings = strings_dev, 485 .strings = dev_strings,
|
D | g_ffs.c | 127 .strings = gfs_strings, 169 .strings = gfs_dev_strings,
|
D | tcm_usb_gadget.c | 2171 .strings = usbg_us_strings, 2403 .strings = usbg_strings,
|
/linux-4.1.27/sound/core/ |
D | info_oss.c | 38 static DEFINE_MUTEX(strings); 50 mutex_lock(&strings); in snd_oss_info_register() 59 mutex_unlock(&strings); in snd_oss_info_register() 64 mutex_unlock(&strings); in snd_oss_info_register() 76 mutex_lock(&strings); in snd_sndstat_show_strings() 87 mutex_unlock(&strings); in snd_sndstat_show_strings()
|
/linux-4.1.27/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 | 639 size_t efx_ptp_describe_stats(struct efx_nic *efx, u8 *strings);
|
D | ptp.c | 357 size_t efx_ptp_describe_stats(struct efx_nic *efx, u8 *strings) in efx_ptp_describe_stats() argument 363 efx_ptp_stat_mask, strings); in efx_ptp_describe_stats()
|
/linux-4.1.27/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.1.27/drivers/of/ |
D | unittest.c | 388 const char *strings[4]; in of_unittest_property_string() local 424 rc = of_property_read_string_index(np, "string-property", 0, strings); in of_unittest_property_string() 425 …unittest(rc == 0 && !strcmp(strings[0], "foobar"), "of_property_read_string_index() failure; rc=%i… in of_unittest_property_string() 426 strings[0] = NULL; in of_unittest_property_string() 427 rc = of_property_read_string_index(np, "string-property", 1, strings); in of_unittest_property_string() 428 …unittest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n",… in of_unittest_property_string() 429 rc = of_property_read_string_index(np, "phandle-list-names", 0, strings); in of_unittest_property_string() 430 …unittest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\… in of_unittest_property_string() 431 rc = of_property_read_string_index(np, "phandle-list-names", 1, strings); in of_unittest_property_string() 432 …unittest(rc == 0 && !strcmp(strings[0], "second"), "of_property_read_string_index() failure; rc=%i… in of_unittest_property_string() [all …]
|
/linux-4.1.27/tools/lib/traceevent/ |
D | plugin_kvm.c | 221 struct str_values *strings; member 223 { .isa = 1, .strings = vmx_exit_reasons }, 224 { .isa = 2, .strings = svm_exit_reasons }, 230 struct str_values *strings = NULL; in find_exit_reason() local 233 for (i = 0; isa_exit_reasons[i].strings; ++i) in find_exit_reason() 235 strings = isa_exit_reasons[i].strings; in find_exit_reason() 238 if (!strings) in find_exit_reason() 240 for (i = 0; strings[i].val >= 0; i++) in find_exit_reason() 241 if (strings[i].val == val) in find_exit_reason() 244 return strings[i].str; in find_exit_reason()
|
D | event-parse.c | 3974 } *strings = NULL, *string; in process_defined_func() local 4007 string->next = strings; in process_defined_func() 4016 strings = string; in process_defined_func() 4034 while (strings) { in process_defined_func() 4035 string = strings; in process_defined_func() 4036 strings = string->next; in process_defined_func()
|
/linux-4.1.27/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 | 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 | 127 valid strings:
|
D | sysfs-class-mtd | 104 One of the following ASCII strings, representing the device
|
/linux-4.1.27/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.1.27/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.1.27/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
|
D | Kconfig | 115 and crc32_be over byte strings with random alignment and length
|
/linux-4.1.27/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.1.27/Documentation/devicetree/bindings/leds/ |
D | leds-pm8941-wled.txt | 27 - qcom,num-strings: #; number of led strings attached; value from 1 to 3 42 qcom,num-strings = <2>;
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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 | omap-twl4030.txt | 13 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 | imx-audio-sgtl5000.txt | 14 Each entry is a pair of strings, the first being the
|
D | nvidia,tegra-audio-alc5632.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-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 | imx-audio-es8328.txt | 11 Each entry is a pair of strings, the first being the
|
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 | nvidia,tegra-audio-wm8903.txt | 13 Each entry is a pair of strings, the first being the connection's sink,
|
D | nvidia,tegra-audio-rt5677.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 | fsl-asoc-card.txt | 42 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.1.27/drivers/usb/gadget/ |
D | composite.c | 965 sp = composite->strings; in get_string() 970 sp = c->strings; in get_string() 975 sp = f->strings; in get_string() 1022 if (composite->strings) { in get_string() 1023 len = lookup_string(composite->strings, buf, language, id); in get_string() 1028 if (c->strings) { in get_string() 1029 len = lookup_string(c->strings, buf, language, id); in get_string() 1034 if (!f->strings) in get_string() 1036 len = lookup_string(f->strings, buf, language, id); in get_string() 1133 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 | 80 struct usb_string strings[USB_GADGET_FIRST_AVAIL_IDX]; member 95 struct usb_string strings; member 1353 gs->stringtab_dev.strings = gs->strings; in configfs_composite_bind() 1354 gs->strings[USB_GADGET_MANUFACTURER_IDX].s = in configfs_composite_bind() 1356 gs->strings[USB_GADGET_PRODUCT_IDX].s = gs->product; in configfs_composite_bind() 1357 gs->strings[USB_GADGET_SERIAL_IDX].s = gs->serialnumber; in configfs_composite_bind() 1391 cn->stringtab_dev.strings = &cn->strings; in configfs_composite_bind() 1392 cn->strings.s = cn->configuration; in configfs_composite_bind()
|
/linux-4.1.27/drivers/net/ethernet/stmicro/stmmac/ |
D | dwmac-rk.c | 318 const char *strings = NULL; in rk_gmac_setup() local 337 ret = of_property_read_string(dev->of_node, "clock_in_out", &strings); in rk_gmac_setup() 344 __func__, strings); in rk_gmac_setup() 345 if (!strcmp(strings, "input")) in rk_gmac_setup()
|
/linux-4.1.27/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.1.27/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.1.27/include/linux/usb/ |
D | composite.h | 185 struct usb_gadget_strings **strings; member 289 struct usb_gadget_strings **strings; member 375 struct usb_gadget_strings **strings; member
|
D | gadget.h | 962 struct usb_string *strings; member
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | sunxi.txt | 4 using one of the following compatible strings:
|
D | marvell,berlin.txt | 82 - clock-names: array of strings describing the input clock specifiers above. 106 - groups: a list of strings describing the group names.
|
D | arm-boards | 93 a core-module with regs and the compatible strings
|
/linux-4.1.27/fs/ceph/ |
D | Makefile | 9 mds_client.o mdsmap.o strings.o ceph_frag.o \
|
/linux-4.1.27/arch/cris/include/asm/ |
D | eshlibld.h | 74 unsigned char *strings, unsigned long stringlength,
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | o2cb | 7 and can be written into with the strings "allow", "deny", or
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/ |
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 | 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 | qoriq-clock.txt | 23 Clock block strings include, but not limited to, one of the: 33 Chassis clock strings include:
|
D | renesas,cpg-mstp-clocks.txt | 29 - clock-output-names: The name of the clocks as free-form strings
|
D | exynos7-clock.txt | 25 compatible strings to indicate the clock controller
|
/linux-4.1.27/Documentation/devicetree/bindings/usb/ |
D | mxs-phy.txt | 10 "fsl,imx23-usbphy" is still a fallback for other strings
|
D | atmel-usb.txt | 44 - clock-names: Should contains two strings
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | lantiq,falcon-pinumx.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,xway-pinumx.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 | pinctrl-sirf.txt | 20 - sirf,pins : An array of strings. Each string contains the name of a group.
|
D | allwinner,sunxi-pinctrl.txt | 33 - allwinner,pins: List of strings containing the pin name.
|
D | renesas,pfc-pinctrl.txt | 59 - renesas,pins : An array of strings, each string containing the name of a pin. 60 - renesas,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 | ste,nomadik.txt | 26 - groups : An array of strings. Each string contains the name of a pin
|
D | nvidia,tegra124-xusb-padctl.txt | 48 - nvidia,lanes: An array of strings. Each string is the name of a lane.
|
D | img,tz1090-pdc-pinctrl.txt | 31 - tz1090,pins : An array of strings. Each string contains the name of a pin or
|
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.
|
D | brcm,bcm11351-pinctrl.txt | 54 - pins: Multiple strings. Specifies the name(s) of one or more pins to
|
/linux-4.1.27/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.1.27/tools/perf/util/ |
D | util.c | 258 char **strings = backtrace_symbols(array, size); in dump_stack() local 264 printf("%s\n", strings[i]); in dump_stack() 266 free(strings); in dump_stack()
|
/linux-4.1.27/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.1.27/Documentation/devicetree/bindings/mailbox/ |
D | mailbox.txt | 25 - mbox-names: List of identifier strings for each mailbox channel
|
/linux-4.1.27/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.1.27/drivers/gpu/drm/exynos/ |
D | exynos_drm_drv.c | 587 static const char * const strings[] = { variable 615 for (i = 0; i < ARRAY_SIZE(strings); i++) { in exynos_drm_init() 616 if (of_machine_is_compatible(strings[i])) { in exynos_drm_init()
|
/linux-4.1.27/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.1.27/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.1.27/tools/scripts/ |
D | Makefile.include | 40 EXTRA_WARNINGS += -Wwrite-strings
|
/linux-4.1.27/Documentation/devicetree/bindings/net/can/ |
D | rcar_can.txt | 12 - clock-names: 3 clock input name strings: "clkp1", "clkp2", "can_clk".
|
/linux-4.1.27/drivers/usb/gadget/function/ |
D | f_serial.c | 140 .strings = gser_string_defs, 375 gser->port.func.strings = gser_strings; in gser_alloc()
|
D | f_loopback.c | 165 .strings = strings_loopback, 408 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 | 293 .strings = acm_string_defs, 759 acm->port.func.strings = acm_strings; in acm_alloc_func()
|
D | f_subset.c | 247 .strings = geth_string_defs,
|
D | f_obex.c | 66 .strings = obex_string_defs,
|
D | f_sourcesink.c | 295 .strings = strings_sourcesink, 894 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,
|
D | f_uac1.c | 234 .strings = strings_uac1,
|
D | f_uvc.c | 55 .strings = uvc_en_us_strings,
|
D | f_hid.c | 181 .strings = ct_func_string_defs,
|
D | f_midi.c | 190 .strings = midi_string_defs,
|
D | f_ncm.c | 353 .strings = ncm_string_defs,
|
/linux-4.1.27/Documentation/devicetree/bindings/spi/ |
D | omap-spi.txt | 17 - dma-names: List of DMA request names. These strings correspond
|
/linux-4.1.27/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.1.27/drivers/net/ethernet/mellanox/mlx4/ |
D | en_ethtool.c | 423 int i, strings = 0; in mlx4_en_get_strings() local 439 for (i = 0; i < NUM_MAIN_STATS; i++, strings++, in mlx4_en_get_strings() 443 main_strings[strings]); in mlx4_en_get_strings() 445 for (i = 0; i < NUM_PORT_STATS; i++, strings++, in mlx4_en_get_strings() 449 main_strings[strings]); in mlx4_en_get_strings() 451 for (i = 0; i < NUM_FLOW_STATS; i++, strings++, in mlx4_en_get_strings() 455 main_strings[strings]); in mlx4_en_get_strings() 457 for (i = 0; i < NUM_PKT_STATS; i++, strings++, in mlx4_en_get_strings() 461 main_strings[strings]); in mlx4_en_get_strings()
|
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/ |
D | edt-ft5x06.txt | 11 different chips. Nevertheless distinct compatible strings are used so
|
/linux-4.1.27/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.1.27/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.1.27/scripts/kconfig/ |
D | zconf.l | 176 printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno());
|
/linux-4.1.27/Documentation/s390/ |
D | 3270.ChangeLog | 5 ESC sequences (especially coloring ones) and the strings
|
/linux-4.1.27/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.1.27/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.1.27/Documentation/devicetree/bindings/dma/ |
D | dma.txt | 50 the dmas property. The specific strings that can be used
|
/linux-4.1.27/Documentation/devicetree/bindings/ufs/ |
D | ufshcd-pltfrm.txt | 27 - clock-names : List of clock input name strings sorted in the same
|
/linux-4.1.27/Documentation/hwmon/ |
D | acpi_power_meter | 33 strings that ACPI provides with the meter. The measures/ directory contains
|
D | sysfs-interface | 64 the desired value must be written, note that strings which are not a number 65 are interpreted as 0! For more on how written strings are interpreted see the
|
/linux-4.1.27/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() 720 hdr_size = (char *)&str_table->strings - (char *)str_table; in qat_uclo_map_str_table() 721 str_table->strings = (unsigned long)obj_hdr->file_buff + in qat_uclo_map_str_table()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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()
|
D | request.c | 68 static const char * const strings[] = REQUEST_STATES; in req_state_name() local 70 return strings[state]; in req_state_name()
|
/linux-4.1.27/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.1.27/Documentation/devicetree/bindings/reset/ |
D | reset.txt | 55 reset-names: List of reset signal name strings sorted in the same order as
|
/linux-4.1.27/drivers/usb/core/ |
D | Kconfig | 9 strings for every new USB device to the syslog. This option is
|
/linux-4.1.27/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.1.27/drivers/media/pci/cx25821/ |
D | cx25821.h | 435 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.1.27/drivers/staging/unisys/Documentation/ABI/ |
D | sysfs-platform-visorchipset | 59 strings: MODULES_LOADED to indicate that the s-Par driver
|
/linux-4.1.27/Documentation/devicetree/bindings/reserved-memory/ |
D | reserved-memory.txt | 49 - may contain the following strings:
|
/linux-4.1.27/Documentation/sound/alsa/soc/ |
D | codec.txt | 105 xtexts = pointer to array of strings that describe each setting
|
/linux-4.1.27/arch/powerpc/boot/ |
D | wrapper | 331 version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
|
/linux-4.1.27/drivers/usb/ |
D | Kconfig | 44 select NLS # for UTF-8 strings
|
/linux-4.1.27/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.1.27/Documentation/hid/ |
D | hidraw.txt | 87 This ioctl returns a string containing the vendor and product strings of
|
/linux-4.1.27/Documentation/leds/ |
D | leds-lp55xx.txt | 108 Full LED strings are selected by 'engine2_leds'.
|
/linux-4.1.27/Documentation/gpio/ |
D | sysfs.txt | 87 "both". Write these strings to select the signal edge(s)
|
/linux-4.1.27/Documentation/scsi/ |
D | scsi-changer.txt | 107 strings then.
|
D | BusLogic.txt | 361 strings by a semicolon, or by specifying multiple "BusLogic=" strings on the
|
/linux-4.1.27/Documentation/ |
D | eisa.txt | 85 id_table : an array of NULL terminated EISA id strings,
|
D | kernel-parameters.txt | 277 acpi_osi= [HW,ACPI] Modify list of supported OS interface strings 280 acpi_osi=!* # remove all strings 282 strings 283 acpi_osi= # disable all strings 288 affect the default state of the OS vendor strings, thus 290 strings and the current state of the OS vendor strings, 293 care about the state of the feature group strings which 313 current state of both the OS vendor strings and the 314 feature group strings, thus specifying it multiple times 319 feature group strings to debug BIOS issues related to
|
/linux-4.1.27/drivers/tty/vt/ |
D | defkeymap.c_shipped | 151 * Philosophy: most people do not define more strings, but they who do
|
/linux-4.1.27/Documentation/devicetree/bindings/bus/ |
D | mvebu-mbus.txt | 56 compatible strings)
|
/linux-4.1.27/Documentation/blockdev/ |
D | floppy.txt | 33 prompt, the option strings of both places are concatenated, the boot
|
/linux-4.1.27/kernel/trace/ |
D | Kconfig | 621 print fmt strings will have the enums converted to their values. 631 Normally, the mapping of the strings to values will be freed after
|
/linux-4.1.27/Documentation/security/ |
D | Smack.txt | 133 access to deny. The access strings may contain only the characters 137 created using the access specified in the third and the fourth strings. 335 Smack labels are ASCII character strings. They can be up to 255 characters
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | dcsr.txt | 6 to change. Some of the compatible strings that contain only generic names
|
/linux-4.1.27/Documentation/networking/ |
D | openvswitch.txt | 81 them as comma-separated strings, with parentheses indicating arguments
|
/linux-4.1.27/drivers/isdn/hisax/ |
D | Kconfig | 61 If you like to send special dial strings including * or # without
|
/linux-4.1.27/arch/sparc/ |
D | Kconfig | 271 Loading this driver allows exact mnemonic strings to be
|