Searched defs:outFilePath (Results 1 - 3 of 3) sorted by relevance
/packages/apps/Messaging/src/com/android/messaging/util/ |
H A D | GifTranscoder.java | 43 public static boolean transcode(Context context, String filePath, String outFilePath) { argument 49 final boolean success = transcodeInternal(filePath, outFilePath); 52 final long outputSize = new File(outFilePath).length(); 66 private static native boolean transcodeInternal(String filePath, String outFilePath); argument
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
H A D | file_utils.cpp | 103 const char *const suffix, const int filePathBufSize, char *const outFilePath) { 104 snprintf(outFilePath, filePathBufSize, "%s%s", filePath, suffix); 113 const int filePathBufSize, char *const outFilePath) { 114 snprintf(outFilePath, filePathBufSize, "%s/%s", dirPath, fileName); 102 getFilePathWithSuffix(const char *const filePath, const char *const suffix, const int filePathBufSize, char *const outFilePath) argument 112 getFilePath(const char *const dirPath, const char *const fileName, const int filePathBufSize, char *const outFilePath) argument
|
/packages/apps/Messaging/jni/ |
H A D | GifTranscoder.cpp | 542 jboolean transcode(JNIEnv* env, jobject clazz, jstring filePath, jstring outFilePath) { argument 544 const char* pathOut = env->GetStringUTFChars(outFilePath, JNI_FALSE); 550 env->ReleaseStringUTFChars(outFilePath, pathOut);
|
Completed in 1059 milliseconds