Home
last modified time | relevance | path

Searched refs:dst_dir (Results 1 – 1 of 1) sorted by relevance

/packages/modules/adb/client/
Dfile_sync_client.cpp1480 std::string dst_dir = dst; in do_sync_push() local
1491 if (dst_dir.back() != '/') { in do_sync_push()
1492 dst_dir.push_back('/'); in do_sync_push()
1494 dst_dir.append(android::base::Basename(src_path)); in do_sync_push()
1498 copy_local_dir_remote(sc, src_path, dst_dir, sync, false, compression, dry_run); in do_sync_push()
1713 std::string dst_dir = dst; in do_sync_pull() local
1722 if (!adb_is_separator(dst_dir.back())) { in do_sync_pull()
1723 dst_dir.push_back(OS_PATH_SEPARATOR); in do_sync_pull()
1725 dst_dir.append(android::base::Basename(src_path)); in do_sync_pull()
1728 success &= copy_remote_dir_local(sc, src_path, dst_dir, copy_attrs, compression); in do_sync_pull()