Searched defs:filepath (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/graphics/java/android/graphics/drawable/
H A DBitmapDrawable.java120 public BitmapDrawable(String filepath) { argument
121 this(new BitmapState(BitmapFactory.decodeFile(filepath)), null);
123 android.util.Log.w("BitmapDrawable", "BitmapDrawable cannot decode " + filepath);
131 public BitmapDrawable(Resources res, String filepath) { argument
132 this(new BitmapState(BitmapFactory.decodeFile(filepath)), null);
135 android.util.Log.w("BitmapDrawable", "BitmapDrawable cannot decode " + filepath);
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp493 const String8& rootpath, const String8& filepath, BackupDataWriter* writer)
496 const char* relstart = filepath.string() + rootpath.length();
516 for (size_t i = 0; i < filepath.length(); i++) {
517 if ((filepath[i] & 0x80) != 0) {
526 if (lstat64(filepath.string(), &s) != 0) {
528 ALOGE("Error %d (%s) from lstat64(%s)", err, strerror(err), filepath.string());
540 int fd = open(filepath.string(), O_RDONLY);
543 ALOGE("Error %d (%s) from open(%s)", err, strerror(err), filepath.string());
591 ALOGW("Error: unknown file mode 0%o [%s]", s.st_mode, filepath.string());
688 ALOGE("Unable to read file [%s], err=%d (%s)", filepath
492 write_tarfile(const String8& packageName, const String8& domain, const String8& rootpath, const String8& filepath, BackupDataWriter* writer) argument
[all...]
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaArtistNativeHelper.java3129 * @param filepath The file path for which the frame needs to be displayed
3137 long renderMediaItemPreviewFrame(Surface surface, String filepath, argument
3141 timeMs = (long)nativeRenderMediaItemPreviewFrame(surface, filepath, framewidth,
4021 private native int nativeRenderMediaItemPreviewFrame(Surface mSurface, String filepath, argument

Completed in 57 milliseconds