Searched defs:endpoint (Results 1 - 25 of 40) sorted by relevance

12

/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_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_proxy_client_socket.cc30 const HostPortPair& endpoint,
42 endpoint_(endpoint),
26 HttpProxyClientSocket( ClientSocketHandle* transport_socket, const GURL& request_url, const std::string& user_agent, const HostPortPair& endpoint, const HostPortPair& proxy_server, HttpAuthCache* http_auth_cache, HttpAuthHandlerFactory* http_auth_handler_factory, bool tunnel, bool using_spdy, bool is_https_proxy) argument
H A Dhttp_proxy_client_socket_pool.h46 HostPortPair endpoint,
60 const HostPortPair& endpoint() const { return endpoint_; } function in class:net::HttpProxySocketParams
H A Dhttp_proxy_client_socket_pool.cc35 HostPortPair endpoint,
45 endpoint_(endpoint),
284 params_->endpoint(),
363 params_->endpoint(),
30 HttpProxySocketParams( const scoped_refptr<TransportSocketParams>& transport_params, const scoped_refptr<SSLSocketParams>& ssl_params, const GURL& request_url, const std::string& user_agent, HostPortPair endpoint, HttpAuthCache* http_auth_cache, HttpAuthHandlerFactory* http_auth_handler_factory, SpdySessionPool* spdy_session_pool, bool tunnel) argument
/external/chromium/net/base/
H A Dip_endpoint.cc25 IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) { argument
26 address_ = endpoint.address_;
27 port_ = endpoint.port_;
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 Dnet_util_win.cc113 IPEndPoint endpoint; local
114 if (endpoint.FromSockAddr(address->Address.lpSockaddr,
117 networks->push_back(NetworkInterface(name, endpoint.address()));
/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/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/chromium/net/socket/
H A Dtcp_server_socket_unittest.cc47 IPEndPoint endpoint; local
48 EXPECT_TRUE(endpoint.FromSockAddr(
50 return endpoint;
/external/libusb/libusb/
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/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 DGeneralRange.java64 * Returns everything above the endpoint relative to the specified comparator, with the specified
65 * endpoint behavior.
67 static <T> GeneralRange<T> downTo(Comparator<? super T> comparator, @Nullable T endpoint, argument
69 return new GeneralRange<T>(comparator, true, endpoint, boundType, false, null, OPEN);
73 * Returns everything below the endpoint relative to the specified comparator, with the specified
74 * endpoint behavior.
76 static <T> GeneralRange<T> upTo(Comparator<? super T> comparator, @Nullable T endpoint, argument
78 return new GeneralRange<T>(comparator, false, null, OPEN, true, endpoint, boundType);
83 * specified endpoint behavior.
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/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/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLSocketImplTest.java585 private Socket endpoint = null; field in class:SSLSocketImplTest.Server
605 endpoint = server.accept();
606 endpoint.getInputStream().read();
614 if (endpoint != null) {
616 endpoint.close();
/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/qemu/
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/chromium/net/spdy/
H A Dspdy_proxy_client_socket.cc27 const HostPortPair& endpoint,
38 endpoint_(endpoint),
72 // for the specified endpoint. Waits for the server to send back
350 // Reset the URL to be the endpoint of the connection
24 SpdyProxyClientSocket( SpdyStream* spdy_stream, const std::string& user_agent, const HostPortPair& endpoint, const GURL& url, const HostPortPair& proxy_server, HttpAuthCache* auth_cache, HttpAuthHandlerFactory* auth_handler_factory) argument
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;
/external/kernel-headers/original/linux/
H A Dusbdevice_fs.h97 unsigned char endpoint; member in struct:usbdevfs_urb
131 unsigned char endpoint; member in struct:usbdevfs_urb32
/external/libusb/libusb/os/
H A Dlinux_usbfs.h87 unsigned char endpoint; member in struct:usbfs_urb
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dcallclient.cc698 console_->Printf("Unable to make valid muc endpoint for %s", room.c_str());
736 void CallClient::OnMucJoined(const buzz::Jid& endpoint) { argument
737 MucMap::iterator elem = mucs_.find(endpoint);
842 void CallClient::OnMucLeft(const buzz::Jid& endpoint, int error) { argument
845 MucMap::iterator elem = mucs_.find(endpoint);

Completed in 396 milliseconds

12