Home
last modified time | relevance | path

Searched defs:endpoint (Results 1 – 25 of 53) sorted by relevance

123

/external/jetty/src/java/org/eclipse/jetty/server/nio/
DSelectChannelConnector.java135 public void customize(EndPoint endpoint, Request request) throws IOException in customize()
144 public void persist(EndPoint endpoint) throws IOException in persist()
277 protected void endPointClosed(SelectChannelEndPoint endpoint) in endPointClosed()
283 protected AsyncConnection newConnection(SocketChannel channel,final AsyncEndPoint endpoint) in newConnection()
304 protected void endPointClosed(final SelectChannelEndPoint endpoint) in endPointClosed()
310 protected void endPointOpened(SelectChannelEndPoint endpoint) in endPointOpened()
317 protected void endPointUpgraded(ConnectedEndPoint endpoint, Connection oldConnection) in endPointUpgraded()
323 …public AsyncConnection newConnection(SocketChannel channel,AsyncEndPoint endpoint, Object attachme… in newConnection()
DNetworkTrafficSelectChannelConnector.java68 protected void endPointClosed(SelectChannelEndPoint endpoint) in endPointClosed()
/external/jetty/src/java/org/eclipse/jetty/io/nio/
DSelectorManager.java340 protected abstract void endPointClosed(SelectChannelEndPoint endpoint); in endPointClosed()
346 protected abstract void endPointOpened(SelectChannelEndPoint endpoint); in endPointOpened()
349 protected abstract void endPointUpgraded(ConnectedEndPoint endpoint,Connection oldConnection); in endPointUpgraded()
352 …public abstract AsyncConnection newConnection(SocketChannel channel, AsyncEndPoint endpoint, Objec… in newConnection()
466 SelectChannelEndPoint endpoint = (SelectChannelEndPoint)change; in doSelect() local
481 … SelectChannelEndPoint endpoint = createEndPoint((SocketChannel)channel,key); in doSelect() local
496 SelectChannelEndPoint endpoint = createEndPoint(channel,key); in doSelect() local
609 … SelectChannelEndPoint endpoint = (SelectChannelEndPoint)key.attachment(); in doSelect() local
639 SelectChannelEndPoint endpoint = createEndPoint(channel,key); in doSelect() local
654 SelectChannelEndPoint endpoint = createEndPoint(channel,key); in doSelect() local
[all …]
/external/guava/guava/src/com/google/common/collect/
DCut.java38 final C endpoint; field in Cut
40 Cut(@Nullable C endpoint) { in Cut()
84 C endpoint() { in endpoint() method in Cut
119 @Override Comparable<?> endpoint() { in endpoint() method in Cut.BelowAll
188 @Override Comparable<?> endpoint() { in endpoint() method in Cut.AboveAll
234 static <C extends Comparable> Cut<C> belowValue(C endpoint) { in belowValue()
239 BelowValue(C endpoint) { in BelowValue()
295 static <C extends Comparable> Cut<C> aboveValue(C endpoint) { in aboveValue()
300 AboveValue(C endpoint) { in AboveValue()
DRange.java238 public static <C extends Comparable<?>> Range<C> lessThan(C endpoint) { in lessThan()
248 public static <C extends Comparable<?>> Range<C> atMost(C endpoint) { in atMost()
259 C endpoint, BoundType boundType) { in upTo()
276 public static <C extends Comparable<?>> Range<C> greaterThan(C endpoint) { in greaterThan()
286 public static <C extends Comparable<?>> Range<C> atLeast(C endpoint) { in atLeast()
297 C endpoint, BoundType boundType) { in downTo()
DGeneralRange.java67 static <T> GeneralRange<T> downTo(Comparator<? super T> comparator, @Nullable T endpoint, in downTo()
76 static <T> GeneralRange<T> upTo(Comparator<? super T> comparator, @Nullable T endpoint, in upTo()
/external/jetty/src/java/org/eclipse/jetty/server/
DBlockingHttpConnection.java40 public BlockingHttpConnection(Connector connector, EndPoint endpoint, Server server) in BlockingHttpConnection()
45 …public BlockingHttpConnection(Connector connector, EndPoint endpoint, Server server, Parser parser… in BlockingHttpConnection()
DAsyncHttpConnection.java48 public AsyncHttpConnection(Connector connector, EndPoint endpoint, Server server) in AsyncHttpConnection()
DConnector.java191 void customize(EndPoint endpoint, Request request) throws IOException; in customize()
199 void persist(EndPoint endpoint) throws IOException; in persist()
/external/libusb/libusb/
Dsync.c154 unsigned char endpoint, unsigned char *buffer, int length, in do_sync_bulk_transfer()
256 unsigned char endpoint, unsigned char *data, int length, int *transferred, in libusb_bulk_transfer()
305 struct libusb_device_handle *dev_handle, unsigned char endpoint, in libusb_interrupt_transfer()
Dcore.c675 struct libusb_config_descriptor *config, unsigned char endpoint) in find_endpoint()
716 unsigned char endpoint) in libusb_get_max_packet_size()
765 unsigned char endpoint) in libusb_get_max_iso_packet_size()
1310 unsigned char endpoint) in libusb_clear_halt()
Ddescriptor.c71 static void clear_endpoint(struct libusb_endpoint_descriptor *endpoint) in clear_endpoint()
78 struct libusb_endpoint_descriptor *endpoint, unsigned char *buffer, in parse_endpoint()
272 struct libusb_endpoint_descriptor *endpoint; in parse_interface() local
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
DUdpKernel.java202 protected void enqueueWrite( Endpoint endpoint, DatagramPacket packet ) in enqueueWrite()
209 private Endpoint endpoint; field in UdpKernel.MessageWriter
212 public MessageWriter( Endpoint endpoint, DatagramPacket packet ) in MessageWriter()
/external/jetty/src/java/org/eclipse/jetty/websocket/
DWebSocketClientFactory.java309 …public AsyncConnection newConnection(SocketChannel channel, AsyncEndPoint endpoint, Object attachm… in newConnection()
316 protected void endPointOpened(SelectChannelEndPoint endpoint) in endPointOpened()
322 protected void endPointUpgraded(ConnectedEndPoint endpoint, Connection oldConnection) in endPointUpgraded()
328 protected void endPointClosed(SelectChannelEndPoint endpoint) in endPointClosed()
363 public HandshakeConnection(AsyncEndPoint endpoint, WebSocketClient.WebSocketFuture future) in HandshakeConnection()
DWebSocketServletConnectionD06.java31 …ServletConnectionD06(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBu… in WebSocketServletConnectionD06()
DWebSocketServletConnectionD08.java32 …ServletConnectionD08(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBu… in WebSocketServletConnectionD08()
DWebSocketServletConnectionRFC6455.java32 …letConnectionRFC6455(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBu… in WebSocketServletConnectionRFC6455()
DWebSocketServletConnectionD00.java33 …ServletConnectionD00(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBu… in WebSocketServletConnectionD00()
/external/jetty/src/java/org/eclipse/jetty/client/
DSelectConnector.java119 protected void endPointOpened(SelectChannelEndPoint endpoint) in endPointOpened()
124 protected void endPointClosed(SelectChannelEndPoint endpoint) in endPointClosed()
129 protected void endPointUpgraded(ConnectedEndPoint endpoint, Connection oldConnection) in endPointUpgraded()
134 …public AsyncConnection newConnection(SocketChannel channel, AsyncEndPoint endpoint, Object attachm… in newConnection()
DSocketConnector.java62 final EndPoint endpoint=new SocketEndPoint(socket); in startConnection() local
/external/jetty/src/java/org/eclipse/jetty/server/bio/
DSocketConnector.java128 protected Connection newConnection(EndPoint endpoint) in newConnection()
135 public void customize(EndPoint endpoint, Request request) in customize()
/external/jetty/src/java/org/eclipse/jetty/server/ssl/
DSslSelectChannelConnector.java103 public void customize(EndPoint endpoint, Request request) throws IOException in customize()
552 protected AsyncConnection newConnection(SocketChannel channel, AsyncEndPoint endpoint) in newConnection()
574 protected SslConnection newSslConnection(AsyncEndPoint endpoint, SSLEngine engine) in newSslConnection()
/external/jetty/src/java/org/eclipse/jetty/server/handler/
DConnectHandler.java488 …public AsyncConnection newConnection(SocketChannel channel, AsyncEndPoint endpoint, Object attachm… in newConnection()
497 protected void endPointOpened(SelectChannelEndPoint endpoint) in endPointOpened()
510 protected void endPointClosed(SelectChannelEndPoint endpoint) in endPointClosed()
515 protected void endPointUpgraded(ConnectedEndPoint endpoint, Connection oldConnection) in endPointUpgraded()
644 public void setEndPoint(AsyncEndPoint endpoint) in setEndPoint()
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
DEndpointEvent.java48 private Endpoint endpoint; field in EndpointEvent
/external/libusb-compat/examples/
Dtestlibusb.c13 void print_endpoint(struct usb_endpoint_descriptor *endpoint) in print_endpoint()

123