Home
last modified time | relevance | path

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

/aosp12/packages/modules/adb/client/
H A Dfile_sync_client.cpp1709 struct stat src_st; in do_sync_pull() local
1710 if (!sync_stat_fallback(sc, src_path, &src_st)) { in do_sync_pull()
1721 bool src_isdir = S_ISDIR(src_st.st_mode); in do_sync_pull()
1740 } else if (!should_pull_file(src_st.st_mode)) { in do_sync_pull()
1741 sc.Warning("skipping special file '%s' (mode = 0o%o)", src_path, src_st.st_mode); in do_sync_pull()
1756 sc.SetExpectedTotalBytes(src_st.st_size); in do_sync_pull()
1757 if (!sync_recv(sc, src_path, dst_path, name, src_st.st_size, compression)) { in do_sync_pull()
1762 if (copy_attrs && set_time_and_mode(dst_path, src_st.st_mtime, src_st.st_mode) != 0) { in do_sync_pull()