Searched refs:kind (Results 101 - 125 of 281) sorted by relevance

1234567891011>>

/linux-master/drivers/input/mouse/
H A Dlogips2pp.c33 u8 kind; member in struct:ps2pp_info
296 switch (model_info->kind) {
334 if (model_info->kind != PS2PP_KIND_TP3) {
386 if (model_info->kind == PS2PP_KIND_TP3) { /* Touch Pad 3 */
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
H A Dpriv.h42 const u8 *(*kind)(struct nvkm_mmu *, int *count, u8 *invalid); member in struct:nvkm_mmu_func
/linux-master/include/linux/
H A Dif_team.h174 const char *kind; member in struct:team_mode
316 #define MODULE_ALIAS_TEAM_MODE(kind) MODULE_ALIAS("team-mode-" kind)
/linux-master/tools/testing/selftests/drivers/net/lib/py/
H A Denv.py103 kind = self.env["REMOTE_TYPE"]
117 kind = "netns"
120 self.remote = Remote(kind, args, src_path)
/linux-master/drivers/misc/mei/
H A Dmei_dev.h546 * @kind : kind of mei device
645 const char *kind; member in struct:mei_device
909 /* check kind for NULL because it may be not set, like at the fist call to hw_start */
910 return dev->kind && (strcmp(dev->kind, "gsc") == 0);
922 /* check kind for NULL because it may be not set, like at the fist call to hw_start */
923 return dev->kind && (strcmp(dev->kind, "gscfi") == 0);
/linux-master/tools/lib/bpf/
H A Dgen_loader.c530 int kind, ret; local
532 btf_get_kernel_prefix_kind(type, &prefix, &kind);
533 gen->attach_kind = kind;
563 bool is_typeless, bool is_ld64, int kind, int insn_idx)
578 relo->kind = kind;
591 if (kdesc->kind == relo->kind && kdesc->is_ld64 == relo->is_ld64 &&
605 kdesc->kind = relo->kind;
562 bpf_gen__record_extern(struct bpf_gen *gen, const char *name, bool is_weak, bool is_typeless, bool is_ld64, int kind, int insn_idx) argument
[all...]
H A Dlibbpf_internal.h76 #define BTF_INFO_ENC(kind, kind_flag, vlen) \
77 ((!!(kind_flag) << 31) | ((kind) << 24) | ((vlen) & BTF_MAX_VLEN))
243 static inline __u32 btf_type_info(int kind, int vlen, int kflag) argument
245 return (kflag << 31) | (kind << 24) | vlen;
411 const char **prefix, int *kind);
519 __u32 kind);
/linux-master/drivers/hwmon/
H A Dw83627ehf.c383 enum kinds kind; member in struct:w83627ehf_sio_data
1218 enum kinds kind)
1249 switch (kind) {
1297 if (sio_data->kind == w83627uhg) {
1304 if (sio_data->kind == w83667hg || sio_data->kind == w83667hg_b) {
1716 data->name = w83627ehf_device_names[sio_data->kind];
1721 data->in_num = (sio_data->kind == w83627ehf) ? 10 : 9;
1723 switch (sio_data->kind) {
1740 if (sio_data->kind
1217 w83627ehf_init_device(struct w83627ehf_data *data, enum kinds kind) argument
[all...]
H A Df75375s.c86 int kind; member in struct:f75375_data
169 if (data->kind == f75387)
218 if (data->kind == f75387)
319 if (data->kind == f75387 && duty_mode_enabled(data->pwm_enable[nr]))
370 if (data->kind == f75387) {
463 if (data->kind == f75373 && val == 0)
467 if (data->kind == f75387) {
764 if (data->kind == f75387) {
833 data->kind = i2c_match_id(f75375_id, client)->driver_data;
839 if (data->kind !
[all...]
H A Dlm63.c146 enum chips kind; member in struct:lm63_data
277 if (data->kind == lm96163)
938 && (data->kind == lm64 ||
939 (data->kind == lm96163 && (data->config & 0x02))))
1032 if (data->kind == lm64)
1040 switch (data->kind) {
1064 if (data->kind == lm96163) {
1078 if (data->kind == lm63)
1108 data->kind = (uintptr_t)of_device_get_match_data(&client->dev);
1110 data->kind
[all...]
H A Dw83781d.c854 enum chips kind = data->type; local
879 if (kind != w83783s) {
1019 w83781d_create_files(struct device *dev, int kind, int is_isa) argument
1027 if (kind != w83783s) {
1032 if (kind != as99127f && kind != w83781d && kind != w83783s) {
1037 if (kind != w83783s) {
1042 if (kind != w83781d) {
1051 if (kind !
[all...]
/linux-master/net/sched/
H A Dact_api.c483 if (nla_put_string(skb, TCA_ACT_KIND, a->ops->kind))
601 if (nla_put_string(skb, TCA_ACT_KIND, ops->kind))
989 if (act->id == a->id || (strcmp(act->kind, a->kind) == 0)) {
1034 static struct tc_action_ops *tc_lookup_action_n(char *kind) argument
1038 if (kind) {
1041 if (strcmp(kind, a->kind) == 0) {
1053 static struct tc_action_ops *tc_lookup_action(struct nlattr *kind) argument
1057 if (kind) {
1333 struct nlattr *kind; local
1717 struct nlattr *kind; local
2140 struct nlattr *kind; local
2170 struct nlattr *kind = NULL; local
[all...]
H A Dem_meta.c91 return TCF_META_ID(v->hdr.kind);
96 return TCF_META_TYPE(v->hdr.kind);
924 if (TCF_META_TYPE(hdr->left.kind) != TCF_META_TYPE(hdr->right.kind) ||
925 TCF_META_TYPE(hdr->left.kind) > TCF_META_TYPE_MAX ||
926 TCF_META_ID(hdr->left.kind) > TCF_META_ID_MAX ||
927 TCF_META_ID(hdr->right.kind) > TCF_META_ID_MAX)
990 .kind = TCF_EM_META,
/linux-master/tools/bpf/bpftool/
H A Dnet.c44 char kind[64]; member in struct:tc_kind_handle
56 const char *kind; member in struct:bpf_filter_t
413 snprintf(tcinfo->handle_array[tcinfo->used_len].kind,
414 sizeof(tcinfo->handle_array[tcinfo->used_len].kind),
428 return do_filter_dump((struct tcmsg *)msg, tb, filter_info->kind,
476 NET_DUMP_STR("kind", " %s", attach_loc_strings[loc]);
542 filter_info.kind = tcinfo.handle_array[i].kind;
552 filter_info.kind = "root";
559 filter_info.kind
[all...]
/linux-master/include/net/
H A Dact_api.h108 char kind[IFNAMSIZ]; member in struct:tc_action_ops
109 enum tca_id id; /* identifier should match kind */
205 #define MODULE_ALIAS_NET_ACT(kind) MODULE_ALIAS(NET_ACT_ALIAS_PREFIX kind)
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_tcp_hdr_options.c69 return len + 2; /* +1 kind, +1 kind-len */
95 write_opt.exprm.kind = TCPOPT_EXP;
103 write_opt.regular.kind = test_kind;
140 search_opt.exprm.kind = TCPOPT_EXP;
150 search_opt.regular.kind = test_kind;
H A Dsyscall.c27 #define BTF_INFO_ENC(kind, kind_flag, vlen) \
28 ((!!(kind_flag) << 31) | ((kind) << 24) | ((vlen) & BTF_MAX_VLEN))
/linux-master/drivers/net/team/
H A Dteam_mode_activebackup.c120 .kind = "activebackup",
/linux-master/drivers/net/
H A Dnlmon.c93 .kind = "nlmon",
H A Dvsockmon.c101 .kind = "vsockmon",
/linux-master/drivers/net/can/
H A Dvcan.c176 .kind = DRV_NAME,
/linux-master/drivers/media/rc/
H A Dati_remote.c272 unsigned char kind; member in struct:__anon79
545 for (i = 0; ati_remote_tbl[i].kind != KIND_END; i++) {
554 if (index >= 0 && ati_remote_tbl[index].kind == KIND_LITERAL) {
564 } else if (index < 0 || ati_remote_tbl[index].kind == KIND_FILTERED) {
621 } else if (ati_remote_tbl[index].kind == KIND_ACCEL) {
638 dev_dbg(&ati_remote->interface->dev, "ati_remote kind=%d\n",
639 ati_remote_tbl[index].kind);
730 for (i = 0; ati_remote_tbl[i].kind != KIND_END; i++)
731 if (ati_remote_tbl[i].kind == KIND_LITERAL ||
732 ati_remote_tbl[i].kind
[all...]
/linux-master/include/rdma/
H A Duverbs_ioctl.h332 u8 kind; member in struct:uapi_definition
360 .kind = UAPI_DEF_OBJECT_START, \
368 .kind = UAPI_DEF_WRITE, \
379 .kind = UAPI_DEF_WRITE, \
393 .kind = UAPI_DEF_IS_SUPPORTED_DEV_FN, \
408 .kind = UAPI_DEF_IS_SUPPORTED_DEV_FN, \
420 .kind = UAPI_DEF_IS_SUPPORTED_FUNC, \
427 .kind = UAPI_DEF_CHAIN, .chain = _def_var, \
433 .kind = UAPI_DEF_CHAIN_OBJ_TREE, \
/linux-master/drivers/gpu/drm/nouveau/dispnv50/
H A Datom.h72 u8 kind:7; member in struct:nv50_head_atom::__anon891
220 u8 kind:7; member in struct:nv50_wndw_atom::__anon906
/linux-master/tools/testing/selftests/tc-testing/plugin-lib/
H A DnsPlugin.py130 ip.link('add', ifname=dev1, kind='veth', peer={'ifname': dev0, 'net_ns_fd':'/proc/1/ns/net'})
131 ip.link('add', ifname=dummy, kind='dummy')

Completed in 403 milliseconds

1234567891011>>