Home
last modified time | relevance | path

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

/packages/modules/adb/client/
Dfile_sync_client.cpp1699 struct stat src_st; in do_sync_pull() local
1700 if (!sync_stat_fallback(sc, src_path, &src_st)) { in do_sync_pull()
1711 bool src_isdir = S_ISDIR(src_st.st_mode); in do_sync_pull()
1730 } else if (!should_pull_file(src_st.st_mode)) { in do_sync_pull()
1731 sc.Warning("skipping special file '%s' (mode = 0o%o)", src_path, src_st.st_mode); in do_sync_pull()
1746 sc.SetExpectedTotalBytes(src_st.st_size); in do_sync_pull()
1747 if (!sync_recv(sc, src_path, dst_path, name, src_st.st_size, compression)) { in do_sync_pull()
1752 if (copy_attrs && set_time_and_mode(dst_path, src_st.st_mtime, src_st.st_mode) != 0) { in do_sync_pull()