Searched refs:fOut (Results 1 – 6 of 6) sorted by relevance
/frameworks/native/opengl/tests/gl_perfapp/jni/ |
D | gl_code.cpp | 45 if (fOut) { in doTest() 46 fclose(fOut); in doTest() 47 fOut = NULL; in doTest() 74 if (fOut != NULL) { in Java_com_android_glperf_GLPerfLib_init() 76 fclose(fOut); in Java_com_android_glperf_GLPerfLib_init() 77 fOut = NULL; in Java_com_android_glperf_GLPerfLib_init() 80 fOut = fopen(fileName, "w"); in Java_com_android_glperf_GLPerfLib_init() 81 if (fOut == NULL) { in Java_com_android_glperf_GLPerfLib_init() 86 … if (fOut) fprintf(fOut,"varColor, texCount, modulate, extraMath, texSize, blend, Mpps, DC60\r\n"); in Java_com_android_glperf_GLPerfLib_init()
|
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
D | MediaStoreSaver.java | 52 FileOutputStream fOut = new FileOutputStream(file); in savePNG() local 53 bitmap.compress(Bitmap.CompressFormat.PNG, 0, fOut); in savePNG() 55 fOut.flush(); in savePNG() 56 fOut.close(); in savePNG()
|
/frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/ |
D | MediaStoreSaver.java | 58 FileOutputStream fOut = new FileOutputStream(file); in save() local 59 bitmap.compress(format, 100, fOut); in save() 61 fOut.flush(); in save() 62 fOut.close(); in save()
|
/frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/ |
D | MediaStoreSaver.java | 58 FileOutputStream fOut = new FileOutputStream(file); in save() local 59 bitmap.compress(format, 100, fOut); in save() 61 fOut.flush(); in save() 62 fOut.close(); in save()
|
/frameworks/native/opengl/tests/gl_perf/ |
D | fill_common.cpp | 19 FILE * fOut = NULL; variable 129 if (fOut) { in endTimer() 130 fprintf(fOut, "%s, %f, %f\r\n", gCurrentTestName, mpps, dc60); in endTimer() 131 fflush(fOut); in endTimer()
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
D | GraphExporter.java | 54 FileOutputStream fOut = myAppContext.openFileOutput(filename, Context.MODE_PRIVATE); in exportAsDot() local 55 OutputStreamWriter dotFile = new OutputStreamWriter(fOut); in exportAsDot()
|