HomeSort by relevance Sort by last modified time
    Searched defs:sourceChannel (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/test/java/libcore/java/nio/channels/
ChannelsTest.java 30 Pipe.SourceChannel sourceChannel = createNonBlockingChannel("abc".getBytes("UTF-8"));
32 Channels.newInputStream(sourceChannel).read();
43 Pipe.SourceChannel sourceChannel = createNonBlockingChannel("abc".getBytes("UTF-8"));
45 Channels.newReader(sourceChannel, "UTF-8").read();
51 private Pipe.SourceChannel createNonBlockingChannel(byte[] content) throws IOException {
55 Pipe.SourceChannel sourceChannel = pipe.source();
56 sourceChannel.configureBlocking(false)
    [all...]
  /external/webkit/Source/WebCore/platform/audio/
AudioBus.cpp 206 const AudioChannel* sourceChannel = sourceBus.channel(0);
207 channel(0)->copyFrom(sourceChannel);
208 channel(1)->copyFrom(sourceChannel);
223 const AudioChannel* sourceChannel = sourceBus.channel(0);
224 channel(0)->sumFrom(sourceChannel);
225 channel(1)->sumFrom(sourceChannel);

Completed in 2146 milliseconds