Home
last modified time | relevance | path

Searched +full:num +full:- +full:strings (Results 1 – 25 of 93) sorted by relevance

1234

/linux/drivers/xen/xenbus/
H A Dxenbus_xs.c113 xs_suspend_active--; in xs_suspend_exit()
128 req->type = req->msg.type; in xs_request_enter()
138 if (req->type == XS_TRANSACTION_START && !req->user_req) in xs_request_enter()
151 xs_state_users--; in xs_request_exit()
152 if ((req->type == XS_TRANSACTION_START && req->msg.type == XS_ERROR) || in xs_request_exit()
153 (req->type == XS_TRANSACTION_END && !req->user_req && in xs_request_exit()
154 !WARN_ON_ONCE(req->msg.type == XS_ERROR && in xs_request_exit()
155 !strcmp(req->body, "ENOENT")))) in xs_request_exit()
156 xs_state_users--; in xs_request_exit()
168 if (i == ARRAY_SIZE(xsd_errors) - 1) { in get_error()
[all …]
/linux/sound/core/
H A Dinfo_oss.c1 // SPDX-License-Identifier: GPL-2.0-or-later
21 static DEFINE_MUTEX(strings);
24 int snd_oss_info_register(int dev, int num, char *string) in snd_oss_info_register() argument
29 return -ENXIO; in snd_oss_info_register()
30 if (snd_BUG_ON(num < 0 || num >= SNDRV_CARDS)) in snd_oss_info_register()
31 return -ENXIO; in snd_oss_info_register()
32 guard(mutex)(&strings); in snd_oss_info_register()
34 x = snd_sndstat_strings[num][dev]; in snd_oss_info_register()
40 return -ENOMEM; in snd_oss_info_register()
42 snd_sndstat_strings[num][dev] = x; in snd_oss_info_register()
[all …]
/linux/tools/testing/selftests/mm/
H A Dthp_settings.c
H A Dthp_settings.h
/linux/drivers/usb/gadget/function/
H A Df_loopback.c1 // SPDX-License-Identifier: GPL-2.0+
3 * f_loopback.c - USB peripheral loopback configuration driver
5 * Copyright (C) 2003-2008 David Brownell
43 /*-------------------------------------------------------------------------*/
147 /* function-specific strings: */
155 .language = 0x0409, /* en-us */
156 .strings = strings_loopback,
164 /*-------------------------------------------------------------------------*/
168 struct usb_composite_dev *cdev = c->cdev; in loopback_bind()
187 loop->in_ep = usb_ep_autoconfig(cdev->gadget, &fs_loop_source_desc); in loopback_bind()
[all …]
H A Duvc_configfs.c1 // SPDX-License-Identifier: GPL-2.0
20 /* -----------------------------------------------------------------------------
49 return li < ri ? -1 : li == ri ? 0 : 1; in uvcg_config_compare_u32()
60 unsigned int num; in __uvcg_fill_item_entries() local
64 ret = kstrtouint(buf, 0, &num); in __uvcg_fill_item_entries()
68 if (num != (num & GENMASK((size * 8) - 1, 0))) in __uvcg_fill_item_entries()
69 return -ERANGE; in __uvcg_fill_item_entries()
72 memcpy(*values, &num, size); in __uvcg_fill_item_entries()
89 return -EINVAL; in __uvcg_iter_item_entries()
93 return -ENOMEM; in __uvcg_iter_item_entries()
[all …]
H A Df_sourcesink.c1 // SPDX-License-Identifier: GPL-2.0+
3 * f_sourcesink.c - USB peripheral source/sink configuration driver
5 * Copyright (C) 2003-2008 David Brownell
30 * plus two that support control-OUT tests. If the optional "autoresume"
32 * test harness from USB-IF.
59 /*-------------------------------------------------------------------------*/
272 /* function-specific strings: */
280 .language = 0x0409, /* en-us */
281 .strings = strings_sourcesink,
289 /*-------------------------------------------------------------------------*/
[all …]
/linux/drivers/usb/gadget/legacy/
H A Dg_ffs.c1 // SPDX-License-Identifier: GPL-2.0+
3 * g_ffs.c -- user mode file system API for USB composite function controllers
108 .language = 0x0409, /* en-us */
109 .strings = gfs_strings,
117 int num; member
151 .strings = gfs_dev_strings,
193 ret = -ENOMEM; in gfs_init()
201 ret = -ENOMEM; in gfs_init()
209 --i; in gfs_init()
214 ret = ffs_single_dev(opts->dev); in gfs_init()
[all …]
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_global_data.c1 // SPDX-License-Identifier: GPL-2.0
46 /* Relocation tests for strings. */
65 #define test_reloc(map, num, var) \ argument
67 __u32 key = num; \
/linux/drivers/gpio/
H A Dgpio-reg.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * gpio-reg: single register individually fixed-direction GPIOs
19 #include <linux/gpio/gpio-reg.h>
37 return r->direction & BIT(offset) ? GPIO_LINE_DIRECTION_IN : in gpio_reg_get_direction()
46 if (r->direction & BIT(offset)) in gpio_reg_direction_output()
47 return -ENOTSUPP; in gpio_reg_direction_output()
49 gc->set(gc, offset, value); in gpio_reg_direction_output()
57 return r->direction & BIT(offset) ? 0 : -ENOTSUPP; in gpio_reg_direction_input()
66 spin_lock_irqsave(&r->lock, flags); in gpio_reg_set()
67 val = r->out; in gpio_reg_set()
[all …]
/linux/tools/perf/pmu-events/
H A Djevents.py2 # SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
68 def removesuffix(s: str, suffix: str) -> str:
74 return s[0:-len(suffix)] if s.endswith(suffix) else s
78 dirname: str) -> str:
84 return tblname.replace('-', '_')
87 def c_len(s: str) -> in
[all...]
/linux/rust/quote/
H A Dformat.rs1 // SPDX-License-Identifier: Apache-2.0 OR MIT
31 /// unsigned integers and strings.
79 /// Composing raw and non-raw identifiers:
95 /// let num: u32 = 10;
97 /// let decimal = format_ident!("Id_{}", num);
100 /// let octal = format_ident!("Id_{:o}", num);
103 /// let binary = format_ident!("Id_{:b}", num);
106 /// let lower_hex = format_ident!("Id_{:x}", num);
109 /// let upper_hex = format_ident!("Id_{:X}", num);
/linux/include/linux/mmc/
H A Dsdio_func.h1 /* SPDX-License-Identifier: GPL-2.0-or-later */
5 * Copyright 2007-2008 Pierre Ossman
12 #include <linux/device-id/sdio.h>
38 unsigned int num; /* function number */ member
56 unsigned num_info; /* number of info strings */
57 const char **info; /* info strings */
62 #define sdio_func_present(f) ((f)->state & SDIO_STATE_PRESENT)
64 #define sdio_func_set_present(f) ((f)->state |= SDIO_STATE_PRESENT)
66 #define sdio_func_id(f) (dev_name(&(f)->dev))
68 #define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev)
[all …]
/linux/include/linux/
H A Dof.h1 /* SPDX-License-Identifier: GPL-2.0+ */
8 * Copyright (C) 1996-2005 Paul Mackerras.
19 #include <linux/device-id/of.h>
104 * of_node_init - initialize a devicetree node
110 * whether to free the memory will be done by node->release(), which is
116 kobject_init(&node->kobj, &of_node_ktype); in of_node_init()
118 fwnode_init(&node->fwnode, &of_fwnode_ops); in of_node_init()
122 #define of_node_kobj(n) (&(n)->kobj)
131 /* Dummy ref counting routines - to be implemented later */
157 #define OF_BAD_ADDR ((u64)-1)
[all …]
/linux/Documentation/devicetree/bindings/pci/
H A Dhisilicon-histb-pcie.txt6 Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml.
11 - compatible: Should be one of the following strings:
12 "hisilicon,hi3798cv200-pcie"
13 - reg: Should contain sysctl, rc_dbi, config registers location and length.
14 - reg-names: Must include the following entries:
16 "rc-dbi": configuration space of PCIe controller;
18 - bus-range: PCI bus numbers covered.
19 - interrupts: MSI interrupt.
20 - interrupt-names: Must include "msi" entries.
21 - clocks: List of phandle and clock specifier pairs as listed in clock-names
[all …]
/linux/drivers/base/test/
H A Dproperty-entry-test.c1 // SPDX-License-Identifier: GPL-2.0
15 PROPERTY_ENTRY_U8("prop-u8", 8), in pe_test_uints()
16 PROPERTY_ENTRY_U16("prop-u16", 16), in pe_test_uints()
17 PROPERTY_ENTRY_U32("prop-u32", 32), in pe_test_uints()
18 PROPERTY_ENTRY_U64("prop-u64", 64), in pe_test_uints()
32 error = fwnode_property_count_u8(node, "prop-u8"); in pe_test_uints()
35 error = fwnode_property_read_u8(node, "prop-u8", &val_u8); in pe_test_uints()
39 error = fwnode_property_read_u8_array(node, "prop-u8", array_u8, 1); in pe_test_uints()
43 error = fwnode_property_read_u8_array(node, "prop-u8", array_u8, 2); in pe_test_uints()
46 error = fwnode_property_read_u8(node, "no-prop-u8", &val_u8); in pe_test_uints()
[all …]
/linux/Documentation/devicetree/bindings/spi/
H A Domap-spi.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/spi/omap-spi.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Aswath Govindraju <a-govindraju@ti.com>
13 - $ref: spi-controller.yaml#
18 - items:
19 - enum:
20 - ti,am654-mcspi
21 - ti,am4372-mcspi
[all …]
/linux/Documentation/kbuild/
H A Dgendwarfksyms.rst18 ------------
26 sudo pacman --needed -S libelf zlib
30 sudo apt install libelf-dev libdw-dev zlib1g-dev
34 sudo dnf install elfutils-libelf-devel elfutils-devel zlib-devel
38 sudo zypper install libelf-devel libdw-devel zlib-devel
41 -----
46 Usage: gendwarfksyms [options] elf-object-file ... < symbol-list
49 -d, --debug Print debugging information
50 --dump-dies Dump DWARF DIE contents
51 --dump-die-map Print debugging information about die_map changes
[all …]
/linux/Documentation/devicetree/bindings/sound/
H A Dqcom,sm8250.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
19 - items:
20 - enum:
21 - lenovo,yoga-c630-sndcard
22 - qcom,db845c-sndcard
23 - const: qcom,sdm845-sndcard
24 - items:
[all …]
/linux/kernel/trace/
H A Dtrace_events_inject.c1 // SPDX-License-Identifier: GPL-2.0
3 * trace_events_inject - trace event injection
53 len = i - s; in parse_field()
55 return -EINVAL; in parse_field()
59 return -ENOMEM; in parse_field()
63 return -ENOENT; in parse_field()
69 return -EINVAL; in parse_field()
74 if (isdigit(str[i]) || str[i] == '-') { in parse_field()
75 char *num, c; in parse_field() local
80 return -EINVAL; in parse_field()
[all …]
H A Dtrace_syscalls.c1 // SPDX-License-Identifier: GPL-2.0
28 struct syscall_metadata *entry = call->data; in syscall_get_enter_fields()
30 return &entry->enter_fields; in syscall_get_enter_fields()
72 return -1; in trace_get_syscall_nr()
100 if ((*start)->name && arch_syscall_match_sym_name(str, (*start)->name)) in find_syscall_meta()
125 return entry->name; in get_syscall_name()
128 /* Added to user strings or arrays when max limit is reached */
140 ptr = (void *)trace->args + sizeof(long) * entry->nb_args + offset; in get_dynamic_len_ptr()
180 trace_seq_printf(s, "%s(", entry->name); in sys_enter_openat_print()
182 for (int i = 0; !done && i < entry->nb_args; i++) { in sys_enter_openat_print()
[all …]
/linux/tools/perf/util/
H A Dhwmon_pmu.c1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
25 /** Strings that correspond to enum hwmon_type. */
41 /** Strings that correspond to enum hwmon_item. */
111 * struct hwmon_pmu_event_value: Value in hwmon_pmu->events.
129 return pmu && pmu->type >= PERF_PMU_TYPE_HWMON_START && in perf_pmu__is_hwmon()
130 pmu->typ in perf_pmu__is_hwmon()
[all...]
/linux/sound/soc/
H A Dsoc-core.c1 // SPDX-License-Identifier: GPL-2.0+
3 // soc-core.c -- ALSA SoC Audio Layer
11 // with code, comments and ideas from :-
40 #include <sound/soc-dpcm.h>
41 #include <sound/soc-topology.h>
42 #include <sound/soc-link.h>
76 return sysfs_emit(buf, "%ld\n", rtd->pmdown_time); in pmdown_time_show()
86 ret = kstrtol(buf, 10, &rtd->pmdown_time); in pmdown_time_store()
110 return attr->mode; /* always visible */ in soc_dev_attr_is_visible()
111 return rtd->dai_link->num_codecs ? attr->mode : 0; /* enabled only with codec */ in soc_dev_attr_is_visible()
[all …]
/linux/security/apparmor/include/
H A Dpolicy.h1 /* SPDX-License-Identifier: GPL-2.0-only */
7 * Copyright (C) 1998-2008 Novell/SUSE
8 * Copyright 2009-2010 Canonical Ltd.
42 ((_profile)->mode == (_mode)))
50 #define PROFILE_IS_HAT(_profile) ((_profile)->label.flags & FLAG_HAT)
52 #define CHECK_DEBUG1(_profile) ((_profile)->label.flags & FLAG_DEBUG1)
54 #define CHECK_DEBUG2(_profile) ((_profile)->label.flags & FLAG_DEBUG2)
56 #define profile_is_stale(_profile) (label_is_stale(&(_profile)->label))
58 #define on_list_rcu(X) (!list_empty(X) && (X)->prev != LIST_POISON2)
83 u32 count; /* number of strings per entry */
[all …]
/linux/tools/lib/bpf/
H A Dbtf_relocate.c1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
25 #define qsort(base, num, sz, cmp) sort(base, num, sz, cmp, NULL) argument
55 #define BTF_IS_EMBEDDED ((__u32)-1)
68 struct btf_type *t = btf_type_by_id(r->btf, i); in btf_relocate_rewrite_type_id()
78 *id = r->id_map[*id]; in btf_relocate_rewrite_type_id()
83 * types are named. If strings match, and size is non-zero for both elements
90 int name_diff = strcmp(ni1->name, ni2->name); in cmp_btf_name_size()
92 if (!name_diff && ni1->needs_size && ni2->needs_size) in cmp_btf_name_size()
93 return ni2->size - ni1->size; in cmp_btf_name_size()
107 int high = nelems - 1; in search_btf_name_size()
[all …]

1234