Lines Matching refs:Wifi
176 Wifi::Wifi(const std::shared_ptr<::android::wifi_system::InterfaceTool> iface_tool, in Wifi() function in aidl::android::hardware::wifi::Wifi
186 bool Wifi::isValid() { in isValid()
191 ndk::ScopedAStatus Wifi::registerEventCallback( in registerEventCallback()
194 &Wifi::registerEventCallbackInternal, in_callback); in registerEventCallback()
197 ndk::ScopedAStatus Wifi::isStarted(bool* _aidl_return) { in isStarted()
202 ndk::ScopedAStatus Wifi::start() { in start()
203 return validateAndCall(this, WifiStatusCode::ERROR_UNKNOWN, &Wifi::startInternal); in start()
206 ndk::ScopedAStatus Wifi::stop() { in stop()
207 return validateAndCallWithLock(this, WifiStatusCode::ERROR_UNKNOWN, &Wifi::stopInternal); in stop()
210 ndk::ScopedAStatus Wifi::getChipIds(std::vector<int32_t>* _aidl_return) { in getChipIds()
211 return validateAndCall(this, WifiStatusCode::ERROR_UNKNOWN, &Wifi::getChipIdsInternal, in getChipIds()
215 ndk::ScopedAStatus Wifi::getChip(int32_t in_chipId, std::shared_ptr<IWifiChip>* _aidl_return) { in getChip()
216 return validateAndCall(this, WifiStatusCode::ERROR_UNKNOWN, &Wifi::getChipInternal, in getChip()
220 binder_status_t Wifi::dump(int fd, const char** args, uint32_t numArgs) { in dump()
238 ndk::ScopedAStatus Wifi::registerEventCallbackInternal( in registerEventCallbackInternal()
246 ndk::ScopedAStatus Wifi::startInternal() { in startInternal()
302 ndk::ScopedAStatus Wifi::stopInternal( in stopInternal()
341 std::pair<std::vector<int32_t>, ndk::ScopedAStatus> Wifi::getChipIdsInternal() { in getChipIdsInternal()
351 std::pair<std::shared_ptr<IWifiChip>, ndk::ScopedAStatus> Wifi::getChipInternal(int32_t chip_id) { in getChipInternal()
360 ndk::ScopedAStatus Wifi::initializeModeControllerAndLegacyHal() { in initializeModeControllerAndLegacyHal()
385 ndk::ScopedAStatus Wifi::stopLegacyHalAndDeinitializeModeController( in stopLegacyHalAndDeinitializeModeController()
413 int32_t Wifi::getChipIdFromWifiChip(std::shared_ptr<WifiChip>& chip) { in getChipIdFromWifiChip()