HomeSort by relevance Sort by last modified time
    Searched refs:EndPoint (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/libchrome/sandbox/linux/syscall_broker/
broker_channel.h 20 typedef base::ScopedFD EndPoint;
21 static void CreatePair(EndPoint* reader, EndPoint* writer);
broker_host.h 25 BrokerChannel::EndPoint ipc_channel);
32 const BrokerChannel::EndPoint ipc_channel_;
broker_channel.cc 17 void BrokerChannel::CreatePair(EndPoint* reader, EndPoint* writer) {
broker_client.h 34 BrokerChannel::EndPoint ipc_channel,
57 const BrokerChannel::EndPoint ipc_channel_;
broker_process.cc 64 BrokerChannel::EndPoint ipc_reader;
65 BrokerChannel::EndPoint ipc_writer;
  /external/jetty/src/java/org/eclipse/jetty/io/
ConnectedEndPoint.java 21 public interface ConnectedEndPoint extends EndPoint
AbstractConnection.java 32 protected final EndPoint _endp;
34 public AbstractConnection(EndPoint endp)
36 _endp=(EndPoint)endp;
40 public AbstractConnection(EndPoint endp,long timestamp)
42 _endp=(EndPoint)endp;
51 public EndPoint getEndPoint()
EndPoint.java 26 * A transport EndPoint
28 public interface EndPoint
31 * Shutdown any backing output stream associated with the endpoint
38 * Shutdown any backing input stream associated with the endpoint
45 * Close any backing stream associated with the endpoint
55 * @throws EofException If input is shutdown or the endpoint is closed.
68 * @throws EofException If the endpoint is closed or output is shutdown.
90 * @return The local IP address to which this <code>EndPoint</code> is bound, or <code>null</code>
91 * if this <code>EndPoint</code> does not represent a network connection.
97 * @return The local host name to which this <code>EndPoint</code> is bound, or <code>null</code
    [all...]
  /external/libnfc-nci/src/udrv/include/
uusb.h 158 typedef void (*tUUSB_RX_START_CB ) (tUUSB_EP_ID EndPoint,
162 typedef void (*tUUSB_RX_COMPLETE_CB ) (tUUSB_EP_ID EndPoint,
166 typedef void (*tUUSB_TX_COMPLETE_CB ) (tUUSB_EP_ID EndPoint,
239 tUUSB_EP_ID EndPoint,
256 BT_API extern tUUSB_STATUS UUSB_SetEndPointState (tUUSB_EP_ID EndPoint,
269 BT_API extern tUUSB_STATUS UUSB_WriteEndPoint (tUUSB_EP_ID EndPoint,
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketServletConnectionD06.java 25 import org.eclipse.jetty.io.EndPoint;
31 public WebSocketServletConnectionD06(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol)
34 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol);
WebSocketServletConnectionD08.java 26 import org.eclipse.jetty.io.EndPoint;
32 public WebSocketServletConnectionD08(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol,
35 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft);
WebSocketServletConnectionRFC6455.java 26 import org.eclipse.jetty.io.EndPoint;
32 public WebSocketServletConnectionRFC6455(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol,
35 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft);
WebSocketGeneratorD00.java 25 import org.eclipse.jetty.io.EndPoint;
39 final private EndPoint _endp;
42 public WebSocketGeneratorD00(WebSocketBuffers buffers, EndPoint endp)
WebSocketGeneratorD06.java 24 import org.eclipse.jetty.io.EndPoint;
38 final private EndPoint _endp;
45 public WebSocketGeneratorD06(WebSocketBuffers buffers, EndPoint endp)
52 public WebSocketGeneratorD06(WebSocketBuffers buffers, EndPoint endp, MaskGen maskGen)
WebSocketServletConnectionD00.java 26 import org.eclipse.jetty.io.EndPoint;
33 public WebSocketServletConnectionD00(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol)
36 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol);
WebSocketParserD00.java 25 import org.eclipse.jetty.io.EndPoint;
48 private final EndPoint _endp;
60 * @param endp the endpoint
63 public WebSocketParserD00(WebSocketBuffers buffers, EndPoint endp, FrameHandler handler)
85 * available. Fill data from the {@link EndPoint} only as necessary.
WebSocketGeneratorD08.java 26 import org.eclipse.jetty.io.EndPoint;
37 private final EndPoint _endp;
45 public WebSocketGeneratorD08(WebSocketBuffers buffers, EndPoint endp)
50 public WebSocketGeneratorD08(WebSocketBuffers buffers, EndPoint endp, MaskGen maskGen)
  /external/jetty/src/java/org/eclipse/jetty/server/
Connector.java 24 import org.eclipse.jetty.io.EndPoint;
184 /** Customize a request for an endpoint.
186 * the particular endpoint (eg security properties from a SSL connection).
187 * @param endpoint
191 void customize(EndPoint endpoint, Request request) throws IOException;
194 /** Persist an endpoint.
196 * @param endpoint
199 void persist(EndPoint endpoint) throws IOException
    [all...]
BlockingHttpConnection.java 28 import org.eclipse.jetty.io.EndPoint;
40 public BlockingHttpConnection(Connector connector, EndPoint endpoint, Server server)
42 super(connector,endpoint,server);
45 public BlockingHttpConnection(Connector connector, EndPoint endpoint, Server server, Parser parser, Generator generator, Request request)
47 super(connector,endpoint,server,parser,generator,request);
64 // do while the endpoint is open
  /external/jetty/src/java/org/eclipse/jetty/server/bio/
SocketConnector.java 33 import org.eclipse.jetty.io.EndPoint;
62 protected final Set<EndPoint> _connections;
71 _connections=new HashSet<EndPoint>();
128 protected Connection newConnection(EndPoint endpoint)
130 return new BlockingHttpConnection(this, endpoint, getServer());
135 public void customize(EndPoint endpoint, Request request)
138 ConnectorEndPoint connection = (ConnectorEndPoint)endpoint;
142 super.customize(endpoint, request)
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
SyncStorageEngineTest.java 65 SyncStorageEngine.EndPoint endPoint = new SyncStorageEngine.EndPoint(account, "auth1", 0);
66 SyncStatusInfo info = engine.getStatusByAuthority(endPoint);
  /external/jetty/src/java/org/eclipse/jetty/client/
SocketConnector.java 27 import org.eclipse.jetty.io.EndPoint;
62 final EndPoint endpoint=new SocketEndPoint(socket); local
64 final AbstractHttpConnection connection=new BlockingHttpConnection(_httpClient.getRequestBuffers(),_httpClient.getResponseBuffers(),endpoint);
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
IdleTimeoutHandler.java 29 import org.eclipse.jetty.io.EndPoint;
85 final EndPoint endp = connection==null?null:connection.getEndPoint();
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java 144 SyncStorageEngine.EndPoint ep = new SyncStorageEngine.EndPoint(new Account("name", "type"),
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 90 const SlotIndex EndPoint;
94 LiveQueryResult(VNInfo *EarlyVal, VNInfo *LateVal, SlotIndex EndPoint,
96 : EarlyVal(EarlyVal), LateVal(LateVal), EndPoint(EndPoint), Kill(Kill)
115 return EndPoint.isDead();
144 SlotIndex endPoint() const {
145 return EndPoint;
506 SlotIndex EndPoint;
510 EndPoint = I->end;
515 return LiveQueryResult(EarlyVal, LateVal, EndPoint, Kill)
    [all...]

Completed in 420 milliseconds

1 2 3