Searched refs:fOutput (Results 1 – 5 of 5) sorted by relevance
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | Utils.java | 99 FileOutputStream fOutput = new FileOutputStream(file); in obtainFile() local 103 fOutput.write(dataBuffer, 0, (int) offset); in obtainFile() 106 fOutput.write(dataBuffer, 0, readLength); in obtainFile() 109 fOutput.close(); in obtainFile()
|
D | TypefaceTest.java | 247 FileOutputStream fOutput = new FileOutputStream(file); in obtainPath() local 251 fOutput.write(dataBuffer, 0, readLength); in obtainPath() 254 fOutput.close(); in obtainPath()
|
D | BitmapRegionDecoderTest.java | 846 FileOutputStream fOutput = new FileOutputStream(file); in obtainPath() local 851 fOutput.write(dataBuffer, 0, readLength); in obtainPath() 854 fOutput.close(); in obtainPath()
|
D | AImageDecoderTest.java | 968 try (FileOutputStream fOutput = new FileOutputStream(file)) { 969 bitmap.compress(format, 80, fOutput);
|
/cts/tests/tests/media/src/android/media/cts/ |
D | SoundPoolTest.java | 142 FileOutputStream fOutput = null; in createSoundFile() local 144 fOutput = new FileOutputStream(f); in createSoundFile() 149 fOutput.write(buffer, 0, length); in createSoundFile() 153 if (fOutput != null) { in createSoundFile() 154 fOutput.flush(); in createSoundFile() 155 fOutput.close(); in createSoundFile()
|