Lines Matching refs:remote_file
426 Status AdbClient::SyncService::internalPullFile(const FileSpec &remote_file, in internalPullFile() argument
436 const auto remote_file_path = remote_file.GetPath(false); in internalPullFile()
460 const FileSpec &remote_file) { in internalPushFile() argument
467 file_description << remote_file.GetPath(false).c_str() << "," << kDefaultMode; in internalPushFile()
508 Status AdbClient::SyncService::internalStat(const FileSpec &remote_file, in internalStat() argument
511 const std::string remote_file_path(remote_file.GetPath(false)); in internalStat()
542 Status AdbClient::SyncService::PullFile(const FileSpec &remote_file, in PullFile() argument
544 return executeCommand([this, &remote_file, &local_file]() { in PullFile()
545 return internalPullFile(remote_file, local_file); in PullFile()
550 const FileSpec &remote_file) { in PushFile() argument
551 return executeCommand([this, &local_file, &remote_file]() { in PushFile()
552 return internalPushFile(local_file, remote_file); in PushFile()
556 Status AdbClient::SyncService::Stat(const FileSpec &remote_file, uint32_t &mode, in Stat() argument
558 return executeCommand([this, &remote_file, &mode, &size, &mtime]() { in Stat()
559 return internalStat(remote_file, mode, size, mtime); in Stat()