Searched refs:endpoint (Results 1 - 25 of 72) sorted by relevance

123

/external/guava/guava/src/com/google/common/collect/
H A DCut.java38 final C endpoint; field in class:Cut
40 Cut(@Nullable C endpoint) { argument
41 this.endpoint = endpoint;
75 int result = Range.compareOrThrow(endpoint, that.endpoint);
84 C endpoint() { method in class:Cut
85 return endpoint;
119 @Override Comparable<?> endpoint() { method in class:Cut.BelowAll
188 @Override Comparable<?> endpoint() { method in class:Cut.AboveAll
234 belowValue(C endpoint) argument
239 BelowValue(C endpoint) argument
295 aboveValue(C endpoint) argument
300 AboveValue(C endpoint) argument
[all...]
H A DRange.java46 * <i>endpoint</i> value, and the range is considered to be either <i>open</i> (does not include the
47 * endpoint) or <i>closed</i> (includes the endpoint) on that side. With three possibilities on each
66 * <p>When both endpoints exist, the upper endpoint may not be less than the lower. The endpoints
79 * not</b> allow the endpoint instances to mutate after the range is created!
211 * upper}, where each endpoint may be either inclusive (closed) or exclusive
234 * endpoint}.
238 public static <C extends Comparable<?>> Range<C> lessThan(C endpoint) { argument
239 return create(Cut.<C>belowAll(), Cut.belowValue(endpoint));
244 * {@code endpoint}
248 atMost(C endpoint) argument
258 upTo( C endpoint, BoundType boundType) argument
276 greaterThan(C endpoint) argument
286 atLeast(C endpoint) argument
296 downTo( C endpoint, BoundType boundType) argument
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DEndpointEvent.java48 private Endpoint endpoint; field in class:EndpointEvent
54 this.endpoint = p;
75 return endpoint;
85 return "EndpointEvent[" + type + ", " + endpoint + "]";
/external/jetty/src/java/org/eclipse/jetty/server/nio/
H A DSelectChannelConnector.java135 public void customize(EndPoint endpoint, Request request) throws IOException argument
138 endpoint.setMaxIdleTime(_maxIdleTime);
139 super.customize(endpoint, request);
144 public void persist(EndPoint endpoint) throws IOException argument
146 AsyncEndPoint aEndp = ((AsyncEndPoint)endpoint);
148 super.persist(endpoint);
277 protected void endPointClosed(SelectChannelEndPoint endpoint) argument
279 connectionClosed(endpoint.getConnection());
283 protected AsyncConnection newConnection(SocketChannel channel,final AsyncEndPoint endpoint) argument
285 return new AsyncHttpConnection(SelectChannelConnector.this,endpoint,getServe
304 endPointClosed(final SelectChannelEndPoint endpoint) argument
310 endPointOpened(SelectChannelEndPoint endpoint) argument
317 endPointUpgraded(ConnectedEndPoint endpoint, Connection oldConnection) argument
323 newConnection(SocketChannel channel,AsyncEndPoint endpoint, Object attachment) argument
[all...]
H A DNetworkTrafficSelectChannelConnector.java68 protected void endPointClosed(SelectChannelEndPoint endpoint) argument
70 super.endPointClosed(endpoint);
71 ((NetworkTrafficSelectChannelEndPoint)endpoint).notifyClosed();
H A DBlockingChannelConnector.java154 public void customize(EndPoint endpoint, Request request) argument
157 super.customize(endpoint, request);
158 endpoint.setMaxIdleTime(_maxIdleTime);
159 configure(((SocketChannel)endpoint.getTransport()).socket());
/external/jetty/src/java/org/eclipse/jetty/websocket/
H A DWebSocketServletConnectionD06.java31 public WebSocketServletConnectionD06(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol) argument
34 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol);
H A DWebSocketServletConnectionD08.java32 public WebSocketServletConnectionD08(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol, argument
35 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft);
H A DWebSocketServletConnectionRFC6455.java32 public WebSocketServletConnectionRFC6455(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol, argument
35 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft);
H A DWebSocketServletConnectionD00.java33 public WebSocketServletConnectionD00(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol) argument
36 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol);
H A DWebSocketClientFactory.java309 public AsyncConnection newConnection(SocketChannel channel, AsyncEndPoint endpoint, Object attachment) argument
312 return new HandshakeConnection(endpoint, holder);
316 protected void endPointOpened(SelectChannelEndPoint endpoint) argument
322 protected void endPointUpgraded(ConnectedEndPoint endpoint, Connection oldConnection) argument
324 LOG.debug("upgrade {} -> {}", oldConnection, endpoint.getConnection());
328 protected void endPointClosed(SelectChannelEndPoint endpoint) argument
330 endpoint.getConnection().onClose();
363 public HandshakeConnection(AsyncEndPoint endpoint, WebSocketClient.WebSocketFuture future) argument
365 super(endpoint, System.currentTimeMillis());
366 _endp = endpoint;
[all...]
/external/libusb-compat/examples/
H A Dtestlibusb.c13 void print_endpoint(struct usb_endpoint_descriptor *endpoint) argument
15 printf(" bEndpointAddress: %02xh\n", endpoint->bEndpointAddress);
16 printf(" bmAttributes: %02xh\n", endpoint->bmAttributes);
17 printf(" wMaxPacketSize: %d\n", endpoint->wMaxPacketSize);
18 printf(" bInterval: %d\n", endpoint->bInterval);
19 printf(" bRefresh: %d\n", endpoint->bRefresh);
20 printf(" bSynchAddress: %d\n", endpoint->bSynchAddress);
36 print_endpoint(&interface->endpoint[i]);
/external/libusb/libusb/
H A Dlibusb.h152 * \ref libusb_endpoint_descriptor::bEndpointAddress "endpoint address" scheme.
166 * \ref libusb_endpoint_descriptor::bmAttributes "endpoint attributes" field.
169 /** Control endpoint */
172 /** Isochronous endpoint */
175 /** Bulk endpoint */
178 /** Interrupt endpoint */
219 /** Set then report an endpoint's synchronization frame */
288 /** Data endpoint */
291 /** Feedback endpoint */
294 /** Implicit feedback Data endpoint */
442 const struct libusb_endpoint_descriptor *endpoint; member in struct:libusb_interface_descriptor
724 unsigned char endpoint; member in struct:libusb_transfer
954 libusb_fill_bulk_transfer(struct libusb_transfer *transfer, libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *buffer, int length, libusb_transfer_cb_fn callback, void *user_data, unsigned int timeout) argument
982 libusb_fill_interrupt_transfer( struct libusb_transfer *transfer, libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *buffer, int length, libusb_transfer_cb_fn callback, void *user_data, unsigned int timeout) argument
1011 libusb_fill_iso_transfer(struct libusb_transfer *transfer, libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *buffer, int length, int num_iso_packets, libusb_transfer_cb_fn callback, void *user_data, unsigned int timeout) argument
[all...]
H A Dsync.c154 unsigned char endpoint, unsigned char *buffer, int length,
164 libusb_fill_bulk_transfer(transfer, dev_handle, endpoint, buffer, length,
217 * the direction bits of the endpoint address.
235 * \param endpoint the address of a valid endpoint to communicate with
237 * (depending on endpoint)
249 * \returns LIBUSB_ERROR_PIPE if the endpoint halted
256 unsigned char endpoint, unsigned char *data, int length, int *transferred,
259 return do_sync_bulk_transfer(dev_handle, endpoint, data, length,
265 * from the direction bits of the endpoint addres
153 do_sync_bulk_transfer(struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *buffer, int length, int *transferred, unsigned int timeout, unsigned char type) argument
255 libusb_bulk_transfer(struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *data, int length, int *transferred, unsigned int timeout) argument
304 libusb_interrupt_transfer( struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *data, int length, int *transferred, unsigned int timeout) argument
[all...]
H A Ddescriptor.c71 static void clear_endpoint(struct libusb_endpoint_descriptor *endpoint) argument
73 if (endpoint->extra)
74 free((unsigned char *) endpoint->extra);
78 struct libusb_endpoint_descriptor *endpoint, unsigned char *buffer,
103 usbi_parse_descriptor(buffer, "bbbbwbbb", endpoint, host_endian);
105 usbi_parse_descriptor(buffer, "bbbbwb", endpoint, host_endian);
139 endpoint->extra = NULL;
140 endpoint->extra_length = 0;
145 endpoint->extra = extra;
147 endpoint
77 parse_endpoint(struct libusb_context *ctx, struct libusb_endpoint_descriptor *endpoint, unsigned char *buffer, int size, int host_endian) argument
272 struct libusb_endpoint_descriptor *endpoint; local
[all...]
/external/jetty/src/java/org/eclipse/jetty/io/nio/
H A DSelectorManager.java338 * @param endpoint
340 protected abstract void endPointClosed(SelectChannelEndPoint endpoint); argument
344 * @param endpoint
346 protected abstract void endPointOpened(SelectChannelEndPoint endpoint); argument
349 protected abstract void endPointUpgraded(ConnectedEndPoint endpoint,Connection oldConnection); argument
352 public abstract AsyncConnection newConnection(SocketChannel channel, AsyncEndPoint endpoint, Object attachment); argument
360 * @return the new endpoint {@link SelectChannelEndPoint}
466 SelectChannelEndPoint endpoint = (SelectChannelEndPoint)change;
467 ch=endpoint.getChannel();
468 endpoint
[all...]
/external/jetty/src/java/org/eclipse/jetty/server/
H A DBlockingHttpConnection.java40 public BlockingHttpConnection(Connector connector, EndPoint endpoint, Server server) argument
42 super(connector,endpoint,server);
45 public BlockingHttpConnection(Connector connector, EndPoint endpoint, Server server, Parser parser, Generator generator, Request request) argument
47 super(connector,endpoint,server,parser,generator,request);
64 // do while the endpoint is open
H A DConnector.java184 /** 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; argument
194 /** Persist an endpoint.
196 * @param endpoint
199 void persist(EndPoint endpoint) throws IOException; argument
H A DAsyncHttpConnection.java48 public AsyncHttpConnection(Connector connector, EndPoint endpoint, Server server) argument
50 super(connector,endpoint,server);
51 _asyncEndp=(AsyncEndPoint)endpoint;
93 // Has any IO been done by the endpoint itself since last loop
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
H A DUdpKernel.java169 log.log( Level.INFO, "Closing endpoint:{0}.", p );
187 // So the tricky part here is figuring out the endpoint and
202 protected void enqueueWrite( Endpoint endpoint, DatagramPacket packet ) argument
204 writer.execute( new MessageWriter(endpoint, packet) );
209 private Endpoint endpoint; field in class:UdpKernel.MessageWriter
212 public MessageWriter( Endpoint endpoint, DatagramPacket packet ) argument
214 this.endpoint = endpoint;
222 if( !endpoint.isConnected() ) {
/external/jetty/src/java/org/eclipse/jetty/client/
H A DSocketConnector.java62 final EndPoint endpoint=new SocketEndPoint(socket);
64 final AbstractHttpConnection connection=new BlockingHttpConnection(_httpClient.getRequestBuffers(),_httpClient.getResponseBuffers(),endpoint);
/external/jetty/src/java/org/eclipse/jetty/server/ssl/
H A DSslSelectChannelConnector.java96 * @param endpoint
103 public void customize(EndPoint endpoint, Request request) throws IOException argument
106 super.customize(endpoint,request);
108 SslConnection.SslEndPoint sslEndpoint=(SslConnection.SslEndPoint)endpoint;
112 SslCertificates.customize(sslSession,endpoint,request);
552 protected AsyncConnection newConnection(SocketChannel channel, AsyncEndPoint endpoint) argument
557 SslConnection connection = newSslConnection(endpoint, engine);
574 protected SslConnection newSslConnection(AsyncEndPoint endpoint, SSLEngine engine) argument
576 return new SslConnection(engine, endpoint);
/external/jetty/src/java/org/eclipse/jetty/server/bio/
H A DSocketConnector.java128 protected Connection newConnection(EndPoint endpoint) argument
130 return new BlockingHttpConnection(this, endpoint, getServer());
135 public void customize(EndPoint endpoint, Request request) argument
138 ConnectorEndPoint connection = (ConnectorEndPoint)endpoint;
142 super.customize(endpoint, request);
/external/google-breakpad/src/common/windows/
H A Domap_internal.h117 DWORD endpoint; member in struct:google_breakpad::EndpointIndex
130 // an interval in |mapping| that contains the endpoint. Useful for doing
/external/libusb/libusb/os/
H A Dlinux_usbfs.h87 unsigned char endpoint; member in struct:usbfs_urb

Completed in 4414 milliseconds

123