Searched refs:DisconnectCommand (Results 1 – 8 of 8) sorted by relevance
23 DisconnectCommand::DisconnectCommand(const WifiDirectDisconnectInfo &info, const WifiDirectDisconne… in DisconnectCommand() function in OHOS::SoftBus::DisconnectCommand52 std::string DisconnectCommand::GetRemoteDeviceId() const in GetRemoteDeviceId()67 std::shared_ptr<WifiDirectProcessor> DisconnectCommand::GetProcessor() in GetProcessor()77 DisconnectInfo DisconnectCommand::GetDisconnectInfo() const in GetDisconnectInfo()82 std::shared_ptr<NegotiateChannel> DisconnectCommand::GetNegotiateChannel() const in GetNegotiateChannel()87 void DisconnectCommand::OnSuccess() const in OnSuccess()93 void DisconnectCommand::OnFailure(int32_t reason) const in OnFailure()
29 class DisconnectCommand : public WifiDirectCommand {31 …DisconnectCommand(const WifiDirectDisconnectInfo &info, const WifiDirectDisconnectCallback &callba…
30 …using DisconnectCreator = std::function<std::shared_ptr<DisconnectCommand>(const WifiDirectDisconn…36 std::shared_ptr<DisconnectCommand> CreateDisconnectCommand(const WifiDirectDisconnectInfo &info,
33 std::shared_ptr<DisconnectCommand> CommandFactory::CreateDisconnectCommand(const WifiDirectDisconne… in CreateDisconnectCommand()37 return std::make_shared<DisconnectCommand>(info, callback); in CreateDisconnectCommand()
38 }).Handle<std::shared_ptr<DisconnectCommand>>([this] (auto &command) { in Run()
67 void ProcessDisconnectCommand(std::shared_ptr<DisconnectCommand> &command);
170 … .Handle<std::shared_ptr<DisconnectCommand>>([this](std::shared_ptr<DisconnectCommand> &command) { in AvailableState()283 void P2pV1Processor::ProcessDisconnectCommand(std::shared_ptr<DisconnectCommand> &command) in ProcessDisconnectCommand()
144 executor->SendEvent(std::dynamic_pointer_cast<DisconnectCommand>(command)); in ProcessNextCommand()