Home
last modified time | relevance | path

Searched refs:strings (Results 1 – 200 of 222) sorted by relevance

12

/linux-4.1.27/Documentation/usb/
Dgadget_configfs.txt81 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 …]
Dfunctionfs.txt6 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
Dlinux-cdc-acm.inf102 ;Modify these strings to customize your device
Dacm.txt112 usb.c: new device strings: Mfr=1, Product=2, SerialNumber=3
Dgadget_serial.txt264 Under "Modem and dialing" erase all the modem and dialing strings.
/linux-4.1.27/drivers/usb/gadget/legacy/
Dprinter.c106 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,
Dncm.c97 .strings = strings_dev,
201 .strings = dev_strings,
Dgmidi.c110 .strings = strings_dev,
191 .strings = dev_strings,
Dcdc2.c89 .strings = strings_dev,
228 .strings = dev_strings,
Dmass_storage.c92 .strings = strings_dev,
246 .strings = dev_strings,
Dacm_ms.c87 .strings = strings_dev,
255 .strings = dev_strings,
Dserial.c58 .strings = strings_dev,
236 .strings = dev_strings,
Dhid.c97 .strings = strings_dev,
258 .strings = dev_strings,
Daudio.c95 .strings = strings_dev,
298 .strings = audio_strings,
Dether.c198 .strings = strings_dev,
472 .strings = dev_strings,
Dnokia.c58 .strings = strings_dev,
344 .strings = dev_strings,
Dzero.c161 .strings = strings_dev,
406 .strings = dev_strings,
Dwebcam.c66 .strings = webcam_strings,
428 .strings = webcam_device_strings,
Dmulti.c114 .strings = strings_dev,
485 .strings = dev_strings,
Dg_ffs.c127 .strings = gfs_strings,
169 .strings = gfs_dev_strings,
Dtcm_usb_gadget.c2171 .strings = usbg_us_strings,
2403 .strings = usbg_strings,
/linux-4.1.27/sound/core/
Dinfo_oss.c38 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/
Dethtool.c215 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 …]
Dnic.h639 size_t efx_ptp_describe_stats(struct efx_nic *efx, u8 *strings);
Dptp.c357 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/
Doutput_format.txt12 <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/
Dunittest.c388 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/
Dplugin_kvm.c221 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()
Devent-parse.c3974 } *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/
Dconfigfs-usb-gadget43 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
Dsysfs-class-regulator10 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:
Dsysfs-firmware-dmi63 terminated strings, with termination signalled
67 "unformatted" strings portion of the entry,
Dsysfs-power30 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
Dsysfs-driver-hid-wiimote39 Other strings for each device-type are available and may be
Dsysfs-firmware-acpi168 Besides this, user can also write specific strings to these files
Dsysfs-class-mic.txt127 valid strings:
Dsysfs-class-mtd104 One of the following ASCII strings, representing the device
/linux-4.1.27/drivers/xen/xenbus/
Dxenbus_xs.c344 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/
Dmodule.c29 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/
Dtest-string_helpers.c40 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()
DKconfig.kgdb58 information about other strings you could use beyond the
DKconfig115 and crc32_be over byte strings with random alignment and length
/linux-4.1.27/Documentation/pcmcia/
Ddevicetable.txt6 - 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/
Dleds-pm8941-wled.txt27 - 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/
Daio_simple.c126 } __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/
Daio_multibuff.c128 } __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/
Dnokia-modem.txt10 - hsi-channel-names: Should contain the following strings
17 - gpio-names: Should contain the following strings
/linux-4.1.27/Documentation/devicetree/bindings/sound/
Domap-mcbsp.txt11 - reg-names: Array of strings associated with the address space
17 - interrupt-names: Array of strings associated with the interrupt numbers
Dwidgets.txt5 Each entry is a pair of strings in DT:
Dsirf-audio-port.txt8 These strings correspond 1:1 with the ordered pairs in dmas.
Dbrcm,bcm2835-i2s.txt10 These strings correspond 1:1 with the ordered pairs in dmas.
Dsirf-usp.txt8 These strings correspond 1:1 with the ordered pairs in dmas.
Datmel-sam9x5-wm8731-audio.txt9 Each entry is a pair of strings, the first being the connection's sink,
Dsamsung,odroidx2-max98090.txt10 components; each entry is a pair of strings, the first being the
Dnvidia,tegra-audio-wm9712.txt13 Each entry is a pair of strings, the first being the connection's sink,
Datmel-wm8904.txt7 Each entry is a pair of strings, the first being the connection's sink,
Domap-twl4030.txt13 Each entry is a pair of strings, the first being the connection's sink,
Dimx-audio-wm8962.txt14 Each entry is a pair of strings, the first being the
Dimx-audio-sgtl5000.txt14 Each entry is a pair of strings, the first being the
Dnvidia,tegra-audio-alc5632.txt13 Each entry is a pair of strings, the first being the connection's sink,
Dnvidia,tegra-audio-wm8753.txt13 Each entry is a pair of strings, the first being the connection's sink,
Dnvidia,tegra-audio-max98090.txt13 Each entry is a pair of strings, the first being the connection's sink,
Dnvidia,tegra-audio-rt5640.txt13 Each entry is a pair of strings, the first being the connection's sink,
Dimx-audio-es8328.txt11 Each entry is a pair of strings, the first being the
Ddavinci-evm-audio.txt9 Each entry is a pair of strings, the first being the connection's sink,
Domap-abe-twl6040.txt10 Each entry is a pair of strings, the first being the connection's sink,
Dnvidia,tegra-audio-wm8903.txt13 Each entry is a pair of strings, the first being the connection's sink,
Dnvidia,tegra-audio-rt5677.txt13 Each entry is a pair of strings, the first being the connection's sink,
Ddavinci-mcasp-audio.txt25 These strings correspond 1:1 with the ordered pairs in dmas. The dma
Dfsl-asoc-card.txt42 Each entry is a pair of strings, the first being the
Dsamsung-i2s.txt25 These strings correspond 1:1 with the ordered pairs in dmas.
Dsimple-card.txt15 Each entry is a pair of strings, the first being the
/linux-4.1.27/drivers/usb/gadget/
Dcomposite.c965 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 …]
Dusbstring.c53 for (s = table->strings; s && s->s; s++) in usb_gadget_get_string()
Dconfigfs.c80 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/
Ddwmac-rk.c318 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/
Dst-sensors.txt8 - compatible: see the list of valid compatible strings below
23 Valid compatible strings:
Diio-bindings.txt55 List of IIO input name strings sorted in the same
/linux-4.1.27/tools/usb/
Dffs-test.c268 } __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/
Dcomposite.h185 struct usb_gadget_strings **strings; member
289 struct usb_gadget_strings **strings; member
375 struct usb_gadget_strings **strings; member
Dgadget.h962 struct usb_string *strings; member
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dsunxi.txt4 using one of the following compatible strings:
Dmarvell,berlin.txt82 - clock-names: array of strings describing the input clock specifiers above.
106 - groups: a list of strings describing the group names.
Darm-boards93 a core-module with regs and the compatible strings
/linux-4.1.27/fs/ceph/
DMakefile9 mds_client.o mdsmap.o strings.o ceph_frag.o \
/linux-4.1.27/arch/cris/include/asm/
Deshlibld.h74 unsigned char *strings, unsigned long stringlength,
/linux-4.1.27/Documentation/ABI/stable/
Do2cb7 and can be written into with the strings "allow", "deny", or
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Dzynq-7000.txt20 - 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
Dclock-bindings.txt22 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
Dbrcm,kona-ccu.txt17 The compatible strings used for each supported SoC family
26 Shall be an ordered list of strings defining the names of
Dqoriq-clock.txt23 Clock block strings include, but not limited to, one of the:
33 Chassis clock strings include:
Drenesas,cpg-mstp-clocks.txt29 - clock-output-names: The name of the clocks as free-form strings
Dexynos7-clock.txt25 compatible strings to indicate the clock controller
/linux-4.1.27/Documentation/devicetree/bindings/usb/
Dmxs-phy.txt10 "fsl,imx23-usbphy" is still a fallback for other strings
Datmel-usb.txt44 - clock-names: Should contains two strings
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dlantiq,falcon-pinumx.txt32 - 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.
Dlantiq,xway-pinumx.txt32 - 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.
Dpinctrl-sirf.txt20 - sirf,pins : An array of strings. Each string contains the name of a group.
Dallwinner,sunxi-pinctrl.txt33 - allwinner,pins: List of strings containing the pin name.
Drenesas,pfc-pinctrl.txt59 - 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
Dmeson,pinctrl.txt15 - reg-names: an array of strings describing the "reg" entries. Must
Dste,nomadik.txt26 - groups : An array of strings. Each string contains the name of a pin
Dnvidia,tegra124-xusb-padctl.txt48 - nvidia,lanes: An array of strings. Each string is the name of a lane.
Dimg,tz1090-pdc-pinctrl.txt31 - tz1090,pins : An array of strings. Each string contains the name of a pin or
Dpinctrl_spear.txt43 - st,pins : An array of strings. Each string contains the name of a pin or
Dnvidia,tegra20-pinmux.txt31 - nvidia,pins : An array of strings. Each string contains the name of a pin or
Dnvidia,tegra210-pinmux.txt36 - nvidia,pins : An array of strings. Each string contains the name of a pin or
Dimg,tz1090-pinctrl.txt31 - tz1090,pins : An array of strings. Each string contains the name of a pin or
Dpinctrl-bindings.txt225 - Whether the entries are integers or strings, and their meaning.
Dbrcm,bcm11351-pinctrl.txt54 - pins: Multiple strings. Specifies the name(s) of one or more pins to
/linux-4.1.27/Documentation/devicetree/bindings/
Dsubmitting-patches.txt21 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
Dresource-names.txt5 items. The names property consists of a list of strings in the same
DABI.txt23 2) Use specific compatible strings so that if we need to add a feature (DMA)
/linux-4.1.27/tools/perf/util/
Dutil.c258 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/
Dmodule.c113 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/
Dmailbox.txt25 - mbox-names: List of identifier strings for each mailbox channel
/linux-4.1.27/Documentation/power/
Dstates.txt9 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
Dinterface.txt14 Writing to this file one of those strings causes the system to
/linux-4.1.27/drivers/gpu/drm/exynos/
Dexynos_drm_drv.c587 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/
Dimx-pwm.txt5 compatible strings:
Dpwm.txt18 An optional property "pwm-names" may contain a list of strings to label
/linux-4.1.27/Documentation/devicetree/bindings/mmc/
Ddavinci_mmc.txt19 - dma-names: RX and TX DMA request names. These strings correspond
Dti-omap-hsmmc.txt28 dma-names: List of DMA request names. These strings correspond
/linux-4.1.27/tools/scripts/
DMakefile.include40 EXTRA_WARNINGS += -Wwrite-strings
/linux-4.1.27/Documentation/devicetree/bindings/net/can/
Drcar_can.txt12 - clock-names: 3 clock input name strings: "clkp1", "clkp2", "can_clk".
/linux-4.1.27/drivers/usb/gadget/function/
Df_serial.c140 .strings = gser_string_defs,
375 gser->port.func.strings = gser_strings; in gser_alloc()
Df_loopback.c165 .strings = strings_loopback,
408 loop->function.strings = loopback_strings; in loopback_alloc()
Df_fs.c1534 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()
Df_acm.c293 .strings = acm_string_defs,
759 acm->port.func.strings = acm_strings; in acm_alloc_func()
Df_subset.c247 .strings = geth_string_defs,
Df_obex.c66 .strings = obex_string_defs,
Df_sourcesink.c295 .strings = strings_sourcesink,
894 ss->function.strings = sourcesink_strings; in source_sink_alloc_func()
Df_eem.c160 .strings = eem_string_defs,
Df_ecm.c368 .strings = ecm_string_defs,
Df_rndis.c362 .strings = rndis_string_defs,
Df_uac1.c234 .strings = strings_uac1,
Df_uvc.c55 .strings = uvc_en_us_strings,
Df_hid.c181 .strings = ct_func_string_defs,
Df_midi.c190 .strings = midi_string_defs,
Df_ncm.c353 .strings = ncm_string_defs,
/linux-4.1.27/Documentation/devicetree/bindings/spi/
Domap-spi.txt17 - dma-names: List of DMA request names. These strings correspond
/linux-4.1.27/Documentation/devicetree/bindings/arm/msm/
Dtimer.txt20 - clock-names: The name of the clocks as free-form strings. They should be in
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/
Den_ethtool.c423 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/
Dedt-ft5x06.txt11 different chips. Nevertheless distinct compatible strings are used so
/linux-4.1.27/Documentation/devicetree/bindings/clock/st/
Dst,quadfs.txt33 4 strings are provided then no clocks will be created
Dst,clkgen-vcc.txt30 16 strings are provided then no clocks will be created
Dst,flexgen.txt70 - clock-output-names : List of strings used to name the clock outputs.
/linux-4.1.27/Documentation/devicetree/bindings/arm/omap/
Dtimer.txt9 different compatible strings.
Domap.txt17 - ti,hwmods: list of hwmod names (ascii strings), that comes from the OMAP
/linux-4.1.27/scripts/kconfig/
Dzconf.l176 printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno());
/linux-4.1.27/Documentation/s390/
D3270.ChangeLog5 ESC sequences (especially coloring ones) and the strings
/linux-4.1.27/Documentation/devicetree/bindings/net/
Dfsl-tsec-phy.txt11 mdio. Currently supported strings/devices are:
18 When device_type is "mdio", the following strings are also considered:
/linux-4.1.27/drivers/ps3/
Dps3-vuart.c126 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/
Ddma.txt50 the dmas property. The specific strings that can be used
/linux-4.1.27/Documentation/devicetree/bindings/ufs/
Dufshcd-pltfrm.txt27 - clock-names : List of clock input name strings sorted in the same
/linux-4.1.27/Documentation/hwmon/
Dacpi_power_meter33 strings that ACPI provides with the meter. The measures/ directory contains
Dsysfs-interface64 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/
Dicp_qat_uclo.h190 uint64_t strings; member
Dqat_uclo.c122 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/
Dmezzanine.txt49 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/
Dcx88-core.c477 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()
Dcx88.h619 extern void cx88_print_irqbits(const char *name, const char *tag, const char *strings[],
/linux-4.1.27/tools/perf/Documentation/
Dperf-script-perl.txt180 strings for flag and symbolic fields. These correspond to the strings
Dperf-script-python.txt268 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/
Dremote_node_context.c67 static const char * const strings[] = RNC_STATES; in rnc_state_name() local
69 return strings[state]; in rnc_state_name()
Dphy.c66 static const char * const strings[] = PHY_STATES; in phy_state_name() local
68 return strings[state]; in phy_state_name()
Dport.c67 static const char * const strings[] = PORT_STATES; in port_state_name() local
69 return strings[state]; in port_state_name()
Dremote_device.c69 static const char * const strings[] = REMOTE_DEV_STATES; in dev_state_name() local
71 return strings[state]; in dev_state_name()
Drequest.c68 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/
Dbooting-without-of.txt24 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 …]
Dusage-model.txt31 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/
Dreset.txt55 reset-names: List of reset signal name strings sorted in the same order as
/linux-4.1.27/drivers/usb/core/
DKconfig9 strings for every new USB device to the syslog. This option is
/linux-4.1.27/Documentation/devicetree/bindings/mfd/
Darizona.txt8 - compatible : One of the following chip-specific strings:
Dqcom-rpm.txt33 Definition: must be the three strings "ack", "err" and "wakeup", in order
/linux-4.1.27/drivers/media/pci/cx25821/
Dcx25821.h435 extern void cx25821_print_irqbits(char *name, char *tag, char **strings,
Dcx25821-core.c1252 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/
Dsysfs-platform-visorchipset59 strings: MODULES_LOADED to indicate that the s-Par driver
/linux-4.1.27/Documentation/devicetree/bindings/reserved-memory/
Dreserved-memory.txt49 - may contain the following strings:
/linux-4.1.27/Documentation/sound/alsa/soc/
Dcodec.txt105 xtexts = pointer to array of strings that describe each setting
/linux-4.1.27/arch/powerpc/boot/
Dwrapper331 version=`${CROSS}strings "$kernel" | grep '^Linux version [-0-9.]' | \
/linux-4.1.27/drivers/usb/
DKconfig44 select NLS # for UTF-8 strings
/linux-4.1.27/firmware/keyspan_pda/
Dkeyspan_pda.S573 ;; 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
Dxircom_pgs.S611 ;; 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/
Dhidraw.txt87 This ioctl returns a string containing the vendor and product strings of
/linux-4.1.27/Documentation/leds/
Dleds-lp55xx.txt108 Full LED strings are selected by 'engine2_leds'.
/linux-4.1.27/Documentation/gpio/
Dsysfs.txt87 "both". Write these strings to select the signal edge(s)
/linux-4.1.27/Documentation/scsi/
Dscsi-changer.txt107 strings then.
DBusLogic.txt361 strings by a semicolon, or by specifying multiple "BusLogic=" strings on the
/linux-4.1.27/Documentation/
Deisa.txt85 id_table : an array of NULL terminated EISA id strings,
Dkernel-parameters.txt277 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/
Ddefkeymap.c_shipped151 * Philosophy: most people do not define more strings, but they who do
/linux-4.1.27/Documentation/devicetree/bindings/bus/
Dmvebu-mbus.txt56 compatible strings)
/linux-4.1.27/Documentation/blockdev/
Dfloppy.txt33 prompt, the option strings of both places are concatenated, the boot
/linux-4.1.27/kernel/trace/
DKconfig621 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/
DSmack.txt133 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/
Ddcsr.txt6 to change. Some of the compatible strings that contain only generic names
/linux-4.1.27/Documentation/networking/
Dopenvswitch.txt81 them as comma-separated strings, with parentheses indicating arguments
/linux-4.1.27/drivers/isdn/hisax/
DKconfig61 If you like to send special dial strings including * or # without
/linux-4.1.27/arch/sparc/
DKconfig271 Loading this driver allows exact mnemonic strings to be

12