Searched refs:outFilePath (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Messaging/src/com/android/messaging/util/ |
D | GifTranscoder.java | 43 public static boolean transcode(Context context, String filePath, String outFilePath) { in transcode() argument 49 final boolean success = transcodeInternal(filePath, outFilePath); in transcode() 52 final long outputSize = new File(outFilePath).length(); in transcode() 66 private static native boolean transcodeInternal(String filePath, String outFilePath); in transcodeInternal() argument
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
D | file_utils.cpp | 103 const char *const suffix, const int filePathBufSize, char *const outFilePath) { in getFilePathWithSuffix() argument 104 snprintf(outFilePath, filePathBufSize, "%s%s", filePath, suffix); in getFilePathWithSuffix() 113 const int filePathBufSize, char *const outFilePath) { in getFilePath() argument 114 snprintf(outFilePath, filePathBufSize, "%s/%s", dirPath, fileName); in getFilePath()
|
D | file_utils.h | 37 const int filePathBufSize, char *const outFilePath); 42 const int filePathBufSize, char *const outFilePath);
|
/packages/apps/ManagedProvisioning/tools/java/com/android/managedprovisioning/tools/anim/ |
D | SwiperThemeGenerator.java | 34 String outFilePath = args[0]; in main() local 38 try (OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(outFilePath))) { in main()
|
/packages/apps/Messaging/jni/ |
D | GifTranscoder.cpp | 542 jboolean transcode(JNIEnv* env, jobject clazz, jstring filePath, jstring outFilePath) { in transcode() argument 544 const char* pathOut = env->GetStringUTFChars(outFilePath, JNI_FALSE); in transcode() 550 env->ReleaseStringUTFChars(outFilePath, pathOut); in transcode()
|