Home
last modified time | relevance | path

Searched refs:strings (Results 1 – 25 of 405) sorted by relevance

12345678910>>...17

/linux/net/ethtool/
A Dstrset.c38 .strings = tunable_strings,
46 .strings = phy_tunable_strings,
51 .strings = link_mode_names,
61 .strings = wol_mode_names,
71 .strings = ts_tx_type_names,
76 .strings = ts_rx_filter_names,
86 .strings = stats_std_names,
106 .strings = stats_rmon_names,
240 void *strings; in strset_prepare_set() local
259 if (!strings) in strset_prepare_set()
[all …]
/linux/Documentation/usb/
A Dgadget_configfs.rst85 $ mkdir strings/0x409
113 $ mkdir configs/c.1/strings/0x409
173 ./strings
174 ./strings/0x409
175 ./strings/0x409/serialnumber
176 ./strings/0x409/product
177 ./strings/0x409/manufacturer
181 ./configs/c.1/strings
182 ./configs/c.1/strings/0x409
277 $ rmdir strings/<lang>
[all …]
A Dfunctionfs.rst8 strings (the user space program has to provide the same information
17 write descriptors and strings to that file. It does not need
18 to worry about endpoints, interfaces or strings numbers but
20 only one (endpoints and strings numbers starting from one and
25 When descriptors and strings are written "ep#" files appear
/linux/drivers/usb/gadget/legacy/
A Dprinter.c91 static struct usb_string strings [] = { variable
100 .strings = strings,
166 ret = usb_string_ids_tab(cdev, strings); in printer_bind()
170 device_desc.iManufacturer = strings[USB_GADGET_MANUFACTURER_IDX].id; in printer_bind()
171 device_desc.iProduct = strings[USB_GADGET_PRODUCT_IDX].id; in printer_bind()
172 device_desc.iSerialNumber = strings[USB_GADGET_SERIAL_IDX].id; in printer_bind()
216 .strings = dev_strings,
/linux/drivers/net/ethernet/sfc/
A Dethtool_common.c268 if (strings) { in efx_fill_test()
302 u8 *strings, u64 *data) in efx_fill_loopback_test() argument
345 u8 *strings, u64 *data) in efx_ethtool_fill_self_tests() argument
392 strings, data); in efx_ethtool_fill_self_tests()
406 if (strings != NULL) { in efx_describe_per_queue_stats()
412 strings += ETH_GSTRING_LEN; in efx_describe_per_queue_stats()
419 if (strings != NULL) { in efx_describe_per_queue_stats()
422 strings += ETH_GSTRING_LEN; in efx_describe_per_queue_stats()
431 if (strings) { in efx_describe_per_queue_stats()
467 strings += (efx->type->describe_stats(efx, strings) * in efx_ethtool_get_strings()
[all …]
/linux/sound/core/
A Dinfo_oss.c21 static DEFINE_MUTEX(strings);
32 mutex_lock(&strings); in snd_oss_info_register()
42 mutex_unlock(&strings); in snd_oss_info_register()
47 mutex_unlock(&strings); in snd_oss_info_register()
58 mutex_lock(&strings); in snd_sndstat_show_strings()
69 mutex_unlock(&strings); in snd_sndstat_show_strings()
/linux/drivers/net/ethernet/sfc/falcon/
A Dethtool.c220 if (strings) { in ef4_fill_test()
255 u8 *strings, u64 *data) in ef4_fill_loopback_test() argument
298 u8 *strings, u64 *data) in ef4_ethtool_fill_self_tests() argument
313 ef4_fill_test(n++, strings, data, in ef4_ethtool_fill_self_tests()
350 strings, data); in ef4_ethtool_fill_self_tests()
364 if (strings != NULL) { in ef4_describe_per_queue_stats()
370 strings += ETH_GSTRING_LEN; in ef4_describe_per_queue_stats()
377 if (strings != NULL) { in ef4_describe_per_queue_stats()
380 strings += ETH_GSTRING_LEN; in ef4_describe_per_queue_stats()
412 strings += (efx->type->describe_stats(efx, strings) * in ef4_ethtool_get_strings()
[all …]
/linux/Documentation/firmware-guide/acpi/apei/
A Doutput_format.rst15 <section flags strings>
23 <section flags strings># :=
38 <proc error type strings>]
41 <proc flags strings>]
54 <processor error type strings># :=
60 <proc flags strings># :=
139 All <field strings> description with # has the following format::
142 <field strings>
144 Where each string in <fields strings> corresponding to one set bit of
146 strings> description.
/linux/Documentation/devicetree/bindings/leds/backlight/
A Dqcom-wled.yaml101 qcom,num-strings:
103 number of led strings attached.
106 qcom,enabled-strings:
108 Array of the WLED strings numbered from 0 to 3. Each
110 list of strings used by the device. Any combination of
111 led strings can be used.
180 qcom,num-strings:
198 qcom,num-strings:
252 qcom,num-strings = <2>;
253 qcom,enabled-strings = <0 1>;
/linux/drivers/xen/xenbus/
A Dxenbus_xs.c381 for (p = strings, num = 0; p < strings + len; p += strlen(p) + 1) in count_strings()
404 *num = count_strings(strings, len); in split()
409 kfree(strings); in split()
412 memcpy(&ret[*num], strings, len); in split()
413 kfree(strings); in split()
415 strings = (char *)&ret[*num]; in split()
416 for (p = strings, *num = 0; p < strings + len; p += strlen(p) + 1) in split()
425 char *strings, *path; in xenbus_directory() local
434 if (IS_ERR(strings)) in xenbus_directory()
435 return (char **)strings; in xenbus_directory()
[all …]
/linux/tools/lib/traceevent/plugins/
A Dplugin_kvm.c229 struct str_values *strings; member
231 { .isa = 1, .strings = vmx_exit_reasons },
232 { .isa = 2, .strings = svm_exit_reasons },
238 struct str_values *strings = NULL; in find_exit_reason() local
241 for (i = 0; isa_exit_reasons[i].strings; ++i) in find_exit_reason()
243 strings = isa_exit_reasons[i].strings; in find_exit_reason()
246 if (!strings) in find_exit_reason()
248 for (i = 0; strings[i].str; i++) in find_exit_reason()
249 if (strings[i].val == val) in find_exit_reason()
252 return strings[i].str; in find_exit_reason()
/linux/Documentation/ABI/testing/
A Dconfigfs-usb-gadget51 What: /config/usb-gadget/gadget/configs/config/strings
56 strings for this configuration.
58 What: /config/usb-gadget/gadget/configs/config/strings/language
109 - 7: multiple unicode strings
114 What: /config/usb-gadget/gadget/strings
119 strings for this gadget.
121 What: /config/usb-gadget/gadget/strings/language
A Dsysfs-platform-phy-rcar-gen3-usb29 Write the following strings to change the mode:
14 Read the file, then it shows the following strings:
/linux/drivers/net/ethernet/freescale/dpaa/
A Ddpaa_ethtool.c332 u8 *strings; in dpaa_get_strings() local
335 strings = data; in dpaa_get_strings()
343 memcpy(strings, string_cpu, ETH_GSTRING_LEN); in dpaa_get_strings()
344 strings += ETH_GSTRING_LEN; in dpaa_get_strings()
348 memcpy(strings, string_cpu, ETH_GSTRING_LEN); in dpaa_get_strings()
349 strings += ETH_GSTRING_LEN; in dpaa_get_strings()
354 memcpy(strings, string_cpu, ETH_GSTRING_LEN); in dpaa_get_strings()
355 strings += ETH_GSTRING_LEN; in dpaa_get_strings()
358 memcpy(strings, string_cpu, ETH_GSTRING_LEN); in dpaa_get_strings()
359 strings += ETH_GSTRING_LEN; in dpaa_get_strings()
[all …]
/linux/Documentation/pcmcia/
A Ddevicetable.rst10 - product ID strings _and_ hashes of these strings
17 If you want to match product ID strings, you also need to pass the crc32
26 You can determine the hash of the product ID strings by catting the file
/linux/drivers/of/
A Dunittest.c685 const char *strings[4]; in of_unittest_property_string() local
721 rc = of_property_read_string_index(np, "string-property", 0, strings); in of_unittest_property_string()
723 strings[0] = NULL; in of_unittest_property_string()
724 rc = of_property_read_string_index(np, "string-property", 1, strings); in of_unittest_property_string()
732 strings[0] = NULL; in of_unittest_property_string()
735 strings[0] = NULL; in of_unittest_property_string()
740 strings[0] = NULL; in of_unittest_property_string()
743 strings[1] = NULL; in of_unittest_property_string()
756 strings[2] = NULL; in of_unittest_property_string()
759 strings[1] = NULL; in of_unittest_property_string()
[all …]
/linux/Documentation/userspace-api/media/v4l/
A Dext-ctrls-fm-rx.rst36 name strings. Also from RDS specification, PS is usually a single
38 which can scroll strings sized as 8 x N characters. So, this control
47 ``V4L2_CID_RDS_RX_PS_NAME``. The encoding for Radio Text strings is
49 Radio Text strings depends on which RDS Block is being used to
51 also possible to find receivers which can scroll strings sized as 32
/linux/lib/
A 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()
/linux/Documentation/devicetree/bindings/leds/
A Dleds-lm3692x.txt7 LED strings it supports. The LM36922 supports two strings while the LM36923
8 supports three strings.
A Dleds-lm36274.txt4 The backlight boost provides the power to bias four parallel LED strings with
20 - led-sources : Indicates which LED strings will be enabled.
21 Values from 0-3, sources is 0 based so strings will be
A Dleds-lm3532.txt55 - ti,led-mode : Defines if the LED strings are manually controlled or
56 if the LED strings are controlled by the ALS.
57 0x00 - LED strings are I2C controlled via full scale
59 0x01 - LED strings are ALS controlled
/linux/tools/usb/ffs-aio-example/simple/device_app/
A Daio_simple.c126 } __attribute__ ((__packed__)) strings = { variable
129 .length = htole32(sizeof(strings)),
244 if (write(ep0, &strings, sizeof(strings)) < 0) { in main()
/linux/Documentation/devicetree/bindings/sifive/
A Dsifive-blocks-ip-versioning.txt4 strings for open-source SiFive IP blocks. HDL for these IP blocks
9 IP block-specific DT compatible strings are contained within the HDL,
26 match on these IP block-specific compatible strings.
/linux/tools/usb/ffs-aio-example/multibuff/device_app/
A Daio_multibuff.c128 } __attribute__ ((__packed__)) strings = { variable
131 .length = htole32(sizeof(strings)),
273 if (write(ep0, &strings, sizeof(strings)) < 0) { in main()
/linux/Documentation/devicetree/bindings/usb/
A Datmel-usb.txt11 - clock-names: Should contain three strings
38 - clock-names: Should contain two strings
65 - clock-names: Should contain two strings
93 - clock-names: Should contain two strings

Completed in 50 milliseconds

12345678910>>...17