Home
last modified time | relevance | path

Searched refs:request (Results 1 - 25 of 65) sorted by relevance

123

/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/wal/
H A Dwal_scan.c59 if (scan_mgmt->request->ssids != HI_NULL) { in wal_free_scan_mgmt_resource()
60 OsalMemFree(scan_mgmt->request->ssids); in wal_free_scan_mgmt_resource()
61 scan_mgmt->request->ssids = HI_NULL; in wal_free_scan_mgmt_resource()
63 if (scan_mgmt->request->ie != HI_NULL) { in wal_free_scan_mgmt_resource()
64 OsalMemFree(scan_mgmt->request->ie); in wal_free_scan_mgmt_resource()
65 scan_mgmt->request->ie = HI_NULL; in wal_free_scan_mgmt_resource()
67 OsalMemFree(scan_mgmt->request); in wal_free_scan_mgmt_resource()
68 scan_mgmt->request = HI_NULL; in wal_free_scan_mgmt_resource()
296 static hi_u32 wal_set_scan_channel(const oal_cfg80211_scan_request_stru *request, in wal_set_scan_channel() argument
302 if (request in wal_set_scan_channel()
346 wal_set_scan_ssid(const oal_cfg80211_scan_request_stru *request, mac_cfg80211_scan_param_stru *scan_param) wal_set_scan_ssid() argument
517 oal_cfg80211_scan_request_stru *request = scan_mgmt->request; wal_start_scan_req() local
[all...]
H A Dwal_scan.h68 #define is_p2p_scan_req(request) \
69 (((request)->n_ssids > 0) && (NULL != (request)->ssids) && ((request)->ssids[0].ssid_len == strlen("DIRECT-")) && \
70 (0 == memcmp((request)->ssids[0].ssid, "DIRECT-", strlen("DIRECT-"))))
H A Dwal_mac80211.c48 static int32_t WifiScanSetSsid(const struct WlanScanRequest *params, oal_cfg80211_scan_request_stru *request) in WifiScanSetSsid() argument
63 request->ssids = (oal_cfg80211_ssid_stru *)OsalMemCalloc(params->ssidCount * sizeof(oal_cfg80211_ssid_stru)); in WifiScanSetSsid()
64 if (request->ssids == NULL) { in WifiScanSetSsid()
78 request->ssids[count].ssid_len = params->ssids[loop].ssidLen; in WifiScanSetSsid()
79 if (memcpy_s(request->ssids[count].ssid, OAL_IEEE80211_MAX_SSID_LEN, params->ssids[loop].ssid, in WifiScanSetSsid()
85 request->n_ssids = count; in WifiScanSetSsid()
90 static int32_t WifiScanSetUserIe(const struct WlanScanRequest *params, oal_cfg80211_scan_request_stru *request) in WifiScanSetUserIe() argument
97 request->ie = (uint8_t *)OsalMemCalloc(params->extraIEsLen); in WifiScanSetUserIe()
98 if (request->ie == NULL) { in WifiScanSetUserIe()
102 (void)memcpy_s(request in WifiScanSetUserIe()
136 WifiScanSetChannel(const oal_wiphy_stru *wiphy, const struct WlanScanRequest *params, oal_cfg80211_scan_request_stru *request) WifiScanSetChannel() argument
178 WifiScanSetRequest(struct NetDevice *netdev, const struct WlanScanRequest *params, oal_cfg80211_scan_request_stru *request) WifiScanSetRequest() argument
204 WifiScanFree(oal_cfg80211_scan_request_stru **request) WifiScanFree() argument
224 oal_cfg80211_scan_request_stru *request = WalStartScan() local
[all...]
H A Dwal_event_msg.c108 功能描述 : add the request message into queue
136 功能描述 : remove the request message into queue
158 功能描述 : set the request message response by the request message's address, the address is only
176 wal_msg_request_stru *request = HI_NULL; in wal_set_msg_response_by_addr() local
181 request = (wal_msg_request_stru *)hi_list_entry(pos, wal_msg_request_stru, entry); in wal_set_msg_response_by_addr()
182 if (request->request_address == (hi_u32)addr) { in wal_set_msg_response_by_addr()
184 if (oal_unlikely(request->resp_mem != NULL)) { in wal_set_msg_response_by_addr()
188 request->resp_mem = resp_mem; in wal_set_msg_response_by_addr()
189 request in wal_set_msg_response_by_addr()
[all...]
H A Dwal_cfg80211.c938 static hi_void wal_cfg80211_print_sched_scan_req_info(oal_cfg80211_sched_scan_request_stru *request) in wal_cfg80211_print_sched_scan_req_info() argument
947 request->n_channels, request->flags, request->min_rssi_thold); in wal_cfg80211_print_sched_scan_req_info()
951 for (l_loop = 0; l_loop < request->n_match_sets; l_loop++) { in wal_cfg80211_print_sched_scan_req_info()
956 "mactch_sets[%d] info, ssid_len[%d], ssid: %s.\n", l_loop, request->match_sets[l_loop].ssid.ssid_len, in wal_cfg80211_print_sched_scan_req_info()
957 request->match_sets[l_loop].ssid.ssid) == -1) { in wal_cfg80211_print_sched_scan_req_info()
963 for (l_loop = 0; l_loop < request->n_ssids; l_loop++) { in wal_cfg80211_print_sched_scan_req_info()
968 "ssids[%d] info, ssid_len[%d], ssid: %s.\n", l_loop, request->ssids[l_loop].ssid_len, in wal_cfg80211_print_sched_scan_req_info()
969 request in wal_cfg80211_print_sched_scan_req_info()
990 wal_cfg80211_sched_scan_start(oal_wiphy_stru *wiphy, oal_net_device_stru *netdev, oal_cfg80211_sched_scan_request_stru *request) wal_cfg80211_sched_scan_start() argument
2832 wal_cfg80211_scan(oal_wiphy_stru *wiphy, oal_cfg80211_scan_request_stru *request) wal_cfg80211_scan() argument
[all...]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dwl_cfgscan.c869 wl_cfgscan_map_nl80211_scan_type(struct bcm_cfg80211 *cfg, struct cfg80211_scan_request *request) in wl_cfgscan_map_nl80211_scan_type() argument
873 if (!request) { in wl_cfgscan_map_nl80211_scan_type()
877 if (request->flags & NL80211_SCAN_FLAG_LOW_SPAN) { in wl_cfgscan_map_nl80211_scan_type()
880 if (request->flags & NL80211_SCAN_FLAG_HIGH_ACCURACY) { in wl_cfgscan_map_nl80211_scan_type()
883 if (request->flags & NL80211_SCAN_FLAG_LOW_POWER) { in wl_cfgscan_map_nl80211_scan_type()
886 if (request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) { in wl_cfgscan_map_nl80211_scan_type()
890 WL_INFORM(("scan flags. wl:%x cfg80211:%x\n", scan_flags, request->flags)); in wl_cfgscan_map_nl80211_scan_type()
902 struct cfg80211_scan_request *request, u32 *num_channels) in wl_cfgscan_populate_scan_channels()
909 if (!request || !request in wl_cfgscan_populate_scan_channels()
901 wl_cfgscan_populate_scan_channels(struct bcm_cfg80211 *cfg, u16 *channel_list, struct cfg80211_scan_request *request, u32 *num_channels) wl_cfgscan_populate_scan_channels() argument
967 wl_cfgscan_populate_scan_ssids(struct bcm_cfg80211 *cfg, u8 *buf_ptr, u32 buf_len, struct cfg80211_scan_request *request, u32 *ssid_num) wl_cfgscan_populate_scan_ssids() argument
1015 wl_scan_prep(struct bcm_cfg80211 *cfg, void *scan_params, u32 len, struct cfg80211_scan_request *request) wl_scan_prep() argument
1157 wl_run_escan(struct bcm_cfg80211 *cfg, struct net_device *ndev, struct cfg80211_scan_request *request, uint16 action) wl_run_escan() argument
1464 wl_do_escan(struct bcm_cfg80211 *cfg, struct wiphy *wiphy, struct net_device *ndev, struct cfg80211_scan_request *request) wl_do_escan() argument
1635 __wl_cfg80211_scan(struct wiphy *wiphy, struct net_device *ndev, struct cfg80211_scan_request *request, struct cfg80211_ssid *this_ssid) __wl_cfg80211_scan() argument
1883 wl_cfg80211_scan(struct wiphy *wiphy, struct cfg80211_scan_request *request) wl_cfg80211_scan() argument
2509 wl_cfg80211_sched_scan_start(struct wiphy *wiphy, struct net_device *dev, struct cfg80211_sched_scan_request *request) wl_cfg80211_sched_scan_start() argument
2827 struct cfg80211_scan_request *request = NULL; wl_notify_sched_scan_results() local
[all...]
H A Dwl_cfgscan.h58 struct net_device *ndev, struct cfg80211_scan_request *request);
60 struct cfg80211_scan_request *request, struct cfg80211_ssid *this_ssid);
62 extern s32 wl_cfg80211_scan(struct wiphy *wiphy, struct cfg80211_scan_request *request);
65 struct cfg80211_scan_request *request);
93 struct cfg80211_sched_scan_request *request);
H A Dhdf_public_ap6275s.h85 extern int32_t WifiScanSetUserIe(const struct WlanScanRequest *params, struct cfg80211_scan_request *request);
87 struct cfg80211_scan_request *request);
115 struct cfg80211_scan_request *request);
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/
H A Dnet.h238 * message (request or response) is dropped after all retries have been
455 * the filter expression @p opts will be copied from the original request
456 * contained in @p request. Unless @c SHORT_ERROR_RESPONSE was defined at build
463 * @param request Specification of the received (confirmable) request.
466 * the original request in @p node.
470 coap_pdu_t *coap_new_error_response(coap_pdu_t *request,
475 * Sends an error response with code @p code for request @p request to @p dst.
477 * from the request
533 coap_send_rst(coap_session_t *session, coap_pdu_t *request) coap_send_rst() argument
605 coap_send_rst_lwip(coap_session_t *session, coap_pdu_t *request) coap_send_rst_lwip() argument
[all...]
H A Duri.h132 * Extract query string from request PDU according to escape rules in 6.5.8.
133 * @param request Request PDU.
136 coap_string_t *coap_get_query(const struct coap_pdu_t *request);
139 * Extract uri_path string from request PDU
140 * @param request Request PDU.
143 coap_string_t *coap_get_uri_path(const struct coap_pdu_t *request);
H A Dasync.h65 * the given @p request. The @p flags are used to control generation of empty
74 * @param request The request that is handled asynchronously.
86 coap_pdu_t *request,
/device/soc/rockchip/common/sdk_linux/drivers/mmc/core/
H A Dblock.h6 struct request;
12 enum mmc_issued mmc_blk_mq_issue_rq(struct mmc_queue *mq, struct request *req);
13 void mmc_blk_mq_complete(struct request *req);
H A Dblock.c90 * Set a 10 second timeout for polling write request busy state. Note, mmc core
92 * second software timer to timeout the whole request, so 10 seconds should be
257 struct request *req; in power_ro_lock_store()
624 struct request *req; in mmc_blk_ioctl_cmd()
640 * Dispatch the ioctl() into the block request queue. in mmc_blk_ioctl_cmd()
672 struct request *req; in mmc_blk_ioctl_multi_cmd()
709 * Dispatch the ioctl()s into the block request queue. in mmc_blk_ioctl_multi_cmd()
981 * partition, so we need to abort the whole request. in mmc_blk_reset()
999 static void mmc_blk_issue_drv_op(struct mmc_queue *mq, struct request *req) in mmc_blk_issue_drv_op()
1066 static void mmc_blk_issue_discard_rq(struct mmc_queue *mq, struct request *re
[all...]
/device/board/hihope/rk3568/wifi/bcmdhd_wifi6/hdfadapt/
H A Dhdf_bdh_mac80211.c657 static int32_t WifiScanSetSsid(const struct WlanScanRequest *params, struct cfg80211_scan_request *request) in WifiScanSetSsid() argument
672 request->ssids = (struct cfg80211_ssid *)OsalMemCalloc(params->ssidCount * sizeof(struct cfg80211_ssid)); in WifiScanSetSsid()
673 if (request->ssids == NULL) { in WifiScanSetSsid()
674 HDF_LOGE("%s: calloc request->ssids null", __func__); in WifiScanSetSsid()
687 request->ssids[count].ssid_len = params->ssids[loop].ssidLen; in WifiScanSetSsid()
688 if (memcpy_s(request->ssids[count].ssid, OAL_IEEE80211_MAX_SSID_LEN, params->ssids[loop].ssid, in WifiScanSetSsid()
694 request->n_ssids = count; in WifiScanSetSsid()
699 int32_t WifiScanSetUserIe(const struct WlanScanRequest *params, struct cfg80211_scan_request *request) in WifiScanSetUserIe() argument
706 request->ie = (uint8_t *)OsalMemCalloc(params->extraIEsLen); in WifiScanSetUserIe()
707 if (request in WifiScanSetUserIe()
718 FillAllValidChannels(const struct wiphy *wiphy, int32_t channelTotal, struct cfg80211_scan_request *request) FillAllValidChannels() argument
747 WifiScanSetChannel(const struct wiphy *wiphy, const struct WlanScanRequest *params, struct cfg80211_scan_request *request) WifiScanSetChannel() argument
783 WifiScanSetRequest(struct NetDevice *netdev, const struct WlanScanRequest *params, struct cfg80211_scan_request *request) WifiScanSetRequest() argument
808 WifiScanFree(struct cfg80211_scan_request **request) WifiScanFree() argument
834 struct cfg80211_scan_request *request = NULL; HdfStartScanEntry() local
[all...]
H A Dhdf_bdh_event.h28 uint8_t *reqIe; /**< Association request IE */
29 uint32_t reqIeLen; /**< Length of the association request IE */
43 void WifiScanFree(struct cfg80211_scan_request **request);
/device/soc/rockchip/common/hardware/display/src/display_device/
H A Ddrm_vsync_worker.cpp79 .request = drmVBlankReq in WaitNextVBlank()
88 vblank.request.type = drmVBlankSeqType((int)(vblank.request.type) | (int)DRM_VBLANK_SECONDARY); in WaitNextVBlank()
/device/soc/rockchip/rk3399/hardware/display/src/display_device/
H A Ddrm_vsync_worker.cpp78 .request = in WaitNextVBlank()
87 vblank.request.type = drmVBlankSeqType((int)(vblank.request.type) | (int)DRM_VBLANK_SECONDARY); in WaitNextVBlank()
/device/soc/rockchip/rk3566/hardware/display/src/display_device/
H A Ddrm_vsync_worker.cpp78 .request = in WaitNextVBlank()
87 vblank.request.type = drmVBlankSeqType((int)(vblank.request.type) | (int)DRM_VBLANK_SECONDARY); in WaitNextVBlank()
/device/soc/rockchip/rk3568/hardware/display/src/display_device/
H A Ddrm_vsync_worker.cpp78 .request = in WaitNextVBlank()
87 vblank.request.type = drmVBlankSeqType((int)(vblank.request.type) | (int)DRM_VBLANK_SECONDARY); in WaitNextVBlank()
/device/soc/rockchip/rk3588/hardware/display/src/display_device/
H A Ddrm_vsync_worker.cpp80 .request = in WaitNextVBlank()
89 vblank.request.type = drmVBlankSeqType((int)(vblank.request.type) | (int)DRM_VBLANK_SECONDARY); in WaitNextVBlank()
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/
H A Ddrm_vblank.c1624 e->event.vbl.user_data = vblwait->request.signal; in drm_queue_vblank_event()
1683 if (vblwait->request.sequence) { in drm_wait_vblank_is_query()
1688 (vblwait->request.type & (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_EVENT | _DRM_VBLANK_NEXTONMISS)); in drm_wait_vblank_is_query()
1737 if (vblwait->request.type & _DRM_VBLANK_SIGNAL) { in drm_wait_vblank_ioctl()
1741 if (vblwait->request.type & ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK | _DRM_VBLANK_HIGH_CRTC_MASK)) { in drm_wait_vblank_ioctl()
1742 drm_dbg_core(dev, "Unsupported type value 0x%x, supported mask 0x%x\n", vblwait->request.type, in drm_wait_vblank_ioctl()
1747 flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK; in drm_wait_vblank_ioctl()
1748 high_pipe = (vblwait->request.type & _DRM_VBLANK_HIGH_CRTC_MASK); in drm_wait_vblank_ioctl()
1793 switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) { in drm_wait_vblank_ioctl()
1795 req_seq = seq + vblwait->request in drm_wait_vblank_ioctl()
[all...]
/device/soc/rockchip/rk3588/kernel/include/trace/hooks/
H A Dufshcd.h14 struct request;
31 TP_PROTO(struct ufs_hba *hba, struct request *rq,
H A Dblock.h23 TP_PROTO(struct request *rq, struct blk_mq_tags *tags,
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/mac/hmac/
H A Dhmac_scan.c1573 "{hmac_scan_check_is_dispatch_scan_req::the scan request is rejected.}"); in hmac_scan_check_is_dispatch_scan_req()
1892 scan_mgmt->request = HI_NULL; in hmac_scan_init()
1909 /* 初始化内核下发扫描request资源锁 */ in hmac_scan_init()
1935 if (scan_mgmt->request == HI_NULL) { in hmac_scan_exit()
1938 if (scan_mgmt->request->ie != HI_NULL) { in hmac_scan_exit()
1939 oal_free(scan_mgmt->request->ie); in hmac_scan_exit()
1940 scan_mgmt->request->ie = HI_NULL; in hmac_scan_exit()
1942 if (scan_mgmt->request->ssids != HI_NULL) { in hmac_scan_exit()
1943 oal_free(scan_mgmt->request->ssids); in hmac_scan_exit()
1944 scan_mgmt->request in hmac_scan_exit()
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/rockchip/
H A Ddw-dp.c195 struct drm_dp_link_train_set request; member
638 struct drm_dp_link_train_set *request = &link->train.request; in dw_dp_link_train_update_vs_emph() local
644 vs = request->voltage_swing; in dw_dp_link_train_update_vs_emph()
645 pe = request->pre_emphasis; in dw_dp_link_train_update_vs_emph()
728 struct drm_dp_link_train_set *request = &train->request; in dw_dp_link_train_init() local
733 request->voltage_swing[i] = 0; in dw_dp_link_train_init()
736 request->pre_emphasis[i] = 0; in dw_dp_link_train_init()
804 struct drm_dp_link_train_set *request in dw_dp_link_train_adjust() local
[all...]

Completed in 26 milliseconds

123