Home
last modified time | relevance | path

Searched refs:opts (Results 1 - 21 of 21) sorted by relevance

/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dbcmxtlv.c54 bcm_xtlv_hdr_size(bcm_xtlv_opts_t opts) in bcm_xtlv_hdr_size() argument
57 if (opts & BCM_XTLV_OPTION_LENU8) --len; in bcm_xtlv_hdr_size()
58 if (opts & BCM_XTLV_OPTION_IDU8) --len; in bcm_xtlv_hdr_size()
64 bcm_valid_xtlv(const bcm_xtlv_t *elt, int buf_len, bcm_xtlv_opts_t opts) in bcm_valid_xtlv() argument
67 buf_len >= bcm_xtlv_hdr_size(opts) && in bcm_valid_xtlv()
68 buf_len >= bcm_xtlv_size(elt, opts); in bcm_valid_xtlv()
72 bcm_xtlv_size_for_data(int dlen, bcm_xtlv_opts_t opts) in bcm_xtlv_size_for_data() argument
76 hsz = bcm_xtlv_hdr_size(opts); in bcm_xtlv_size_for_data()
77 return ((opts & BCM_XTLV_OPTION_ALIGN32) ? ALIGN_SIZE(dlen + hsz, 4) in bcm_xtlv_size_for_data()
82 bcm_xtlv_size(const bcm_xtlv_t *elt, bcm_xtlv_opts_t opts) in bcm_xtlv_size() argument
93 bcm_xtlv_len(const bcm_xtlv_t *elt, bcm_xtlv_opts_t opts) bcm_xtlv_len() argument
115 bcm_xtlv_id(const bcm_xtlv_t *elt, bcm_xtlv_opts_t opts) bcm_xtlv_id() argument
130 bcm_next_xtlv(const bcm_xtlv_t *elt, int *buflen, bcm_xtlv_opts_t opts) bcm_next_xtlv() argument
148 bcm_xtlv_buf_init(bcm_xtlvbuf_t *tlv_buf, uint8 *buf, uint16 len, bcm_xtlv_opts_t opts) bcm_xtlv_buf_init() argument
198 bcm_xtlv_pack_xtlv(bcm_xtlv_t *xtlv, uint16 type, uint16 len, const uint8 *data, bcm_xtlv_opts_t opts) bcm_xtlv_pack_xtlv() argument
246 bcm_xtlv_unpack_xtlv(const bcm_xtlv_t *xtlv, uint16 *type, uint16 *len, const uint8 **data, bcm_xtlv_opts_t opts) bcm_xtlv_unpack_xtlv() argument
357 bcm_unpack_xtlv_entry(const uint8 **tlv_buf, uint16 xpct_type, uint16 xpct_len, uint8 *dst_data, bcm_xtlv_opts_t opts) bcm_unpack_xtlv_entry() argument
384 bcm_pack_xtlv_entry(uint8 **tlv_buf, uint16 *buflen, uint16 type, uint16 len, const uint8 *src_data, bcm_xtlv_opts_t opts) bcm_pack_xtlv_entry() argument
412 bcm_unpack_xtlv_buf(void *ctx, const uint8 *tlv_buf, uint16 buflen, bcm_xtlv_opts_t opts, bcm_xtlv_unpack_cbfn_t *cbfn) bcm_unpack_xtlv_buf() argument
446 bcm_pack_xtlv_buf(void *ctx, uint8 *tlv_buf, uint16 buflen, bcm_xtlv_opts_t opts, bcm_pack_xtlv_next_info_cbfn_t get_next, bcm_pack_xtlv_pack_next_cbfn_t pack_next, int *outlen) bcm_pack_xtlv_buf() argument
495 bcm_pack_xtlv_buf_from_mem(uint8 **tlv_buf, uint16 *buflen, const xtlv_desc_t *items, bcm_xtlv_opts_t opts) bcm_pack_xtlv_buf_from_mem() argument
520 bcm_unpack_xtlv_buf_to_mem(uint8 *tlv_buf, int *buflen, xtlv_desc_t *items, bcm_xtlv_opts_t opts) bcm_unpack_xtlv_buf_to_mem() argument
564 bcm_get_data_from_xtlv_buf(const uint8 *tlv_buf, uint16 buflen, uint16 id, uint16 *datalen, bcm_xtlv_opts_t opts) bcm_get_data_from_xtlv_buf() argument
604 bcm_xtlv_bcopy(const bcm_xtlv_t *src, bcm_xtlv_t *dst, int src_buf_len, int dst_buf_len, bcm_xtlv_opts_t opts) bcm_xtlv_bcopy() argument
[all...]
H A Dwl_cfgnan.h697 extern int bcm_xtlv_size_for_data(int dlen, bcm_xtlv_opts_t opts);
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/
H A Dbcmtlv.h170 #define BCM_XTLV_SIZE(elt, opts) bcm_xtlv_size(elt, opts)
187 bcm_xtlv_opts_t opts; member
196 bool bcm_valid_xtlv(const bcm_xtlv_t *elt, int buf_len, bcm_xtlv_opts_t opts);
201 bcm_xtlv_t *bcm_next_xtlv(const bcm_xtlv_t *elt, int *buf_len, bcm_xtlv_opts_t opts);
207 bcm_xtlv_opts_t opts);
241 uint8 *dst_data, bcm_xtlv_opts_t opts);
247 const uint8 *src_data, bcm_xtlv_opts_t opts);
250 int bcm_xtlv_size(const bcm_xtlv_t *elt, bcm_xtlv_opts_t opts);
251 int bcm_xtlv_hdr_size(bcm_xtlv_opts_t opts);
[all...]
/device/soc/rockchip/common/sdk_linux/net/bluetooth/
H A Dl2cap_sock.c455 struct l2cap_options opts; in l2cap_sock_getsockopt_old() local
494 memset(&opts, 0, sizeof(opts)); in l2cap_sock_getsockopt_old()
495 opts.imtu = chan->imtu; in l2cap_sock_getsockopt_old()
496 opts.omtu = chan->omtu; in l2cap_sock_getsockopt_old()
497 opts.flush_to = chan->flush_to; in l2cap_sock_getsockopt_old()
498 opts.mode = chan->mode; in l2cap_sock_getsockopt_old()
499 opts.fcs = chan->fcs; in l2cap_sock_getsockopt_old()
500 opts.max_tx = chan->max_tx; in l2cap_sock_getsockopt_old()
501 opts in l2cap_sock_getsockopt_old()
756 struct l2cap_options opts; l2cap_sock_setsockopt_old() local
[all...]
H A Dsco.c919 struct sco_options opts; in sco_sock_getsockopt_old() local
939 opts.mtu = sco_pi(sk)->conn->mtu; in sco_sock_getsockopt_old()
941 BT_DBG("mtu %d", opts.mtu); in sco_sock_getsockopt_old()
943 len = min_t(unsigned int, len, sizeof(opts)); in sco_sock_getsockopt_old()
944 if (copy_to_user(optval, (char *)&opts, len)) { in sco_sock_getsockopt_old()
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
H A Dtcp_sack.h29 tcp_parseopt_sack(u8_t *opts, u16_t c);
55 void tcp_build_sack_permitted_option(u32_t *opts);
H A Ddhcp6.h79 opt_comm_t *opts; member
H A Dopt.h3578 * u32_t *my_hook_tcp_out_add_tcpopts(struct pbuf *p, struct tcp_hdr *hdr, const struct tcp_pcb *pcb, u32_t *opts);
3585 * - opts: pointer where to add the custom options (there may already be options
3594 #define LWIP_HOOK_TCP_OUT_ADD_TCPOPTS(p, hdr, pcb, opts)
/device/soc/rockchip/common/vendor/drivers/phy/
H A Dphy-rockchip-naneng-edp.c200 static int rockchip_edp_phy_configure(struct phy *phy, union phy_configure_opts *opts) in rockchip_edp_phy_configure() argument
205 ret = rockchip_edp_phy_verify_config(edpphy, &opts->dp); in rockchip_edp_phy_configure()
211 if (opts->dp.set_rate) { in rockchip_edp_phy_configure()
212 ret = rockchip_edp_phy_set_rate(edpphy, &opts->dp); in rockchip_edp_phy_configure()
219 if (opts->dp.set_voltages) { in rockchip_edp_phy_configure()
220 ret = rockchip_edp_phy_set_voltages(edpphy, &opts->dp); in rockchip_edp_phy_configure()
H A Dphy-rockchip-usbdp.c779 static int rockchip_dp_phy_configure(struct phy *phy, union phy_configure_opts *opts) in rockchip_dp_phy_configure() argument
785 ret = rockchip_dp_phy_verify_config(udphy, &opts->dp); in rockchip_dp_phy_configure()
790 if (opts->dp.set_rate && cfg->dp_phy_set_rate) { in rockchip_dp_phy_configure()
791 ret = cfg->dp_phy_set_rate(udphy, &opts->dp); in rockchip_dp_phy_configure()
798 if (opts->dp.set_voltages && cfg->dp_phy_set_voltages) { in rockchip_dp_phy_configure()
799 ret = cfg->dp_phy_set_voltages(udphy, &opts->dp); in rockchip_dp_phy_configure()
/device/soc/rockchip/rk3588/kernel/drivers/phy/rockchip/
H A Dphy-rockchip-naneng-edp.c220 union phy_configure_opts *opts) in rockchip_edp_phy_configure()
225 ret = rockchip_edp_phy_verify_config(edpphy, &opts->dp); in rockchip_edp_phy_configure()
231 if (opts->dp.set_rate) { in rockchip_edp_phy_configure()
232 ret = rockchip_edp_phy_set_rate(edpphy, &opts->dp); in rockchip_edp_phy_configure()
240 if (opts->dp.set_voltages) { in rockchip_edp_phy_configure()
241 ret = rockchip_edp_phy_set_voltages(edpphy, &opts->dp); in rockchip_edp_phy_configure()
219 rockchip_edp_phy_configure(struct phy *phy, union phy_configure_opts *opts) rockchip_edp_phy_configure() argument
H A Dphy-rockchip-usbdp.c827 union phy_configure_opts *opts) in rockchip_dp_phy_configure()
833 ret = rockchip_dp_phy_verify_config(udphy, &opts->dp); in rockchip_dp_phy_configure()
837 if (opts->dp.set_rate && cfg->dp_phy_set_rate) { in rockchip_dp_phy_configure()
838 ret = cfg->dp_phy_set_rate(udphy, &opts->dp); in rockchip_dp_phy_configure()
846 if (opts->dp.set_voltages && cfg->dp_phy_set_voltages) { in rockchip_dp_phy_configure()
847 ret = cfg->dp_phy_set_voltages(udphy, &opts->dp); in rockchip_dp_phy_configure()
826 rockchip_dp_phy_configure(struct phy *phy, union phy_configure_opts *opts) rockchip_dp_phy_configure() argument
H A Dphy-rockchip-samsung-hdptx.c680 union phy_configure_opts *opts) in rockchip_hdptx_phy_configure()
689 ret = rockchip_hdptx_phy_verify_config(hdptx, &opts->dp); in rockchip_hdptx_phy_configure()
695 if (opts->dp.set_rate) { in rockchip_hdptx_phy_configure()
696 ret = rockchip_hdptx_phy_set_rate(hdptx, &opts->dp); in rockchip_hdptx_phy_configure()
703 if (opts->dp.set_voltages) { in rockchip_hdptx_phy_configure()
704 ret = rockchip_hdptx_phy_set_voltages(hdptx, &opts->dp); in rockchip_hdptx_phy_configure()
679 rockchip_hdptx_phy_configure(struct phy *phy, union phy_configure_opts *opts) rockchip_hdptx_phy_configure() argument
H A Dphy-rockchip-samsung-dcphy.c1783 union phy_configure_opts *opts) in samsung_mipi_dcphy_configure()
1786 unsigned long long target_rate = opts->mipi_dphy.hs_clk_rate; in samsung_mipi_dcphy_configure()
1791 samsung->lanes = opts->mipi_dphy.lanes > 4 ? 4 : opts->mipi_dphy.lanes; in samsung_mipi_dcphy_configure()
1794 opts->mipi_dphy.hs_clk_rate = samsung->pll.rate; in samsung_mipi_dcphy_configure()
1782 samsung_mipi_dcphy_configure(struct phy *phy, union phy_configure_opts *opts) samsung_mipi_dcphy_configure() argument
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/paho.mqtt.c/include/mqtt/
H A DMQTTProtocolOut.h45 MQTTSubscribe_options* opts, MQTTProperties* props);
H A DMQTTPacketOut.h32 int MQTTPacket_send_subscribe(List* topics, List* qoss, MQTTSubscribe_options* opts, MQTTProperties* props,
H A DSSLSocket.h43 int SSLSocket_setSocketForSSL(networkHandles* net, MQTTClient_SSLOptions* opts, const char* hostname, size_t hostname_len);
H A DMQTTClient.h1037 MQTTSubscribe_options* opts, MQTTProperties* props);
1058 int* qos, MQTTSubscribe_options* opts, MQTTProperties* props);
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/
H A Dnet.h455 * the filter expression @p opts will be copied from the original request
465 * @param opts An option filter that specifies which options to copy from
472 coap_opt_filter_t opts);
476 * @p opts will be passed to coap_new_error_response() to copy marked options
483 * @param opts A filter that specifies the options to copy from the
492 coap_opt_filter_t opts);
542 * @p opts will be passed to coap_new_error_response() to copy marked options
549 * @param opts A filter that specifies the options to copy from the
558 coap_opt_filter_t opts);
/device/soc/rockchip/common/sdk_linux/drivers/phy/rockchip/
H A Dphy-rockchip-inno-dsidphy.c704 static int inno_dsidphy_configure(struct phy *phy, union phy_configure_opts *opts) in inno_dsidphy_configure() argument
715 ret = phy_mipi_dphy_config_validate(&opts->mipi_dphy); in inno_dsidphy_configure()
720 memcpy(&inno->dphy_cfg, &opts->mipi_dphy, sizeof(inno->dphy_cfg)); in inno_dsidphy_configure()
724 opts->mipi_dphy.hs_clk_rate = inno->pll.rate; in inno_dsidphy_configure()
/device/soc/rockchip/rk3588/kernel/drivers/net/ethernet/realtek/r8168/
H A Dr8168_n.c27500 rtl8168_xmit_frags(struct rtl8168_private *tp, struct sk_buff *skb, const u32 *opts) global() argument
27588 rtl8168_tx_csum(struct sk_buff *skb, struct net_device *dev, u32 *opts) global() argument
27759 u32 opts[2]; global() local
[all...]

Completed in 55 milliseconds