| /OK3568_Linux_fs/kernel/drivers/net/ethernet/netronome/nfp/abm/ |
| H A D | main.h | 242 struct tc_root_qopt_offload *opt); 244 struct tc_red_qopt_offload *opt); 246 struct tc_mq_qopt_offload *opt); 248 struct tc_gred_qopt_offload *opt); 250 struct flow_block_offload *opt);
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/include/nvkm/core/ |
| H A D | option.h | 6 const char *nvkm_stropt(const char *optstr, const char *opt, int *len); 7 bool nvkm_boolopt(const char *optstr, const char *opt, bool value); 8 long nvkm_longopt(const char *optstr, const char *opt, long value);
|
| /OK3568_Linux_fs/kernel/net/llc/ |
| H A D | af_llc.c | 1083 unsigned int opt; in llc_ui_setsockopt() local 1089 rc = copy_from_sockptr(&opt, optval, sizeof(opt)); in llc_ui_setsockopt() 1095 if (opt > LLC_OPT_MAX_RETRY) in llc_ui_setsockopt() 1097 llc->n2 = opt; in llc_ui_setsockopt() 1100 if (opt > LLC_OPT_MAX_SIZE) in llc_ui_setsockopt() 1102 llc->n1 = opt; in llc_ui_setsockopt() 1105 if (opt > LLC_OPT_MAX_ACK_TMR_EXP) in llc_ui_setsockopt() 1107 llc->ack_timer.expire = opt * HZ; in llc_ui_setsockopt() 1110 if (opt > LLC_OPT_MAX_P_TMR_EXP) in llc_ui_setsockopt() 1112 llc->pf_cycle_timer.expire = opt * HZ; in llc_ui_setsockopt() [all …]
|
| /OK3568_Linux_fs/buildroot/toolchain/ |
| H A D | toolchain-wrapper.c | 515 const struct str_len_s *opt; in main() local 516 for (opt=unsafe_opts; opt->str; opt++ ) { in main() 518 if (strncmp(argv[i], opt->str, opt->len)) in main() 525 if (argv[i][opt->len] == '\0') { in main() 531 check_unsafe_path(argv[i], argv[i] + opt->len, paranoid, 1); in main()
|
| /OK3568_Linux_fs/kernel/net/ax25/ |
| H A D | af_ax25.c | 558 unsigned int opt; in ax25_setsockopt() local 567 if (copy_from_sockptr(&opt, optval, sizeof(unsigned int))) in ax25_setsockopt() 576 if (opt < 1 || opt > 7) { in ax25_setsockopt() 581 if (opt < 1 || opt > 63) { in ax25_setsockopt() 586 ax25->window = opt; in ax25_setsockopt() 590 if (opt < 1 || opt > UINT_MAX / HZ) { in ax25_setsockopt() 594 ax25->rtt = (opt * HZ) >> 1; in ax25_setsockopt() 595 ax25->t1 = opt * HZ; in ax25_setsockopt() 599 if (opt < 1 || opt > UINT_MAX / HZ) { in ax25_setsockopt() 603 ax25->t2 = opt * HZ; in ax25_setsockopt() [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/netfilter/ipset/ |
| H A D | ip_set.h | 160 enum ipset_adt adt, struct ip_set_adt_opt *opt); 322 struct ip_set_adt_opt *opt); 325 struct ip_set_adt_opt *opt); 328 struct ip_set_adt_opt *opt); 464 #define ip_set_adt_opt_timeout(opt, set) \ argument 465 ((opt)->ext.timeout != IPSET_NO_TIMEOUT ? (opt)->ext.timeout : (set)->timeout) 522 #define IP_SET_INIT_KEXT(skb, opt, set) \ argument 524 .timeout = ip_set_adt_opt_timeout(opt, set) }
|
| /OK3568_Linux_fs/kernel/sound/core/seq/oss/ |
| H A D | seq_oss_rw.c | 23 static int insert_queue(struct seq_oss_devinfo *dp, union evrec *rec, struct file *opt); 83 snd_seq_oss_write(struct seq_oss_devinfo *dp, const char __user *buf, int count, struct file *opt) in snd_seq_oss_write() argument 135 if ((err = insert_queue(dp, &rec, opt)) < 0) in snd_seq_oss_write() 151 insert_queue(struct seq_oss_devinfo *dp, union evrec *rec, struct file *opt) in insert_queue() argument 173 rc = snd_seq_kernel_client_enqueue(dp->cseq, &event, opt, in insert_queue()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/syslinux/syslinux/ |
| H A D | 0001-linux-syslinux-support-ext2-3-4-device.patch | 56 + rv = open_ext2_fs(opt.device, subdir); 58 + if (install_to_ext2(opt.device, dev_fd, subdir)) { 59 + fprintf(stderr, "%s: installation failed\n", opt.device); 71 xpread(dev_fd, sectbuf, SECTOR_SIZE, opt.offset); 77 fprintf(stderr, "%s: %s\n", opt.device, errmsg);
|
| /OK3568_Linux_fs/kernel/include/net/ |
| H A D | cipso_ipv4.h | 270 unsigned char *opt = *option; in cipso_v4_validate() local 272 u8 opt_len = opt[1]; in cipso_v4_validate() 281 if (get_unaligned_be32(&opt[2]) == 0) { in cipso_v4_validate() 291 tag_len = opt[opt_iter + 1]; in cipso_v4_validate() 300 *option = opt + err_offset; in cipso_v4_validate()
|
| /OK3568_Linux_fs/external/rk_pcba_test/ |
| H A D | echo_discovery.c | 144 int opt = -1; in broadcast_service() local 185 if (setsockopt(broadcast_fd, SOL_SOCKET, SO_BROADCAST, (char *)&opt, in broadcast_service() 186 sizeof(opt)) < 0) { in broadcast_service() 190 if (setsockopt(broadcast_fd, SOL_SOCKET, SO_REUSEADDR, (char *)&opt, in broadcast_service() 191 sizeof(opt)) < 0) { in broadcast_service()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/optional/ |
| H A D | optional.hpp | 1300 get ( optional<T> const& opt ) in get() argument 1302 return opt.get() ; in get() 1308 get ( optional<T>& opt ) in get() argument 1310 return opt.get() ; in get() 1318 get ( optional<T> const* opt ) in get() argument 1320 return opt->get_ptr() ; in get() 1326 get ( optional<T>* opt ) in get() argument 1328 return opt->get_ptr() ; in get() 1336 get_optional_value_or ( optional<T> const& opt, BOOST_DEDUCED_TYPENAME optional<T>::reference_const… in get_optional_value_or() argument 1338 return opt.get_value_or(v) ; in get_optional_value_or() [all …]
|
| /OK3568_Linux_fs/kernel/net/bluetooth/ |
| H A D | l2cap_sock.c | 459 u32 opt; in l2cap_sock_getsockopt_old() local 514 opt = L2CAP_LM_AUTH; in l2cap_sock_getsockopt_old() 517 opt = L2CAP_LM_AUTH | L2CAP_LM_ENCRYPT; in l2cap_sock_getsockopt_old() 520 opt = L2CAP_LM_AUTH | L2CAP_LM_ENCRYPT | in l2cap_sock_getsockopt_old() 524 opt = L2CAP_LM_AUTH | L2CAP_LM_ENCRYPT | in l2cap_sock_getsockopt_old() 528 opt = 0; in l2cap_sock_getsockopt_old() 533 opt |= L2CAP_LM_MASTER; in l2cap_sock_getsockopt_old() 536 opt |= L2CAP_LM_RELIABLE; in l2cap_sock_getsockopt_old() 538 if (put_user(opt, (u32 __user *) optval)) in l2cap_sock_getsockopt_old() 747 u32 opt; in l2cap_sock_setsockopt_old() local [all …]
|
| /OK3568_Linux_fs/kernel/net/ipv6/ |
| H A D | udp.c | 466 struct inet6_skb_parm *opt, in __udp6_lib_err_encap_no_sk() argument 472 int (*handler)(struct sk_buff *skb, struct inet6_skb_parm *opt, in __udp6_lib_err_encap_no_sk() 480 if (handler && !handler(skb, opt, type, code, offset, info)) in __udp6_lib_err_encap_no_sk() 509 struct inet6_skb_parm *opt, in __udp6_lib_err_encap() argument 537 sk = ERR_PTR(__udp6_lib_err_encap_no_sk(skb, opt, type, code, in __udp6_lib_err_encap() 547 int __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt, in __udp6_lib_err() argument 570 opt, type, code, info); in __udp6_lib_err() 650 struct inet6_skb_parm *opt, u8 type, in udpv6_err() argument 653 return __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table); in udpv6_err() 1283 struct ipv6_txoptions *opt = NULL; in udpv6_sendmsg() local [all …]
|
| H A D | tunnel6.c | 203 static int tunnel6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, in tunnel6_err() argument 209 if (!handler->err_handler(skb, opt, type, code, offset, info)) in tunnel6_err() 215 static int tunnel46_err(struct sk_buff *skb, struct inet6_skb_parm *opt, in tunnel46_err() argument 221 if (!handler->err_handler(skb, opt, type, code, offset, info)) in tunnel46_err() 227 static int tunnelmpls6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, in tunnelmpls6_err() argument 233 if (!handler->err_handler(skb, opt, type, code, offset, info)) in tunnelmpls6_err()
|
| H A D | raw.c | 323 struct inet6_skb_parm *opt, in rawv6_err() argument 775 struct ipv6_txoptions *opt = NULL; in rawv6_sendmsg() local 868 opt = &opt_space; in rawv6_sendmsg() 869 memset(opt, 0, sizeof(struct ipv6_txoptions)); in rawv6_sendmsg() 870 opt->tot_len = sizeof(struct ipv6_txoptions); in rawv6_sendmsg() 871 ipc6.opt = opt; in rawv6_sendmsg() 883 if (!(opt->opt_nflen|opt->opt_flen)) in rawv6_sendmsg() 884 opt = NULL; in rawv6_sendmsg() 886 if (!opt) { in rawv6_sendmsg() 887 opt = txopt_get(np); in rawv6_sendmsg() [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/media_tests/ |
| H A D | media_device_open.c | 41 int opt; in main() local 54 while ((opt = getopt(argc, argv, "d:")) != -1) { in main() 55 switch (opt) { in main()
|
| H A D | media_device_test.c | 46 int opt; in main() local 59 while ((opt = getopt(argc, argv, "d:")) != -1) { in main() 60 switch (opt) { in main()
|
| /OK3568_Linux_fs/kernel/net/ipv4/ |
| H A D | ip_tunnel_core.c | 501 struct geneve_opt *opt = ip_tunnel_info_opts(info) + opts_len; in ip_tun_parse_opts_geneve() local 503 memcpy(opt->opt_data, nla_data(attr), data_len); in ip_tun_parse_opts_geneve() 504 opt->length = data_len / 4; in ip_tun_parse_opts_geneve() 506 opt->opt_class = nla_get_be16(attr); in ip_tun_parse_opts_geneve() 508 opt->type = nla_get_u8(attr); in ip_tun_parse_opts_geneve() 741 struct geneve_opt *opt; in ip_tun_fill_encap_opts_geneve() local 750 opt = ip_tunnel_info_opts(tun_info) + offset; in ip_tun_fill_encap_opts_geneve() 752 opt->opt_class) || in ip_tun_fill_encap_opts_geneve() 753 nla_put_u8(skb, LWTUNNEL_IP_OPT_GENEVE_TYPE, opt->type) || in ip_tun_fill_encap_opts_geneve() 754 nla_put(skb, LWTUNNEL_IP_OPT_GENEVE_DATA, opt->length * 4, in ip_tun_fill_encap_opts_geneve() [all …]
|
| /OK3568_Linux_fs/kernel/samples/bpf/ |
| H A D | tc_l2_redirect_user.c | 30 int opt; in main() local 32 while ((opt = getopt(argc, argv, "F:U:i:")) != -1) { in main() 33 switch (opt) { in main()
|
| /OK3568_Linux_fs/kernel/net/dccp/ |
| H A D | ccid.h | 63 u8 opt, u8 *val, u8 len); 69 u8 opt, u8 *val, u8 len); 200 u8 pkt, u8 opt, u8 *val, u8 len) in ccid_hc_tx_parse_options() argument 204 return ccid->ccid_ops->ccid_hc_tx_parse_options(sk, pkt, opt, val, len); in ccid_hc_tx_parse_options() 212 u8 pkt, u8 opt, u8 *val, u8 len) in ccid_hc_rx_parse_options() argument 216 return ccid->ccid_ops->ccid_hc_rx_parse_options(sk, pkt, opt, val, len); in ccid_hc_rx_parse_options()
|
| /OK3568_Linux_fs/buildroot/package/sam-ba/ |
| H A D | sam-ba.mk | 19 mkdir -p $(HOST_DIR)/opt/sam-ba/ 20 cp -a $(@D)/* $(HOST_DIR)/opt/sam-ba/ 22 ln -sf ../opt/sam-ba/sam-ba $(HOST_DIR)/bin/sam-ba
|
| /OK3568_Linux_fs/external/rkwifibt/tools/rtk_hciattach/ |
| H A D | hciattach.c | 364 int detach, printpid, raw, opt, i, n, ld, err; in main() local 381 while ((opt=getopt(argc, argv, "bnpt:s:lr")) != EOF) { in main() 382 switch(opt) { in main() 427 char *opt; in main() local 429 opt = argv[optind]; in main() 434 if (!strchr(opt, '/')) in main() 436 strcat(dev, opt); in main() 445 u = get_by_type(opt); in main()
|
| /OK3568_Linux_fs/kernel/tools/usb/usbip/src/ |
| H A D | usbip_bind.c | 189 int opt; in usbip_bind() local 193 opt = getopt_long(argc, argv, "b:", opts, NULL); in usbip_bind() 195 if (opt == -1) in usbip_bind() 198 switch (opt) { in usbip_bind()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python-imaging/ |
| H A D | 0001-python-imaging-setup.py-force-paths-for-zlib-freetyp.patch | 18 # TIFF_ROOT = libinclude("/opt/tiff") 32 add_directory(library_dirs, "/opt/local/lib") 33 add_directory(include_dirs, "/opt/local/include") 36 # FIXME: check /opt/stuff directories here?
|
| /OK3568_Linux_fs/external/security/librkcrypto/demo/ |
| H A D | rkcrypto_demo.c | 28 int opt = 0; in main() local 34 while ((opt = getopt(argc, argv, opt_string)) != -1) { in main() 35 switch (opt) { in main()
|