Lines Matching refs:result
93 static auto AdbInstallPackageHandler(Device* device, InstallResult* result) { in AdbInstallPackageHandler() argument
101 *result = INSTALL_ERROR; in AdbInstallPackageHandler()
118 *result = InstallPackage(package.get(), FUSE_SIDELOAD_HOST_PATHNAME, false, 0, device); in AdbInstallPackageHandler()
125 return std::make_pair(*result == INSTALL_SUCCESS, should_continue); in AdbInstallPackageHandler()
128 static auto AdbRebootHandler(MinadbdCommand command, InstallResult* result, in AdbRebootHandler() argument
151 *result = INSTALL_REBOOT; in AdbRebootHandler()
179 const auto [result, should_continue] = command_func(); in HandleMessageFromMinadbd()
180 LOG(INFO) << "Command " << static_cast<uint32_t>(command_type) << " finished with " << result; in HandleMessageFromMinadbd()
181 if (!WriteStatusToFd(result ? MinadbdCommandStatus::kSuccess : MinadbdCommandStatus::kFailure, in HandleMessageFromMinadbd()
372 bool result = WipeData(device); in ApplyFromAdb() local
373 return std::make_pair(result, true); in ApplyFromAdb()