Home
last modified time | relevance | path

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

/packages/modules/adb/fastdeploy/deploypatchgenerator/
Ddeploy_patch_generator_test.cpp58 apkSize = adb_lseek(apkFile, 0L, SEEK_END); in TEST()
67 long patchSize = adb_lseek(output.fd, 0L, SEEK_END); in TEST()
86 int64_t patchSize = adb_lseek(output.fd, 0L, SEEK_END); in TEST()
Dpatch_utils_test.cpp40 adb_lseek(input, 0, SEEK_SET); in FileMatchesContent()
64 adb_lseek(output.fd, 0, SEEK_SET); in TEST()
75 adb_lseek(input.fd, 0, SEEK_SET); in TEST()
Ddeploy_patch_generator.cpp115 adb_lseek(input, hostDataLength, SEEK_CUR); in WritePatchEntry()
127 size_t newApkSize = adb_lseek(input, 0L, SEEK_END); in GeneratePatch()
128 adb_lseek(input, 0L, SEEK_SET); in GeneratePatch()
/packages/modules/adb/
Dsysdeps.h108 extern int64_t adb_lseek(borrowed_fd fd, int64_t pos, int where);
557 static inline int64_t adb_lseek(borrowed_fd fd, int64_t pos, int where) { in adb_lseek() function
647 #define unix_lseek adb_lseek
Dsysdeps_win32.cpp520 int64_t adb_lseek(borrowed_fd fd, int64_t pos, int where) { in adb_lseek() function
/packages/modules/adb/client/
Dincremental_utils.cpp72 return adb_lseek(fd, 4, SEEK_CUR); in skip_int()
109 return (int32_t)adb_lseek(fd, size, SEEK_CUR); in skip_bytes_with_size()
Dcommandline.cpp956 if (adb_lseek(package_fd, offset, SEEK_SET) != offset) { in adb_sideload_install()