Searched refs:src_st (Results 1 – 1 of 1) sorted by relevance
/system/core/adb/client/ |
D | file_sync_client.cpp | 1214 struct stat src_st; in do_sync_pull() local 1215 if (!sync_stat_fallback(sc, src_path, &src_st)) { in do_sync_pull() 1226 bool src_isdir = S_ISDIR(src_st.st_mode); in do_sync_pull() 1245 } else if (!should_pull_file(src_st.st_mode)) { in do_sync_pull() 1246 sc.Warning("skipping special file '%s' (mode = 0o%o)", src_path, src_st.st_mode); in do_sync_pull() 1261 sc.SetExpectedTotalBytes(src_st.st_size); in do_sync_pull() 1262 if (!sync_recv(sc, src_path, dst_path, name, src_st.st_size)) { in do_sync_pull() 1267 if (copy_attrs && set_time_and_mode(dst_path, src_st.st_mtime, src_st.st_mode) != 0) { in do_sync_pull()
|