Searched refs:fileChannel (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/speech/tts/
H A DFileSynthesisCallback.java57 FileSynthesisCallback(@NonNull FileChannel fileChannel, argument
60 mFileChannel = fileChannel;
116 FileChannel fileChannel = null;
136 fileChannel = mFileChannel;
140 fileChannel.write(ByteBuffer.allocate(WAV_HEADER_LENGTH));
158 FileChannel fileChannel = null;
177 fileChannel = mFileChannel;
185 fileChannel.write(ByteBuffer.wrap(buffer, offset, length));
200 FileChannel fileChannel = null;
226 fileChannel
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DFontFamily.java73 FileChannel fileChannel = file.getChannel();
74 long fontSize = fileChannel.size();
75 ByteBuffer fontBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0, fontSize);
H A DTypeface.java304 FileChannel fileChannel = file.getChannel();
305 long fontSize = fileChannel.size();
306 fontBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0, fontSize);

Completed in 207 milliseconds