Lines Matching defs:remote_file
430 Status AdbClient::SyncService::internalPullFile(const FileSpec &remote_file,
441 const auto remote_file_path = remote_file.GetPath(false);
466 const FileSpec &remote_file) {
474 file_description << remote_file.GetPath(false).c_str() << "," << kDefaultMode;
521 Status AdbClient::SyncService::internalStat(const FileSpec &remote_file,
524 const std::string remote_file_path(remote_file.GetPath(false));
558 Status AdbClient::SyncService::PullFile(const FileSpec &remote_file,
560 return executeCommand([this, &remote_file, &local_file]() {
561 return internalPullFile(remote_file, local_file);
566 const FileSpec &remote_file) {
567 return executeCommand([this, &local_file, &remote_file]() {
568 return internalPushFile(local_file, remote_file);
572 Status AdbClient::SyncService::Stat(const FileSpec &remote_file, uint32_t &mode,
574 return executeCommand([this, &remote_file, &mode, &size, &mtime]() {
575 return internalStat(remote_file, mode, size, mtime);