Home
last modified time | relevance | path

Searched refs:name (Results 2176 - 2200 of 63980) sorted by relevance

1...<<81828384858687888990>>...2560

/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtw88/
H A Dphy.h81 #define RTW_DECL_TABLE_PHY_COND_CORE(name, cfg, path) \
82 const struct rtw_table name ## _tbl = { \
83 .data = name, \
84 .size = ARRAY_SIZE(name), \
90 #define RTW_DECL_TABLE_PHY_COND(name, cfg) \
91 RTW_DECL_TABLE_PHY_COND_CORE(name, cfg, 0)
93 #define RTW_DECL_TABLE_RF_RADIO(name, path) \
94 RTW_DECL_TABLE_PHY_COND_CORE(name, rtw_phy_cfg_rf, RF_PATH_ ## path)
96 #define RTW_DECL_TABLE_BB_PG(name) \
97 const struct rtw_table name ## _tb
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/ralink/rt2x00/
H A Drt2x00leds.c93 const char *name) in rt2x00leds_register_led()
98 led->led_dev.name = name; in rt2x00leds_register_led()
114 char name[36]; in rt2x00leds_register() local
121 snprintf(name, sizeof(name), "%s-%s::radio", in rt2x00leds_register()
122 rt2x00dev->ops->name, phy_name); in rt2x00leds_register()
126 name); in rt2x00leds_register()
132 snprintf(name, sizeof(name), " in rt2x00leds_register()
91 rt2x00leds_register_led(struct rt2x00_dev *rt2x00dev, struct rt2x00_led *led, const char *name) rt2x00leds_register_led() argument
[all...]
/kernel/linux/linux-5.10/drivers/of/
H A Dpdt.c44 const char *name; in of_pdt_build_full_name() local
50 name = kbasename(path); in of_pdt_build_full_name()
51 buf = prom_early_alloc(strlen(name) + 1); in of_pdt_build_full_name()
52 strcpy(buf, name); in of_pdt_build_full_name()
56 name = of_get_property(dp, "name", &len); in of_pdt_build_full_name()
58 sprintf(buf, "%s@unknown%i", name, failsafe_id++); in of_pdt_build_full_name()
83 p->name = (char *) (p + 1); in of_pdt_build_one_prop()
85 strcpy(p->name, special_name); in of_pdt_build_one_prop()
90 err = of_pdt_prom_ops->nextprop(node, prev, p->name); in of_pdt_build_one_prop()
130 of_pdt_get_one_property(phandle node, const char *name) of_pdt_get_one_property() argument
[all...]
/kernel/linux/linux-5.10/security/integrity/evm/
H A Devm_secfs.c143 size += strlen(xattr->name) + 1; in evm_read_xattrs()
152 sprintf(temp + offset, "%s\n", xattr->name); in evm_read_xattrs()
153 offset += strlen(xattr->name) + 1; in evm_read_xattrs()
202 xattr->name = memdup_user_nul(buf, count); in evm_write_xattrs()
203 if (IS_ERR(xattr->name)) { in evm_write_xattrs()
204 err = PTR_ERR(xattr->name); in evm_write_xattrs()
205 xattr->name = NULL; in evm_write_xattrs()
210 len = strlen(xattr->name); in evm_write_xattrs()
211 if (len && xattr->name[len-1] == '\n') in evm_write_xattrs()
212 xattr->name[le in evm_write_xattrs()
[all...]
/kernel/linux/linux-5.10/sound/aoa/core/
H A Dgpio-pmf.c13 #define PMF_GPIO(name, bit) \
14 static void pmf_gpio_set_##name(struct gpio_runtime *rt, int on)\
20 rc = pmf_call_function(rt->node, #name "-mute", &args); \
22 printk(KERN_WARNING "pmf_gpio_set_" #name \
27 static int pmf_gpio_get_##name(struct gpio_runtime *rt) \
137 char *name; in pmf_set_notify() local
143 name = "headphone-detect"; in pmf_set_notify()
147 name = "linein-detect"; in pmf_set_notify()
151 name = "lineout-detect"; in pmf_set_notify()
189 name, in pmf_set_notify()
211 char *name; pmf_get_detect() local
[all...]
/kernel/linux/linux-5.10/include/sound/
H A Dsimple_card_utils.h20 const char *name; member
140 char *name, in asoc_simple_debug_dai()
149 if (dai->name) in asoc_simple_debug_dai()
150 dev_dbg(dev, "%s dai name = %s\n", in asoc_simple_debug_dai()
151 name, dai->name); in asoc_simple_debug_dai()
154 name, dai->sysclk); in asoc_simple_debug_dai()
157 name, dai->clk_direction ? "OUT" : "IN"); in asoc_simple_debug_dai()
160 dev_dbg(dev, "%s slots = %d\n", name, dai->slots); in asoc_simple_debug_dai()
162 dev_dbg(dev, "%s slot width = %d\n", name, da in asoc_simple_debug_dai()
139 asoc_simple_debug_dai(struct asoc_simple_priv *priv, char *name, struct asoc_simple_dai *dai) asoc_simple_debug_dai() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_resource.c31 * @mutex.key: NFP CPP Lock, posix_crc32(name, 8)
33 * @region.name: ASCII, zero padded name
47 u8 name[NFP_RESOURCE_ENTRY_NAME_SZ]; member
62 char name[NFP_RESOURCE_ENTRY_NAME_SZ + 1]; member
78 if (!strcmp(res->name, NFP_RESOURCE_TBL_NAME)) { in nfp_cpp_resource_find()
82 key = crc32_posix(res->name, NFP_RESOURCE_ENTRY_NAME_SZ); in nfp_cpp_resource_find()
143 * @name: Name of the resource
150 nfp_resource_acquire(struct nfp_cpp *cpp, const char *name) in nfp_resource_acquire() argument
162 strncpy(res->name, nam in nfp_resource_acquire()
231 nfp_resource_wait(struct nfp_cpp *cpp, const char *name, unsigned int secs) nfp_resource_wait() argument
[all...]
/kernel/linux/linux-6.6/include/linux/surface_aggregator/
H A Ddevice.h434 * @name: Name of the generated function.
446 * The generated function is defined as ``static int name(struct ssam_device
455 #define SSAM_DEFINE_SYNC_REQUEST_CL_N(name, spec...) \
456 SSAM_DEFINE_SYNC_REQUEST_MD_N(__raw_##name, spec) \
457 static int name(struct ssam_device *sdev) \
459 return __raw_##name(sdev->ctrl, sdev->uid.target, \
466 * @name: Name of the generated function.
479 * The generated function is defined as ``static int name(struct ssam_device
489 #define SSAM_DEFINE_SYNC_REQUEST_CL_W(name, atype, spec...) \
490 SSAM_DEFINE_SYNC_REQUEST_MD_W(__raw_##name, atyp
[all...]
/kernel/linux/linux-6.6/include/trace/events/
H A Dbridge.h21 __string(dev, dev->name)
28 __assign_str(dev, dev->name);
50 __string(br_dev, br->dev->name)
51 __string(dev, p ? p->dev->name : "null")
57 __assign_str(br_dev, br->dev->name);
58 __assign_str(dev, p ? p->dev->name : "null");
76 __string(br_dev, br->dev->name)
77 __string(dev, f->dst ? f->dst->dev->name : "null")
83 __assign_str(br_dev, br->dev->name);
84 __assign_str(dev, f->dst ? f->dst->dev->name
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtw88/
H A Dphy.h86 #define RTW_DECL_TABLE_PHY_COND_CORE(name, cfg, path) \
87 const struct rtw_table name ## _tbl = { \
88 .data = name, \
89 .size = ARRAY_SIZE(name), \
95 #define RTW_DECL_TABLE_PHY_COND(name, cfg) \
96 RTW_DECL_TABLE_PHY_COND_CORE(name, cfg, 0)
98 #define RTW_DECL_TABLE_RF_RADIO(name, path) \
99 RTW_DECL_TABLE_PHY_COND_CORE(name, rtw_phy_cfg_rf, RF_PATH_ ## path)
101 #define RTW_DECL_TABLE_BB_PG(name) \
102 const struct rtw_table name ## _tb
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/ralink/rt2x00/
H A Drt2x00leds.c93 const char *name) in rt2x00leds_register_led()
98 led->led_dev.name = name; in rt2x00leds_register_led()
114 char name[36]; in rt2x00leds_register() local
121 snprintf(name, sizeof(name), "%s-%s::radio", in rt2x00leds_register()
122 rt2x00dev->ops->name, phy_name); in rt2x00leds_register()
126 name); in rt2x00leds_register()
132 snprintf(name, sizeof(name), " in rt2x00leds_register()
91 rt2x00leds_register_led(struct rt2x00_dev *rt2x00dev, struct rt2x00_led *led, const char *name) rt2x00leds_register_led() argument
[all...]
/kernel/linux/linux-6.6/drivers/of/
H A Dpdt.c44 const char *name; in of_pdt_build_full_name() local
50 name = kbasename(path); in of_pdt_build_full_name()
51 buf = prom_early_alloc(strlen(name) + 1); in of_pdt_build_full_name()
52 strcpy(buf, name); in of_pdt_build_full_name()
56 name = of_get_property(dp, "name", &len); in of_pdt_build_full_name()
58 sprintf(buf, "%s@unknown%i", name, failsafe_id++); in of_pdt_build_full_name()
83 p->name = (char *) (p + 1); in of_pdt_build_one_prop()
85 strcpy(p->name, special_name); in of_pdt_build_one_prop()
90 err = of_pdt_prom_ops->nextprop(node, prev, p->name); in of_pdt_build_one_prop()
130 of_pdt_get_one_property(phandle node, const char *name) of_pdt_get_one_property() argument
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/msm/disp/dpu1/catalog/
H A Ddpu_6_2_sc7180.h21 .name = "top_0",
34 .name = "ctl_0", .id = CTL_0,
39 .name = "ctl_1", .id = CTL_1,
44 .name = "ctl_2", .id = CTL_2,
53 .name = "sspp_0", .id = SSPP_VIG0,
61 .name = "sspp_8", .id = SSPP_DMA0,
69 .name = "sspp_9", .id = SSPP_DMA1,
77 .name = "sspp_10", .id = SSPP_DMA2,
89 .name = "lm_0", .id = LM_0,
97 .name
[all...]
/kernel/linux/linux-6.6/sound/aoa/core/
H A Dgpio-pmf.c13 #define PMF_GPIO(name, bit) \
14 static void pmf_gpio_set_##name(struct gpio_runtime *rt, int on)\
20 rc = pmf_call_function(rt->node, #name "-mute", &args); \
22 printk(KERN_WARNING "pmf_gpio_set_" #name \
27 static int pmf_gpio_get_##name(struct gpio_runtime *rt) \
137 char *name; in pmf_set_notify() local
143 name = "headphone-detect"; in pmf_set_notify()
147 name = "linein-detect"; in pmf_set_notify()
151 name = "lineout-detect"; in pmf_set_notify()
189 name, in pmf_set_notify()
211 char *name; pmf_get_detect() local
[all...]
/kernel/linux/linux-6.6/security/integrity/evm/
H A Devm_secfs.c146 size += strlen(xattr->name) + 1; in evm_read_xattrs()
159 sprintf(temp + offset, "%s\n", xattr->name); in evm_read_xattrs()
160 offset += strlen(xattr->name) + 1; in evm_read_xattrs()
210 xattr->name = memdup_user_nul(buf, count); in evm_write_xattrs()
211 if (IS_ERR(xattr->name)) { in evm_write_xattrs()
212 err = PTR_ERR(xattr->name); in evm_write_xattrs()
213 xattr->name = NULL; in evm_write_xattrs()
218 len = strlen(xattr->name); in evm_write_xattrs()
219 if (len && xattr->name[len-1] == '\n') in evm_write_xattrs()
220 xattr->name[le in evm_write_xattrs()
[all...]
/test/testfwk/developer_test/src/core/build/
H A Dpretreat_targets.py57 name = line.split(':')[1].split('(')[0]
59 name_list.append(name)
64 for name, path in zip(name_list, path_list):
65 if name.endswith("JsTest"):
66 if self._pretreat_js_target(path, name):
68 self.name_list.append(name)
69 LOG.info("js test %s pretreat success" % name)
71 def _pretreat_js_target(self, path, name):
94 template_args = {'output_path': output_path, 'suite_name': name}
120 line = line.replace("TargetName", name)
[all...]
/third_party/ffmpeg/libavcodec/
H A Dexif.c34 char name[EXIF_TAG_NAME_LENGTH]; member
165 return tag_list[i].name; in exif_get_tag_name()
173 const char *name, const char *sep, in exif_add_metadata()
181 name, count); in exif_add_metadata()
183 case TIFF_DOUBLE : return ff_tadd_doubles_metadata(count, name, sep, gb, le, metadata); in exif_add_metadata()
184 case TIFF_SSHORT : return ff_tadd_shorts_metadata(count, name, sep, gb, le, 1, metadata); in exif_add_metadata()
185 case TIFF_SHORT : return ff_tadd_shorts_metadata(count, name, sep, gb, le, 0, metadata); in exif_add_metadata()
186 case TIFF_SBYTE : return ff_tadd_bytes_metadata(count, name, sep, gb, le, 1, metadata); in exif_add_metadata()
188 case TIFF_UNDEFINED: return ff_tadd_bytes_metadata(count, name, sep, gb, le, 0, metadata); in exif_add_metadata()
189 case TIFF_STRING : return ff_tadd_string_metadata(count, name, g in exif_add_metadata()
172 exif_add_metadata(void *logctx, int count, int type, const char *name, const char *sep, GetByteContext *gb, int le, AVDictionary **metadata) exif_add_metadata() argument
225 const char *name = exif_get_tag_name(id); exif_decode_tag() local
[all...]
/third_party/toybox/
H A Dmain.c12 #define NEWTOY(name, opts, flags) {#name, name##_main, OPTSTR_##name, flags},
13 #define OLDTOY(name, oldname, flags) \
14 {#name, oldname##_main, OPTSTR_##oldname, flags},
26 struct toy_list *toy_find(char *name) in toy_find() argument
30 if (!CFG_TOYBOX || strchr(name, '/')) return 0; in toy_find()
32 // If the name starts with "toybox" accept that as a match. Otherwise in toy_find()
35 if (!strncmp(name, "toybo in toy_find()
66 unknown(char *name) unknown() argument
[all...]
/third_party/toybox/porting/liteos_a/
H A Dmain.c13 #define NEWTOY(name, opts, flags) {#name, name##_main, OPTSTR_##name, flags},
14 #define OLDTOY(name, oldname, flags) \
15 {#name, oldname##_main, OPTSTR_##oldname, flags},
27 struct toy_list *toy_find(char *name) in toy_find() argument
31 if (!CFG_TOYBOX || strchr(name, '/')) return 0; in toy_find()
33 // If the name starts with "toybox" accept that as a match. Otherwise in toy_find()
36 if (!strncmp(name, "toybo in toy_find()
67 unknown(char *name) unknown() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DmappedTypes2.js38 name: string;
45 name?: string;
52 readonly name: string;
59 assign(s1, { name: "circle" });
76 const x = pick(shape, "name", "location"); // { name: string, location: Point }
86 let name = p.name.get();
91 let name = shape.name; // strin
[all...]
H A Des6ClassTest2.js3 constructor(public name: string, public health: number) {
21 constructor(public name: string, private _health: number) {
51 constructor(name: string);
52 constructor(public name: string, public health?: number) {
73 roar(name: string, ...args: number[]) { }
80 name: string;
178 function BasicMonster(name, health) {
179 this.name = name;
194 function GetSetMonster(name, _healt
[all...]
/third_party/protobuf/src/google/protobuf/util/internal/
H A Djson_objectwriter.h15 // * Neither the name of Google Inc. nor the names of its
60 // ->RenderString("name", "value")
72 // "name": "value",
82 // For example, passing an empty name when one would be required won't result
116 JsonObjectWriter* StartObject(StringPiece name) override;
118 JsonObjectWriter* StartList(StringPiece name) override;
120 JsonObjectWriter* RenderBool(StringPiece name, bool value) override;
121 JsonObjectWriter* RenderInt32(StringPiece name, int32 value) override;
122 JsonObjectWriter* RenderUint32(StringPiece name, uint32 value) override;
123 JsonObjectWriter* RenderInt64(StringPiece name, int6
188 RenderSimple(StringPiece name, StringPiece value) RenderSimple() argument
[all...]
/third_party/rust/crates/regex/tests/
H A Dmacros.rs13 ($name:ident, $re:expr, $text:expr, $ismatch:expr) => {
15 fn $name() {
23 ($name:ident, $re:expr, $text:expr, $($loc:tt)+) => (
25 fn $name() {
56 ($name:ident, $re:expr, $text:expr) => (
58 fn $name() {
82 ($name:ident, $re:expr, $text:expr, $($loc:tt)+) => (
84 fn $name() {
111 ($name:ident, $res:expr, $text:expr, $($match_index:expr),*) => {
113 fn $name() {
[all...]
/foundation/ability/idl_tool/test/unittest/cpp_code_emitter_test/
H A Dcpp_code_emitter_test.cpp57 * @tc.name: EmitInterfaceStdlibInclusions_test_001
110 * @tc.name: FileName_test_001
140 * @tc.name: MacroName_test_001
162 * @tc.name: EmitWriteVariable_test_001
174 const std::string name("Name"); in HWTEST_F()
183 codeEmitter.EmitWriteVariable(parcelName, name, &mt, sb, prefix); in HWTEST_F()
188 * @tc.name: EmitWriteVariable_test_002
200 const std::string name("Name"); in HWTEST_F()
208 codeEmitter.EmitWriteVariable(parcelName, name, &mt, sb, prefix); in HWTEST_F()
213 * @tc.name
1120 char name = 'n'; HWTEST_F() local
1256 char name = 'n'; HWTEST_F() local
1320 std::string name = "name"; HWTEST_F() local
1368 std::string name = "name"; HWTEST_F() local
[all...]
/third_party/libfuse/test/
H A Dtest_examples.py44 def invoke_directly(mnt_dir, name, options):
45 cmdline = base_cmdline + [ pjoin(basename, 'example', name),
47 if name == 'hello_ll':
53 def invoke_mount_fuse(mnt_dir, name, options):
55 name, mnt_dir, '-o', ','.join(options) ]
57 def invoke_mount_fuse_drop_privileges(mnt_dir, name, options):
61 return invoke_mount_fuse(mnt_dir, name, options + ('drop_privileges',))
89 @pytest.mark.parametrize("name", ('hello', 'hello_ll'))
90 def test_hello(tmpdir, name, options, cmdline_builder, output_checker):
93 cmdline_builder(mnt_dir, name, option
[all...]

Completed in 14 milliseconds

1...<<81828384858687888990>>...2560