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

1234

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebPushRegistration.h13 WebPushRegistration(const WebString& endpoint, const WebString& registrationId) argument
14 : endpoint(endpoint)
19 WebString endpoint; member in struct:blink::WebPushRegistration
/external/chromium_org/media/cast/test/utility/
H A Dnet_utility.cc29 net::IPEndPoint endpoint; local
30 CHECK_EQ(net::OK, receive_socket->GetLocalAddress(&endpoint));
31 return endpoint;
/external/chromium_org/content/renderer/
H A Dpush_messaging_dispatcher.cc67 const GURL& endpoint,
75 WebString::fromUTF8(endpoint.spec()),
65 OnRegisterSuccess( int32 callbacks_id, const GURL& endpoint, const std::string& registration_id) argument
/external/chromium_org/net/base/
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());
159 IPEndPoint endpoint;
160 EXPECT_EQ(0, endpoint.port());
164 IPEndPoint endpoint(tests[index].ip_address, port);
165 const std::string result = endpoint.ToString();
H A Daddress_list.cc37 AddressList::AddressList(const IPEndPoint& endpoint) { argument
38 push_back(endpoint);
H A Dip_endpoint.cc32 IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) { argument
33 address_ = endpoint.address_;
34 port_ = endpoint.port_;
/external/chromium_org/net/http/
H A Dproxy_client_socket.cc24 const HostPortPair& endpoint,
31 "CONNECT %s HTTP/1.1\r\n", endpoint.ToString().c_str());
21 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.cc106 HostPortPair* endpoint) {
108 if (mapping_rules && mapping_rules->RewriteHost(endpoint)) {
110 const std::string port_str = base::IntToString(endpoint->port());
112 replacements.SetHost(endpoint->host().c_str(),
113 url::Component(0, endpoint->host().size()));
105 ApplyHostMappingRules(const GURL& url, HostPortPair* endpoint) argument
H A Dhttp_proxy_client_socket_pool.h51 const HostPortPair& endpoint,
66 const HostPortPair& endpoint() const { return endpoint_; } function in class:net::HttpProxySocketParams
/external/chromium_org/v8/tools/testrunner/server/
H A Dwork_handler.py38 from ..network import endpoint namespace
73 endpoint.Execute(v8_root, self.ctx, tests, self.request, self.server.daemon)
/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_org/third_party/libusb/src/libusb/
H A Dsync.c159 unsigned char endpoint, unsigned char *buffer, int length,
169 libusb_fill_bulk_transfer(transfer, dev_handle, endpoint, buffer, length,
214 * the direction bits of the endpoint address.
232 * \param endpoint the address of a valid endpoint to communicate with
234 * (depending on endpoint)
246 * \returns LIBUSB_ERROR_PIPE if the endpoint halted
253 unsigned char endpoint, unsigned char *data, int length, int *transferred,
256 return do_sync_bulk_transfer(dev_handle, endpoint, data, length,
262 * from the direction bits of the endpoint addres
158 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
252 libusb_bulk_transfer(struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *data, int length, int *transferred, unsigned int timeout) argument
301 libusb_interrupt_transfer( struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *data, int length, int *transferred, unsigned int timeout) argument
[all...]
/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...]
/external/chromium_org/chrome/browser/net/spdyproxy/
H A Dproxy_advisor.cc129 std::string endpoint = local
132 GURL(endpoint), net::DEFAULT_PRIORITY, this, NULL);
/external/chromium_org/net/socket/
H A Dwebsocket_endpoint_lock_manager.cc26 int WebSocketEndpointLockManager::LockEndpoint(const IPEndPoint& endpoint, argument
28 LockInfoMap::value_type insert_value(endpoint, LockInfo());
33 DVLOG(3) << "Locking endpoint " << endpoint.ToString();
37 DVLOG(3) << "Waiting for endpoint " << endpoint.ToString();
43 const IPEndPoint& endpoint) {
44 LockInfoMap::iterator lock_info_it = lock_info_map_.find(endpoint);
53 << endpoint.ToString() << " (" << socket_lock_info_map_.size()
73 void WebSocketEndpointLockManager::UnlockEndpoint(const IPEndPoint& endpoint) { argument
42 RememberSocket(StreamSocket* socket, const IPEndPoint& endpoint) argument
[all...]
H A Dtcp_client_socket.cc117 const IPEndPoint& endpoint = addresses_[current_address_index_]; local
129 int result = OpenSocket(endpoint.GetFamily());
144 return socket_->Connect(endpoint,
/external/chromium_org/net/spdy/
H A Dhpack_huffman_aggregator.cc52 HostPortPair endpoint = HostPortPair(request.url.HostNoBrackets(), local
55 SpdySessionKey(endpoint, proxy, request.privacy_mode));
111 HostPortPair endpoint = HostPortPair(request.url.HostNoBrackets(), local
123 if (!endpoint.Equals(referer_endpoint)) {
/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/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLSocketImplTest.java623 private Socket endpoint = null; field in class:SSLSocketImplTest.Server
643 endpoint = server.accept();
644 endpoint.getInputStream().read();
652 if (endpoint != null) {
654 endpoint.close();
/external/chromium_org/chrome/browser/services/gcm/
H A Dpush_messaging_service_impl.cc238 GURL endpoint = GURL("https://android.googleapis.com/gcm/send"); local
239 callback.Run(endpoint, registration_id, status);
/external/chromium_org/device/usb/
H A Dusb_device_impl.cc285 &platform_alt_setting->endpoint[k];
286 UsbEndpointDescriptor endpoint; local
288 endpoint.address = platform_endpoint->bEndpointAddress;
289 endpoint.direction = GetDirection(platform_endpoint);
290 endpoint.maximum_packet_size = platform_endpoint->wMaxPacketSize;
291 endpoint.synchronization_type =
293 endpoint.transfer_type = GetTransferType(platform_endpoint);
294 endpoint.usage_type = GetUsageType(platform_endpoint);
295 endpoint.polling_interval = platform_endpoint->bInterval;
296 endpoint
[all...]
/external/chromium_org/media/midi/
H A Dmidi_manager_mac.cc196 MIDIEndpointRef endpoint) {
198 MIDIObjectGetIntegerProperty(endpoint, kMIDIPropertyUniqueID, &id_number);
204 endpoint, kMIDIPropertyManufacturer, &manufacturer_ref);
216 result = MIDIObjectGetStringProperty(endpoint, kMIDIPropertyName, &name_ref);
225 endpoint, kMIDIPropertyDriverVersion, &version_number);
195 GetPortInfoFromEndpoint( MIDIEndpointRef endpoint) argument
/external/chromium_org/mojo/system/
H A Dchannel.cc95 // Note: |endpoint| being a |scoped_refptr| makes this function safe, since it
96 // keeps the endpoint alive even after the lock is released. Otherwise, there's
100 scoped_refptr<ChannelEndpoint> endpoint) {
101 DCHECK(endpoint.get());
117 local_id_to_endpoint_map_[local_id] = endpoint;
120 endpoint->AttachToChannel(this, local_id);
126 scoped_refptr<ChannelEndpoint> endpoint; local
138 endpoint = it->second;
145 DVLOG(2) << "Ignoring run message pipe endpoint for zombie endpoint "
99 AttachEndpoint( scoped_refptr<ChannelEndpoint> endpoint) argument
[all...]

Completed in 2936 milliseconds

1234