Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt/
DCrunchCache.cpp19 CrunchCache::CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff) in CrunchCache() argument
20 : mSourcePath(sourcePath), mDestPath(destPath), mSourceFiles(0), mDestFiles(0), mFileFinder(ff) in CrunchCache()
DCrunchCache.h32 CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff);
/frameworks/native/cmds/rawbu/
Dbackup.cpp372 static int backup_data(const char* destPath) in backup_data() argument
376 FILE* fh = fopen(destPath, "w"); in backup_data()
379 destPath, strerror(errno)); in backup_data()
383 printf("Backing up /data to %s...\n", destPath); in backup_data()
386 backupFilePath = strdup(destPath); in backup_data()
398 destPath, strerror(errno)); in backup_data()
404 destPath, strerror(errno)); in backup_data()
/frameworks/base/media/java/android/mtp/
DMtpDevice.java328 public boolean importFile(int objectHandle, @NonNull String destPath) { in importFile() argument
329 return native_import_file(objectHandle, destPath); in importFile()
437 private native boolean native_import_file(int objectHandle, String destPath); in native_import_file() argument
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
DMtpClient.java410 public boolean importFile(String deviceName, int objectHandle, String destPath) { in importFile() argument
415 return device.importFile(objectHandle, destPath); in importFile()
/frameworks/av/media/mtp/
DMtpDevice.cpp659 bool MtpDevice::readObject(MtpObjectHandle handle, const char* destPath, int group, int perm) { in readObject() argument
660 ALOGD("readObject: %s", destPath); in readObject()
661 int fd = ::open(destPath, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); in readObject()
663 ALOGE("open failed for %s", destPath); in readObject()
DMtpDevice.h122 bool readObject(MtpObjectHandle handle, const char* destPath, int group,
/frameworks/layoutlib/bridge/src/android/graphics/
DPath_Delegate.java583 public static void addPath(long destPath, long srcPath, AffineTransform transform) { in addPath() argument
584 Path_Delegate destPathDelegate = sManager.getDelegate(destPath); in addPath()