| /OK3568_Linux_fs/kernel/kernel/bpf/ |
| H A D | btf.c | 343 void (*showfn)(struct btf_show *show, const char *fmt, va_list args); 383 void (*show)(const struct btf *btf, const struct btf_type *t, member 385 struct btf_show *show); 767 static const char *btf_show_name(struct btf_show *show) in btf_show_name() argument 776 const struct btf_member *m = show->state.member; in btf_show_name() 777 const struct btf_type *t = show->state.type; in btf_show_name() 779 u32 id = show->state.type_id; in btf_show_name() 785 show->state.name[0] = '\0'; in btf_show_name() 792 if (show->state.array_member) in btf_show_name() 797 member = btf_name_by_offset(show->btf, m->name_off); in btf_show_name() [all …]
|
| /OK3568_Linux_fs/u-boot/doc/ |
| H A D | README.t1040-l2switch | 27 - enable/disable a port or show its configuration (speed, duplexity, status, etc.) 37 ethsw [port <port_no>] { enable | disable | show } - enable/disable a port; show a port's configura… 38 ethsw [port <port_no>] statistics { [help] | [clear] } - show an l2 switch port's statistics 39 ethsw [port <port_no>] learning { [help] | show | auto | disable } - enable/disable/show learning c… 40 …ort_no>] [vlan <vid>] fdb { [help] | show | flush | { add | del } <mac> } - add/delete a mac entry… 42 ethsw [port <port_no>] pvid { [help] | show | <pvid> } - set/show PVID (ingress and egress VLAN tag… 43 ethsw [port <port_no>] vlan { [help] | show | add <vid> | del <vid> } - add a VLAN to a port (VLAN … 44 ethsw [port <port_no>] untagged { [help] | show | all | none | pvid } - set egress tagging mode for… 45 ethsw [port <port_no>] egress tag { [help] | show | pvid | classified } - configure VID source for … 47 ethsw vlan fdb { [help] | show | shared | private } - make VLAN learning shared or private [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/net/forwarding/ |
| H A D | devlink_lib.sh | 8 DEVLINK_DEV=$(devlink port show "${NETIFS[p1]:-$NETIF_NO_CABLE}" -j \ 76 devlink -j resource show "$DEVLINK_DEV" | jq "$resource_name" 113 still_pending=$(devlink resource show "$DEVLINK_DEV" | \ 131 devlink sb port pool show $port pool $pool -j \ 171 devlink sb pool show "$DEVLINK_DEV" pool $pool -j \ 212 devlink sb tc bind show $port tc $tc type $dir -j \ 267 devlink -j trap show $DEVLINK_DEV trap $trap_name \ 285 devlink -j trap show $DEVLINK_DEV trap $trap_name \ 291 devlink -j trap show $DEVLINK_DEV trap $trap_name \ 300 devlink -jv trap show $DEVLINK_DEV trap $trap_name \ [all …]
|
| H A D | lib.sh | 124 ip link show dev ${NETIFS[p$i]} &> /dev/null 153 ip link show dev ${NETIFS[p$i]} &> /dev/null 327 ip link show dev $dev up \ 604 ip -j link show dev $if_name | jq -r '.[]["master"]' 613 ip -j -s link show dev $if_name \ 634 tc -j -s filter show dev $dev ${dir:-ingress} pref $pref \ 644 tc -j -s filter show $id \ 663 tc -j -s qdisc show dev "$dev" \ 673 tc -j -s qdisc show dev "$dev" invisible \ 713 ip -j link show dev $if_name | jq -r '.[]["address"]' [all …]
|
| /OK3568_Linux_fs/kernel/security/integrity/ima/ |
| H A D | ima_template_lib.c | 64 enum ima_show_type show, in ima_show_template_data_ascii() argument 96 enum ima_show_type show, in ima_show_template_data_binary() argument 100 u32 len = (show == IMA_SHOW_BINARY_OLD_STRING_FMT) ? in ima_show_template_data_binary() 103 if (show != IMA_SHOW_BINARY_NO_FIELD_LEN) { in ima_show_template_data_binary() 116 enum ima_show_type show, in ima_show_template_field_data() argument 120 switch (show) { in ima_show_template_field_data() 122 ima_show_template_data_ascii(m, show, datafmt, field_data); in ima_show_template_field_data() 127 ima_show_template_data_binary(m, show, datafmt, field_data); in ima_show_template_field_data() 134 void ima_show_template_digest(struct seq_file *m, enum ima_show_type show, in ima_show_template_digest() argument 137 ima_show_template_field_data(m, show, DATA_FMT_DIGEST, field_data); in ima_show_template_digest() [all …]
|
| H A D | ima_template_lib.h | 20 void ima_show_template_digest(struct seq_file *m, enum ima_show_type show, 22 void ima_show_template_digest_ng(struct seq_file *m, enum ima_show_type show, 24 void ima_show_template_string(struct seq_file *m, enum ima_show_type show, 26 void ima_show_template_sig(struct seq_file *m, enum ima_show_type show, 28 void ima_show_template_buf(struct seq_file *m, enum ima_show_type show,
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/dool/dool/ |
| H A D | 0001-Fix-rename-in-docs.patch | 70 - show profiling statistics when exiting dstat 71 + show profiling statistics when exiting dool 88 - show dstat cputime consumption and latency 90 + show dool cputime consumption and latency 93 - show dstat advanced cpu usage 95 + show dool advanced cpu usage 98 - show dstat context switches 100 + show dool context switches 103 - show dstat advanced memory usage 105 + show dool advanced memory usage [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/translations/zh_CN/filesystems/ |
| H A D | sysfs.txt | 105 ssize_t (*show)(struct device *dev, struct device_attribute *attr, 129 .show = show_foo, 142 ssize_t (*show)(struct kobject *, struct attribute *, char *); 166 if (dev_attr->show) 167 ret = dev_attr->show(dev, dev_attr, buf); 170 dev_attr->show); 180 在声明属性时,必须指定 show() 或 store() 方法,以实现属性的 183 ssize_t (*show)(struct device *dev, struct device_attribute *attr, char *buf); 193 - 在读方面(read(2)),show() 方法应该填充整个缓冲区。回想属性 198 向后搜索到零或使用‘0’偏移执行一个pread(2)操作,show()方法将 [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/drivers/net/mlxsw/ |
| H A D | vxlan.sh | 475 bridge fdb show brport vxlan0 491 de:ad:be:ef:13:37 self bridge fdb show brport vxlan0 494 de:ad:be:ef:13:37 self -v bridge fdb show brport vxlan0 505 de:ad:be:ef:13:37 self bridge fdb show brport vxlan0 516 de:ad:be:ef:13:37 self bridge fdb show brport vxlan0 519 de:ad:be:ef:13:37 self -v bridge fdb show brport vxlan0 530 de:ad:be:ef:13:37 self -v bridge fdb show brport vxlan0 541 de:ad:be:ef:13:37 self bridge fdb show brport vxlan0 544 de:ad:be:ef:13:37 self -v bridge fdb show brport vxlan0 563 ip route show table local 198.51.100.1 [all …]
|
| /OK3568_Linux_fs/kernel/drivers/cpuidle/ |
| H A D | sysfs.c | 140 ssize_t (*show)(struct cpuidle_device *, char *); member 167 if (cattr->show) { in cpuidle_show() 169 ret = cattr->show(dev, buf); in cpuidle_show() 191 .show = cpuidle_show, 210 ssize_t (*show)(struct cpuidle_state *, \ member 216 #define define_one_state_ro(_name, show) \ argument 217 static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0444, show, NULL) 219 #define define_one_state_rw(_name, show, store) \ argument 220 static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0644, show, store) 359 #define define_one_state_s2idle_ro(_name, show) \ argument [all …]
|
| /OK3568_Linux_fs/buildroot/package/libusbgx/ |
| H A D | 0001-Add-include-of-sys-sysmacro.h.patch | 19 examples/show-gadgets.c | 1 + 20 examples/show-udcs.c | 1 + 60 diff --git a/examples/show-gadgets.c b/examples/show-gadgets.c 62 --- a/examples/show-gadgets.c 63 +++ b/examples/show-gadgets.c 72 diff --git a/examples/show-udcs.c b/examples/show-udcs.c 74 --- a/examples/show-udcs.c 75 +++ b/examples/show-udcs.c
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/wireguard/ |
| H A D | netns.sh | 159 [[ $(ip1 link show dev wg0) =~ mtu\ ([0-9]+) ]] && orig_mtu="${BASH_REMATCH[1]}" 167 { read _; read _; read _; read rx_bytes _; read _; read tx_bytes _; } < <(ip2 -stats link show dev … 169 { read _; read _; read _; read rx_bytes _; read _; read tx_bytes _; } < <(ip1 -stats link show dev … 171 read _ rx_bytes tx_bytes < <(n2 wg show wg0 transfer) 173 read _ rx_bytes tx_bytes < <(n1 wg show wg0 transfer) 175 read _ timestamp < <(n1 wg show wg0 latest-handshakes) 216 [[ $(n2 wg show wg0 endpoints) == "$pub1 127.212.121.99:9999" ]] 222 [[ $(n2 wg show wg0 endpoints) == "$pub1 [::1]:9998" ]] 242 [[ $(n1 wg show wg0 endpoints) == "$pub2 [::1]:9997" ]] 279 read _ _ tx_bytes_before < <(n0 wg show wg1 transfer) [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/ssv6xxx/script/ |
| H A D | check_con_ap.sh | 17 ./cli hci rxq show 26 ./cli hci rxq show 32 ./cli hci rxq show 41 ./cli hci rxq show 48 ./cli hci rxq show
|
| /OK3568_Linux_fs/kernel/drivers/hwmon/ |
| H A D | gl518sm.c | 226 #define show(type, suffix, value) \ macro 234 show(TEMP, temp_input1, temp_in); 235 show(TEMP, temp_max1, temp_max); 236 show(TEMP, temp_hyst1, temp_hyst); 237 show(BOOL, fan_auto1, fan_auto1); 238 show(VDD, in_input0, voltage_in[0]); 239 show(IN, in_input1, voltage_in[1]); 240 show(IN, in_input2, voltage_in[2]); 241 show(IN, in_input3, voltage_in[3]); 242 show(VDD, in_min0, voltage_min[0]); [all …]
|
| /OK3568_Linux_fs/kernel/drivers/scsi/ |
| H A D | iscsi_boot_sysfs.c | 26 ssize_t (*show) (void *data, int type, char *buf); member 45 if (boot_kobj->show) in iscsi_boot_show_attribute() 46 ret = boot_kobj->show(boot_kobj->data, boot_attr->type, str); in iscsi_boot_show_attribute() 51 .show = iscsi_boot_show_attribute, 341 ssize_t (*show) (void *data, int type, char *buf), in iscsi_boot_create_kobj() 359 boot_kobj->show = show; in iscsi_boot_create_kobj() 404 ssize_t (*show) (void *data, int type, char *buf), in iscsi_boot_create_target() 409 "target%d", index, data, show, is_visible, in iscsi_boot_create_target() 429 ssize_t (*show) (void *data, int type, char *buf), in iscsi_boot_create_initiator() 435 "initiator", index, data, show, in iscsi_boot_create_initiator() [all …]
|
| /OK3568_Linux_fs/kernel/block/ |
| H A D | blk-mq-sysfs.c | 50 ssize_t (*show)(struct blk_mq_ctx *, char *); member 56 ssize_t (*show)(struct blk_mq_hw_ctx *, char *); member 72 if (!entry->show) in blk_mq_sysfs_show() 76 res = entry->show(ctx, page); in blk_mq_sysfs_show() 114 if (!entry->show) in blk_mq_hw_sysfs_show() 118 res = entry->show(hctx, page); in blk_mq_hw_sysfs_show() 182 .show = blk_mq_hw_sysfs_nr_tags_show, 186 .show = blk_mq_hw_sysfs_nr_reserved_tags_show, 190 .show = blk_mq_hw_sysfs_cpus_show, 202 .show = blk_mq_sysfs_show, [all …]
|
| /OK3568_Linux_fs/kernel/tools/bpf/bpftool/Documentation/ |
| H A D | bpftool-link.rst | 17 *COMMANDS* := { **show** | **list** | **pin** | **help** } 22 | **bpftool** **link { show | list }** [*LINK*] 32 **bpftool link { show | list }** [*LINK*] 34 specified show information only about given link, 68 When showing BPF links, show file names of pinned 77 **# bpftool link show** 85 **# bpftool --json --pretty link show**
|
| H A D | bpftool.rst | 25 { **show** | **list** | **create** | **dump** | **update** | **lookup** | **getnext** 28 *PROG-COMMANDS* := { **show** | **list** | **dump jited** | **dump xlated** | **pin** 31 *CGROUP-COMMANDS* := { **show** | **list** | **attach** | **detach** | **help** } 33 *PERF-COMMANDS* := { **show** | **list** | **help** } 35 *NET-COMMANDS* := { **show** | **list** | **help** }
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/ |
| H A D | projectpage.js | 68 $("#project-page").show(); 75 $("#project-created-notification").show(); 187 noMostBuilt.show(); 191 freqBuildBtn.show(); 235 invalidMachineNameHelp.show(); 256 machineNameTitle.show(); 257 machineChangeFormToggle.show(); 310 distroNameTitle.show(); 311 distroChangeFormToggle.show(); 364 $(this).find('[data-role="loading-state"]').show();
|
| /OK3568_Linux_fs/kernel/samples/bpf/ |
| H A D | test_cgrp2_tc.sh | 102 local dropped=$($TC -s qdisc show dev $HOST_IFC | tail -3 | \ 126 $IP link show dev $HOST_IFC 127 $IP -6 a show dev $HOST_IFC 128 $TC -s qdisc show dev $HOST_IFC 131 $IP -n $NS link show dev $NS_IFC 132 $IP -n $NS -6 link show dev $NS_IFC
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/net/ |
| H A D | netdevice.sh | 21 ip link show "$netdev" |grep -q UP 55 ip link show $netdev |grep -q "$MACADDR" 64 ip address show "$netdev" |grep '^[[:space:]]*inet' 186 ip link show 2>/dev/null >/dev/null 198 ip link show |grep '^[0-9]' | grep -oE '[[:space:]].*eth[0-9]*:|[[:space:]].*enp[0-9]s[0-9]:' | cut…
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | iscsi_boot_sysfs.h | 83 ssize_t (*show) (void *data, int type, char *buf); member 111 ssize_t (*show) (void *data, int type, char *buf), 118 ssize_t (*show) (void *data, int type, char *buf), 124 ssize_t (*show) (void *data, int type, char *buf), 131 ssize_t (*show)(void *data, int type, char *buf),
|
| /OK3568_Linux_fs/kernel/scripts/coccinelle/api/ |
| H A D | device_attr_show.cocci | 4 /// show() must not use snprintf() when formatting the value to be 20 identifier show, dev, attr, buf; 24 ssize_t show(struct device *dev, struct device_attribute *attr, char *buf) 32 identifier show, dev, attr, buf; 35 ssize_t show(struct device *dev, struct device_attribute *attr, char *buf)
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/drivers/net/netdevsim/ |
| H A D | devlink.sh | 121 size=$(devlink region show $DL_HANDLE/$name -j | jq -e -r '.[][].size') 134 count=$(devlink region show $DL_HANDLE/$name -j | jq -e -r '.[][].snapshot | length') 376 devlink health show $DL_HANDLE reporter empty >/dev/null 379 devlink health dump show $DL_HANDLE reporter empty >/dev/null 400 local show=$(devlink health show $DL_HANDLE reporter $name -j | jq -e -r ".[][][]") 403 local state=$(echo $show | jq -r ".state") 407 local error=$(echo $show | jq -r ".error") 411 local recover=`echo $show | jq -r ".recover"` 415 local grace_period=$(echo $show | jq -r ".grace_period") 420 local auto_recover=$(echo $show | jq -r ".auto_recover") [all …]
|
| /OK3568_Linux_fs/kernel/drivers/edac/ |
| H A D | edac_device_sysfs.c | 109 ssize_t(*show) (struct edac_device_ctl_info *, char *); member 123 if (ctl_info_attr->show) in edac_dev_ctl_info_show() 124 return ctl_info_attr->show(edac_dev, buffer); in edac_dev_ctl_info_show() 143 .show = edac_dev_ctl_info_show, 150 .show = _show, \ 341 ssize_t(*show) (struct edac_device_instance *, char *); member 352 if (instance_attr->show) in edac_dev_instance_show() 353 return instance_attr->show(instance, buffer); in edac_dev_instance_show() 372 .show = edac_dev_instance_show, 379 .show = _show, \ [all …]
|