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

123

/external/qemu/
H A Dcharpipe.h23 /* create a buffering character driver for a given endpoint. The result will buffer
24 * anything that is sent to it but cannot be sent to the endpoint immediately.
25 * On the other hand, if the endpoint calls can_read() or read(), these calls
28 extern CharDriverState* qemu_chr_open_buffer( CharDriverState* endpoint );
H A Dcharpipe.c257 ** the data that is sent to a given endpoint CharDriverState
261 ** by the endpoint will be passed to the CharBuffer's corresponding
269 CharDriverState* endpoint; /* NULL if closed */ member in struct:CharBuffer
285 cbuf->endpoint = NULL;
287 if (cbuf->endpoint != NULL) {
288 qemu_chr_close(cbuf->endpoint);
289 cbuf->endpoint = NULL;
297 CharDriverState* peer = cbuf->endpoint;
348 CharDriverState* peer = cbuf->endpoint;
391 qemu_chr_add_handlers( cbuf->endpoint,
[all...]
/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
185 @Override Comparable<?> endpoint() { method in class:Cut.AboveAll
228 belowValue(C endpoint) argument
233 BelowValue(C endpoint) argument
286 aboveValue(C endpoint) argument
291 AboveValue(C endpoint) argument
[all...]
H A DRanges.java127 * upper}, where each endpoint may be either inclusive (closed) or exclusive
149 * endpoint}.
151 public static <C extends Comparable<?>> Range<C> lessThan(C endpoint) { argument
152 return create(Cut.<C>belowAll(), Cut.belowValue(endpoint));
157 * {@code endpoint}.
159 public static <C extends Comparable<?>> Range<C> atMost(C endpoint) { argument
160 return create(Cut.<C>belowAll(), Cut.aboveValue(endpoint));
164 * Returns a range with no lower bound up to the given endpoint, which may be
168 C endpoint, BoundType boundType) {
171 return lessThan(endpoint);
167 upTo( C endpoint, BoundType boundType) argument
183 greaterThan(C endpoint) argument
191 atLeast(C endpoint) argument
199 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/chromium/net/http/
H A Dhttp_proxy_utils.cc18 const HostPortPair& endpoint,
25 "CONNECT %s HTTP/1.1\r\n", endpoint.ToString().c_str());
15 BuildTunnelRequest( const HttpRequestInfo& request_info, const HttpRequestHeaders& auth_headers, const HostPortPair& endpoint, std::string* request_line, HttpRequestHeaders* request_headers) argument
H A Dhttp_proxy_utils.h22 const HostPortPair& endpoint,
H A Dhttp_stream_factory.cc89 HostPortPair* endpoint) {
90 if (host_mapping_rules().RewriteHost(endpoint)) {
92 const std::string port_str = base::IntToString(endpoint->port());
95 replacements.SetHost(endpoint->host().c_str(),
96 url_parse::Component(0, endpoint->host().size()));
111 bool HttpStreamFactory::HasSpdyExclusion(const HostPortPair& endpoint) { argument
118 if (it->Equals(endpoint))
88 ApplyHostMappingRules(const GURL& url, HostPortPair* endpoint) argument
H A Dhttp_stream_factory.h175 static GURL ApplyHostMappingRules(const GURL& url, HostPortPair* endpoint);
208 static bool HasSpdyExclusion(const HostPortPair& endpoint);
/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...]
H A Dcore.c675 struct libusb_config_descriptor *config, unsigned char endpoint)
690 &altsetting->endpoint[ep_idx];
691 if (ep->bEndpointAddress == endpoint)
701 * endpoint in the active device configuration.
710 * \param endpoint address of the endpoint in question
712 * \returns LIBUSB_ERROR_NOT_FOUND if the endpoint does not exist
716 unsigned char endpoint)
729 ep = find_endpoint(config, endpoint);
739 * Calculate the maximum packet size which a specific endpoint i
674 find_endpoint( struct libusb_config_descriptor *config, unsigned char endpoint) argument
715 libusb_get_max_packet_size(libusb_device *dev, unsigned char endpoint) argument
764 libusb_get_max_iso_packet_size(libusb_device *dev, unsigned char endpoint) argument
1309 libusb_clear_halt(libusb_device_handle *dev, unsigned char endpoint) argument
[all...]
/external/chromium/net/base/
H A Dip_endpoint.h16 // An IPEndPoint represents the address of a transport endpoint:
24 IPEndPoint(const IPEndPoint& endpoint);
H A Dip_endpoint_unittest.cc46 IPEndPoint endpoint; local
47 EXPECT_EQ(0, endpoint.port());
50 IPEndPoint endpoint(tests[index].ip_address, 80);
51 EXPECT_EQ(80, endpoint.port());
52 EXPECT_EQ(tests[index].ip_address, endpoint.address());
152 IPEndPoint endpoint;
153 EXPECT_EQ(0, endpoint.port());
157 IPEndPoint endpoint(tests[index].ip_address, port);
158 const std::string result = endpoint.ToString();
H A Dip_endpoint.cc25 IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) { argument
26 address_ = endpoint.address_;
27 port_ = endpoint.port_;
H A Dnet_util_win.cc113 IPEndPoint endpoint; local
114 if (endpoint.FromSockAddr(address->Address.lpSockaddr,
117 networks->push_back(NetworkInterface(name, endpoint.address()));
/external/kernel-headers/original/linux/
H A Dusb.h46 * struct usb_host_endpoint - host-side endpoint descriptor and queue
47 * @desc: descriptor for this endpoint, wMaxPacketSize in native byteorder
48 * @urb_list: urbs queued to this endpoint; maintained by usbcore
52 * @extra: descriptors following this endpoint in the configuration
55 * USB requests are always queued to a given endpoint, identified by a
75 struct usb_host_endpoint *endpoint; member in struct:usb_host_interface
93 * endpoint configurations. They will be in no particular order.
113 * or by a product's vendor. The (default) control endpoint is part of
174 * set of endpoint configurations. They will be in no particular order.
333 unsigned int toggle[2]; /* one bit for each endpoint
1149 __create_pipe(struct usb_device *dev, unsigned int endpoint) argument
[all...]
H A Dusbdevice_fs.h97 unsigned char endpoint; member in struct:usbdevfs_urb
131 unsigned char endpoint; member in struct:usbdevfs_urb32
/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/ppp/pppd/
H A Dlcp.h58 #define CI_EPDISC 19 /* endpoint discriminator */
88 bool neg_endpoint; /* negotiate endpoint discriminator */
96 struct epdisc endpoint; /* endpoint discriminator */ member in struct:lcp_options
/external/chromium/net/socket/
H A Dtcp_server_socket_unittest.cc47 IPEndPoint endpoint; local
48 EXPECT_TRUE(endpoint.FromSockAddr(
50 return endpoint;
/external/libusb/libusb/os/
H A Dlinux_usbfs.h87 unsigned char endpoint; member in struct:usbfs_urb
/external/chromium/net/spdy/
H A Dspdy_session_pool.cc215 IPEndPoint endpoint; local
216 endpoint.FromSockAddr(address->ai_addr, address->ai_addrlen);
219 SpdyAliasMap::const_iterator it = aliases_.find(endpoint);
349 IPEndPoint endpoint; local
350 endpoint.FromSockAddr(address->ai_addr, address->ai_addrlen);
351 aliases_[endpoint] = pair;

Completed in 278 milliseconds

123