Home
last modified time | relevance | path

Searched refs:tsf_op_resp (Results 1 – 4 of 4) sorted by relevance

/wlan-driver/qcacld-3.0/core/hdd/src/
Dwlan_hdd_tsf.c777 struct hdd_adapter *adapter, struct hdd_tsf_op_response *tsf_op_resp) in hdd_indicate_tsf_internal() argument
782 if (!adapter || !tsf_op_resp) { in hdd_indicate_tsf_internal()
793 memset(tsf_op_resp, 0, sizeof(*tsf_op_resp)); in hdd_indicate_tsf_internal()
795 tsf_op_resp->status = TSF_NOT_READY; in hdd_indicate_tsf_internal()
799 tsf_op_resp->status = hdd_tsf_check_conn_state(adapter); in hdd_indicate_tsf_internal()
800 if (tsf_op_resp->status != TSF_RETURN) in hdd_indicate_tsf_internal()
805 tsf_op_resp->status = TSF_NOT_RETURNED_BY_FW; in hdd_indicate_tsf_internal()
809 tsf_op_resp->status = TSF_RETURN; in hdd_indicate_tsf_internal()
810 tsf_op_resp->time = adapter->tsf.cur_target_time; in hdd_indicate_tsf_internal()
811 tsf_op_resp->soc_time = adapter->tsf.cur_tsf_sync_soc_time; in hdd_indicate_tsf_internal()
[all …]
Dwlan_hdd_hostapd_wext.c1082 struct hdd_tsf_op_response tsf_op_resp; in __iw_softap_get_three() local
1095 ret = hdd_indicate_tsf(adapter, &tsf_op_resp); in __iw_softap_get_three()
1097 value[0] = tsf_op_resp.status; in __iw_softap_get_three()
1098 value[1] = tsf_op_resp.time & 0xffffffff; in __iw_softap_get_three()
1099 value[2] = (tsf_op_resp.time >> 32) & 0xffffffff; in __iw_softap_get_three()
Dwlan_hdd_wext.c4989 struct hdd_tsf_op_response tsf_op_resp; in __iw_setnone_get_threeint() local
5003 ret = hdd_indicate_tsf(adapter, &tsf_op_resp); in __iw_setnone_get_threeint()
5005 value[0] = tsf_op_resp.status; in __iw_setnone_get_threeint()
5006 value[1] = tsf_op_resp.time & 0xffffffff; in __iw_setnone_get_threeint()
5007 value[2] = (tsf_op_resp.time >> 32) & 0xffffffff; in __iw_setnone_get_threeint()
/wlan-driver/qcacld-3.0/core/hdd/inc/
Dwlan_hdd_tsf.h284 struct hdd_tsf_op_response *tsf_op_resp);
326 struct hdd_tsf_op_response *tsf_op_resp) in hdd_indicate_tsf() argument