Home
last modified time | relevance | path

Searched refs:name2 (Results 1 – 21 of 21) sorted by relevance

/linux/drivers/of/unittest-data/
H A Dtests-match.dtsi8 a { name2 { device_type = "type1"; }; };
9 b { name2 { }; };
10 c { name2 { device_type = "type2"; }; };
/linux/tools/perf/tests/
H A Dparse-metric.c70 const char *name2, double *ratio2) in __compute_metric() argument
110 if (name2 && ratio2) in __compute_metric()
111 *ratio2 = compute_single(evlist, name2); in __compute_metric()
128 const char *name2, double *ratio2) in compute_metric_group()
130 return __compute_metric(name, vals, name1, ratio1, name2, ratio2); in compute_metric_group()
127 compute_metric_group(const char * name,struct value * vals,const char * name1,double * ratio1,const char * name2,double * ratio2) compute_metric_group() argument
/linux/tools/testing/selftests/bpf/
H A Dtrace_helpers.c583 static int compare_name(const char *name1, const char *name2) in compare_name()
589 res2 = strstr(name2, ".llvm."); in compare_name()
591 len2 = res2 ? res2 - name2 : strlen(name2); in compare_name()
594 return strncmp(name1, name2, len1); in compare_name()
596 return strncmp(name1, name2, len1) <= 0 ? -1 : 1; in compare_name()
597 return strncmp(name1, name2, len2) >= 0 ? 1 : -1; in compare_name()
582 compare_name(const char * name1,const char * name2) compare_name() argument
/linux/include/uapi/linux/netfilter/
H A Dxt_rateest.h26 char name2[IFNAMSIZ]; member
/linux/security/tomoyo/
H A Dfile.c309 &acl->name2);
506 tomoyo_same_name_union(&p1->name2, &p2->name2);
555 !tomoyo_parse_name_union(param, &e.name2)) in tomoyo_update_path2_acl()
562 tomoyo_put_name_union(&e.name2);
H A Dgc.c174 tomoyo_put_name_union(&entry->name2); in tomoyo_del_acl()
H A Dcommon.h744 struct tomoyo_name_union name2; member
H A Dcommon.c1469 tomoyo_print_name_union(head, &ptr->name2); in tomoyo_print_entry()
/linux/fs/notify/fanotify/
H A Dfanotify.c643 const struct qstr *name2 = moved ? &moved->d_name : NULL; in fanotify_alloc_name_event() local
648 unsigned long name2_len = name2 ? name2->len : 0; in fanotify_alloc_name_event()
688 fanotify_info_copy_name2(info, name2); in fanotify_alloc_name_event()
689 *hash ^= full_name_hash((void *)name2_len, name2->name, in fanotify_alloc_name_event()
/linux/include/trace/events/
H A Dafs.h829 const struct qstr *name, const struct qstr *name2),
831 TP_ARGS(call, fid, name, name2),
838 __array(char, name2, 24)
843 unsigned int __len2 = min_t(unsigned int, name2->len, 23);
855 memcpy(__entry->name2, name2->name, __len2);
856 __entry->name2[__len2] = 0;
866 __entry->name2)
/linux/sound/oss/dmasound/
H A Ddmasound_core.c354 strscpy(info.id, dmasound.mach.name2, sizeof(info.id)); in mixer_ioctl()
355 strscpy(info.name, dmasound.mach.name2, sizeof(info.name)); in mixer_ioctl()
1265 DMASOUND_CORE_REVISION, DMASOUND_CORE_EDITION, dmasound.mach.name2, in state_open()
1401 DMASOUND_CORE_REVISION, DMASOUND_CORE_EDITION, dmasound.mach.name2, in dmasound_init()
H A Ddmasound.h108 const char *name2; member
H A Ddmasound_q40.c596 .name2 = "Q40",
H A Ddmasound_atari.c1531 .name2 = "TT",
1560 .name2 = "FALCON",
/linux/tools/testing/selftests/powerpc/ptrace/
H A Dptrace-hwbreak.c438 char *name2 = "PPC_PTRACE_SETHWDEBUG 2, MODE_RANGE, DW UNALIGNED"; in test_multi_sethwdebug_range() local
459 check_success(child_pid, name2, "RO", wp_addr2, len2); in test_multi_sethwdebug_range()
/linux/net/netfilter/ipset/
H A Dip_set_core.c1362 const char *name2; in ip_set_rename() local
1381 name2 = nla_data(attr[IPSET_ATTR_SETNAME2]); in ip_set_rename()
1384 if (s && STRNCMP(s->name, name2)) { in ip_set_rename()
1389 strscpy_pad(set->name, name2, IPSET_MAXNAMELEN); in ip_set_rename()
/linux/sound/soc/
H A Dsoc-core.c1899 #define soc_setup_card_name(card, name, name1, name2) \ argument
1900 __soc_setup_card_name(card, name, sizeof(name), name1, name2)
1903 const char *name1, const char *name2) in __soc_setup_card_name() argument
1905 const char *src = name1 ? name1 : name2; in __soc_setup_card_name()
/linux/drivers/pinctrl/renesas/
H A Dsh_pfc.h175 #define PINMUX_BIAS_REG(name1, r1, name2, r2) \ argument
/linux/Documentation/admin-guide/mm/
H A Dslab.rst37 slab_debug=<Debug-Options>,<slab name1>,<slab name2>,...
/linux/tools/perf/Documentation/
H A Dperf-config.txt61 name2 = value2
/linux/net/ceph/
H A Dosd_client.c1764 const void *name2, size_t name2_len) in compare_names() argument
1768 ret = memcmp(name1, name2, min(name1_len, name2_len)); in compare_names()