Lines Matching refs:WifiRttController
31 WifiRttController::WifiRttController(const std::string& iface_name, in WifiRttController() function in aidl::android::hardware::wifi::WifiRttController
36 std::shared_ptr<WifiRttController> WifiRttController::create( in create()
39 std::shared_ptr<WifiRttController> ptr = in create()
40 ndk::SharedRefBase::make<WifiRttController>(iface_name, bound_iface, legacy_hal); in create()
41 std::weak_ptr<WifiRttController> weak_ptr_this(ptr); in create()
46 void WifiRttController::invalidate() { in invalidate()
52 bool WifiRttController::isValid() { in isValid()
56 void WifiRttController::setWeakPtr(std::weak_ptr<WifiRttController> ptr) { in setWeakPtr()
61 WifiRttController::getEventCallbacks() { in getEventCallbacks()
65 std::string WifiRttController::getIfaceName() { in getIfaceName()
69 ndk::ScopedAStatus WifiRttController::getBoundIface(std::shared_ptr<IWifiStaIface>* _aidl_return) { in getBoundIface()
71 &WifiRttController::getBoundIfaceInternal, _aidl_return); in getBoundIface()
74 ndk::ScopedAStatus WifiRttController::registerEventCallback( in registerEventCallback()
77 &WifiRttController::registerEventCallbackInternal, callback); in registerEventCallback()
80 ndk::ScopedAStatus WifiRttController::rangeRequest(int32_t in_cmdId, in rangeRequest()
83 &WifiRttController::rangeRequestInternal, in_cmdId, in_rttConfigs); in rangeRequest()
86 ndk::ScopedAStatus WifiRttController::rangeCancel(int32_t in_cmdId, in rangeCancel()
89 &WifiRttController::rangeCancelInternal, in_cmdId, in_addrs); in rangeCancel()
92 ndk::ScopedAStatus WifiRttController::getCapabilities(RttCapabilities* _aidl_return) { in getCapabilities()
94 &WifiRttController::getCapabilitiesInternal, _aidl_return); in getCapabilities()
97 ndk::ScopedAStatus WifiRttController::setLci(int32_t in_cmdId, const RttLciInformation& in_lci) { in setLci()
99 &WifiRttController::setLciInternal, in_cmdId, in_lci); in setLci()
102 ndk::ScopedAStatus WifiRttController::setLcr(int32_t in_cmdId, const RttLcrInformation& in_lcr) { in setLcr()
104 &WifiRttController::setLcrInternal, in_cmdId, in_lcr); in setLcr()
107 ndk::ScopedAStatus WifiRttController::getResponderInfo(RttResponder* _aidl_return) { in getResponderInfo()
109 &WifiRttController::getResponderInfoInternal, _aidl_return); in getResponderInfo()
112 ndk::ScopedAStatus WifiRttController::enableResponder(int32_t in_cmdId, in enableResponder()
117 &WifiRttController::enableResponderInternal, in_cmdId, in_channelHint, in enableResponder()
121 ndk::ScopedAStatus WifiRttController::disableResponder(int32_t in_cmdId) { in disableResponder()
123 &WifiRttController::disableResponderInternal, in_cmdId); in disableResponder()
127 WifiRttController::getBoundIfaceInternal() { in getBoundIfaceInternal()
131 ndk::ScopedAStatus WifiRttController::registerEventCallbackInternal( in registerEventCallbackInternal()
137 ndk::ScopedAStatus WifiRttController::rangeRequestInternal( in rangeRequestInternal()
145 std::weak_ptr<WifiRttController> weak_ptr_this = weak_ptr_this_; in rangeRequestInternal()
223 ndk::ScopedAStatus WifiRttController::rangeCancelInternal(int32_t cmd_id, in rangeCancelInternal()
236 std::pair<RttCapabilities, ndk::ScopedAStatus> WifiRttController::getCapabilitiesInternal() { in getCapabilitiesInternal()
266 ndk::ScopedAStatus WifiRttController::setLciInternal(int32_t cmd_id, const RttLciInformation& lci) { in setLciInternal()
276 ndk::ScopedAStatus WifiRttController::setLcrInternal(int32_t cmd_id, const RttLcrInformation& lcr) { in setLcrInternal()
286 std::pair<RttResponder, ndk::ScopedAStatus> WifiRttController::getResponderInfoInternal() { in getResponderInfoInternal()
300 ndk::ScopedAStatus WifiRttController::enableResponderInternal(int32_t cmd_id, in enableResponderInternal()
317 ndk::ScopedAStatus WifiRttController::disableResponderInternal(int32_t cmd_id) { in disableResponderInternal()