HomeSort by relevance Sort by last modified time
    Searched refs:Pipe (Results 51 - 75 of 109) sorted by null

1 23 4 5

  /libcore/ojluni/src/main/java/sun/nio/ch/
SourceChannelImpl.java 36 extends Pipe.SourceChannel
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 38 'Event', 'Queue', 'Manager', 'Pipe', 'Pool', 'JoinableQueue'
52 from multiprocessing.dummy.connection import Pipe
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 38 'Event', 'Queue', 'Manager', 'Pipe', 'Pool', 'JoinableQueue'
52 from multiprocessing.dummy.connection import Pipe
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 38 'Event', 'Queue', 'Manager', 'Pipe', 'Pool', 'JoinableQueue'
52 from multiprocessing.dummy.connection import Pipe
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 38 'Event', 'Queue', 'Manager', 'Pipe', 'Pool', 'JoinableQueue'
52 from multiprocessing.dummy.connection import Pipe
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
SelectorTest.java 25 import java.nio.channels.Pipe;
361 final Pipe pipe = Pipe.open();
362 pipe.source().configureBlocking(false);
363 final SelectionKey key = pipe.source().register(selector, SelectionKey.OP_READ);
372 pipe.sink().write(ByteBuffer.allocate(4)); // unblock select()
FileChannelTest.java 39 import java.nio.channels.Pipe;
109 private Pipe pipe; field in class:FileChannelTest
171 if (null != pipe) {
172 IoUtils.closeQuietly(pipe.source());
173 IoUtils.closeQuietly(pipe.sink());
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
122 connections, or for a Windows named pipe.
141 Accept a connection on the bound socket or named pipe of `self`.
153 Close the bound socket or named pipe of `self`.
183 def Pipe(duplex=True):
185 Returns pair of connection objects at either end of a pipe
196 fd1, fd2 = os.pipe()
205 def Pipe(duplex=True):
207 Returns pair of connection objects at either end of a pipe
    [all...]
managers.py 513 # pipe over which we will retrieve address of server
514 reader, writer = connection.Pipe(duplex=False)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
122 connections, or for a Windows named pipe.
141 Accept a connection on the bound socket or named pipe of `self`.
153 Close the bound socket or named pipe of `self`.
183 def Pipe(duplex=True):
185 Returns pair of connection objects at either end of a pipe
196 fd1, fd2 = os.pipe()
205 def Pipe(duplex=True):
207 Returns pair of connection objects at either end of a pipe
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
122 connections, or for a Windows named pipe.
141 Accept a connection on the bound socket or named pipe of `self`.
153 Close the bound socket or named pipe of `self`.
183 def Pipe(duplex=True):
185 Returns pair of connection objects at either end of a pipe
196 fd1, fd2 = os.pipe()
205 def Pipe(duplex=True):
207 Returns pair of connection objects at either end of a pipe
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
122 connections, or for a Windows named pipe.
141 Accept a connection on the bound socket or named pipe of `self`.
153 Close the bound socket or named pipe of `self`.
183 def Pipe(duplex=True):
185 Returns pair of connection objects at either end of a pipe
196 fd1, fd2 = os.pipe()
205 def Pipe(duplex=True):
207 Returns pair of connection objects at either end of a pipe
    [all...]
  /external/autotest/client/cros/audio/
cras_dbus_utils.py 143 self._parent_conn, self._child_conn = multiprocessing.Pipe()
154 This blocks until parent_conn send stop command to the pipe.
184 @param child_conn: A multiprocessing.Pipe which is used to receive stop
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multiprocessing.py 310 rconn, wconn = self.Pipe(duplex=False)
367 self.child_conn, self.parent_conn = multiprocessing.Pipe()
448 # the values may be in buffer but not yet in pipe so sleep a bit
551 # pushing items onto the pipe.
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multiprocessing.py 310 rconn, wconn = self.Pipe(duplex=False)
367 self.child_conn, self.parent_conn = multiprocessing.Pipe()
448 # the values may be in buffer but not yet in pipe so sleep a bit
551 # pushing items onto the pipe.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 310 rconn, wconn = self.Pipe(duplex=False)
367 self.child_conn, self.parent_conn = multiprocessing.Pipe()
448 # the values may be in buffer but not yet in pipe so sleep a bit
551 # pushing items onto the pipe.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 310 rconn, wconn = self.Pipe(duplex=False)
367 self.child_conn, self.parent_conn = multiprocessing.Pipe()
448 # the values may be in buffer but not yet in pipe so sleep a bit
551 # pushing items onto the pipe.
    [all...]
  /external/autotest/server/site_tests/network_WiFi_RoamOnLowPower/
network_WiFi_RoamOnLowPower.py 19 """Object that forwards stdout from Host.run to a pipe.
23 multiprocessing.Connection (the object returned by multiprocessing.Pipe)
25 pipe to be the target of a stdout_tee.
39 """Flushes the output - not used by the pipe."""
44 """Closes the pipe."""
49 """Returns the file number of the pipe."""
54 """Write to the pipe.
56 @param string: the string to write to the pipe.
63 """Write a number of lines to the pipe.
110 self._pipe_reader, pipe_writer = multiprocessing.Pipe()
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 566 return AsmToken(AsmToken::Pipe, StringRef(TokStart, 1));
  /frameworks/av/services/audioflinger/
Tracks.cpp 34 #include <media/nbaio/Pipe.h>
158 // It should references the buffer via the pipe.
186 Pipe *pipe = new Pipe(mTeeSinkTrackFrames, pipeFormat); local
189 ssize_t index = pipe->negotiate(offers, 1, NULL, numCounterOffers);
191 PipeReader *pipeReader = new PipeReader(*pipe);
195 mTeeSink = pipe;
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 303 case AsmToken::Pipe: OS << "Pipe"; break;
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar 

Completed in 775 milliseconds

1 23 4 5