Home
last modified time | relevance | path

Searched refs:inputChannel (Results 1 – 4 of 4) sorted by relevance

/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/
DFileMover.java36 FileChannel inputChannel = input.getChannel(); in moveFileBetweenContexts() local
37 inputChannel.transferTo(0, inputChannel.size(), output.getChannel()); in moveFileBetweenContexts()
/packages/apps/Contacts/src/com/android/contacts/vcard/
DImportVCardActivity.java458 ReadableByteChannel inputChannel = null; in copyTo() local
462 inputChannel = Channels.newChannel(resolver.openInputStream(sourceUri)); in copyTo()
466 while (inputChannel.read(buffer) != -1) { in copyTo()
476 if (inputChannel != null) { in copyTo()
478 inputChannel.close(); in copyTo()
/packages/apps/TV/tests/common/src/com/android/tv/testing/
DFakeEpgReader.java92 public boolean apply(@Nullable Channel inputChannel) { in getChannels()
94 inputChannel.getDisplayNumber(), in getChannels()
/packages/services/Car/experimental/service/src/com/android/experimentalcar/
DTouchDriverAwarenessSupplier.java270 TouchReceiver(InputChannel inputChannel, Looper looper) { in TouchReceiver() argument
271 super(inputChannel, looper); in TouchReceiver()