HomeSort by relevance Sort by last modified time
    Searched defs:endpoint (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/public/platform/
WebPushRegistration.h 13 WebPushRegistration(const WebString& endpoint, const WebString& registrationId)
14 : endpoint(endpoint)
19 WebString endpoint; member in struct:blink::WebPushRegistration
  /external/chromium_org/media/cast/test/utility/
net_utility.cc 29 net::IPEndPoint endpoint; local
30 CHECK_EQ(net::OK, receive_socket->GetLocalAddress(&endpoint));
31 return endpoint;
  /external/chromium_org/net/base/
ip_endpoint_unittest.cc 46 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();
  /external/chromium_org/v8/tools/testrunner/server/
work_handler.py 38 from ..network import endpoint namespace
73 endpoint.Execute(v8_root, self.ctx, tests, self.request, self.server.daemon)
  /external/chromium_org/chrome/browser/net/spdyproxy/
proxy_advisor.cc 129 std::string endpoint = local
132 GURL(endpoint), net::DEFAULT_PRIORITY, this, NULL);
  /external/chromium_org/net/spdy/
hpack_huffman_aggregator.cc 52 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/chromium_org/chrome/browser/services/gcm/
push_messaging_service_impl.cc 238 GURL endpoint = GURL("https://android.googleapis.com/gcm/send"); local
239 callback.Run(endpoint, registration_id, status);
  /external/chromium_org/device/usb/
usb_device_impl.cc 285 &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.extra_data = std::vector<uint8_t>
    [all...]
  /external/chromium_org/mojo/system/
channel.cc 95 // 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 "
    [all...]
  /external/chromium_org/net/socket/
tcp_client_socket.cc 117 const IPEndPoint& endpoint = addresses_[current_address_index_]; local
129 int result = OpenSocket(endpoint.GetFamily());
144 return socket_->Connect(endpoint,
socks_client_socket.cc 321 const IPEndPoint& endpoint = addresses_.front(); local
328 CHECK_EQ(ADDRESS_FAMILY_IPV4, endpoint.GetFamily());
329 CHECK_LE(endpoint.address().size(), sizeof(request.ip));
330 memcpy(&request.ip, &endpoint.address()[0], endpoint.address().size());
332 DVLOG(1) << "Resolved Host is : " << endpoint.ToStringWithoutPort();
transport_client_socket_pool_unittest.cc 861 IPEndPoint endpoint; local
906 IPEndPoint endpoint; local
940 IPEndPoint endpoint; local
973 IPEndPoint endpoint; local
1062 IPEndPoint endpoint; local
1102 IPEndPoint endpoint; local
    [all...]
websocket_transport_client_socket_pool_unittest.cc 498 // The lock on the endpoint is released when a ClientSocketHandle is reset.
509 // The lock on the endpoint is released when a ClientSocketHandle is deleted.
590 IPEndPoint endpoint; local
591 handle.socket()->GetLocalAddress(&endpoint);
592 EXPECT_EQ(kIPv4AddressSize, endpoint.address().size());
633 IPEndPoint endpoint; local
634 handle.socket()->GetLocalAddress(&endpoint);
635 EXPECT_EQ(kIPv6AddressSize, endpoint.address().size());
666 IPEndPoint endpoint; local
667 handle.socket()->GetLocalAddress(&endpoint);
697 IPEndPoint endpoint; local
735 IPEndPoint endpoint; local
779 IPEndPoint endpoint; local
820 IPEndPoint endpoint; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
memjournal.c 64 FilePoint endpoint; /* Pointer to the end of the file */ member in struct:MemJournal
85 assert( iOfst+iAmt<=p->endpoint.iOffset );
130 assert( iOfst==p->endpoint.iOffset );
134 FileChunk *pChunk = p->endpoint.pChunk;
135 int iChunkOffset = (int)(p->endpoint.iOffset%JOURNAL_CHUNKSIZE);
152 p->endpoint.pChunk = pNew;
155 memcpy(&p->endpoint.pChunk->zChunk[iChunkOffset], zWrite, iSpace);
158 p->endpoint.iOffset += iSpace;
209 *pSize = (sqlite_int64) p->endpoint.iOffset;
  /external/guava/guava/src/com/google/common/collect/
Cut.java 38 final C endpoint; field in class:Cut
40 Cut(@Nullable C endpoint) {
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
    [all...]
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
UsbMidiDeviceAndroid.java 38 * A map from endpoint number to UsbEndpoint.
94 UsbEndpoint endpoint = iface.getEndpoint(j); local
95 if (endpoint.getDirection() == UsbConstants.USB_DIR_OUT) {
96 mEndpointMap.put(endpoint.getEndpointNumber(), endpoint); local
122 UsbEndpoint endpoint = iface.getEndpoint(j); local
123 if (endpoint.getDirection() == UsbConstants.USB_DIR_IN) {
124 ByteBuffer buffer = ByteBuffer.allocate(endpoint.getMaxPacketSize());
126 request.initialize(mConnection, endpoint);
128 bufferForEndpoints.put(endpoint, buffer)
145 UsbEndpoint endpoint = request.getEndpoint(); local
197 UsbEndpoint endpoint = mEndpointMap.get(endpointNumber); local
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSocketImplTest.java 623 private Socket endpoint = null; field in class:SSLSocketImplTest.Server
643 endpoint = server.accept();
644 endpoint.getInputStream().read();
652 if (endpoint != null) {
654 endpoint.close();
    [all...]
  /external/chromium_org/net/http/
http_proxy_client_socket_pool.h 51 const HostPortPair& endpoint,
66 const HostPortPair& endpoint() const { return endpoint_; } function in class:net::HttpProxySocketParams
  /external/chromium_org/net/quic/
quic_stream_factory_test.cc 178 IPEndPoint endpoint; local
180 udp_client_sockets()[socket_count]->GetLocalAddress(&endpoint);
181 int port = endpoint.port();
    [all...]
  /external/chromium_org/remoting/protocol/
chromium_socket_factory.cc 181 net::IPEndPoint endpoint; local
182 if (!jingle_glue::SocketAddressToIPEndPoint(address, &endpoint)) {
190 send_queue_.push_back(PendingPacket(data, data_size, endpoint));
  /external/libusb/libusb/
descriptor.c 71 static void clear_endpoint(struct libusb_endpoint_descriptor *endpoint)
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->extra_length = 0
272 struct libusb_endpoint_descriptor *endpoint; local
    [all...]
  /external/lldb/tools/driver/
IOChannel.cpp 158 int endpoint = cur_pos + page_size; local
159 if (endpoint > num_elements)
160 endpoint = num_elements;
161 for (; cur_pos < endpoint; cur_pos++)
  /development/ndk/platforms/android-3/include/linux/
usbdevice_fs.h 74 unsigned char endpoint; member in struct:usbdevfs_urb
  /external/chromium_org/media/audio/win/
core_audio_util_win.cc 214 // Generate a collection of active (present and not disabled) audio endpoint
266 // Retrieve the default audio endpoint for the specified data-flow
277 // Verify that the audio endpoint device is active, i.e., that the audio
278 // adapter that connects to the endpoint device is present and enabled.
283 DVLOG(1) << "Selected endpoint device is not active";
307 // Retrieve an audio device specified by an endpoint device-identification
319 // Retrieve unique name of endpoint device.
326 // Retrieve user-friendly name of endpoint device.
458 ScopedComPtr<IMMEndpoint> endpoint; local
459 HRESULT hr = device->QueryInterface(endpoint.Receive())
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/
descriptor.c 93 static void clear_endpoint(struct libusb_endpoint_descriptor *endpoint)
95 if (endpoint->extra)
96 free((unsigned char *) endpoint->extra);
100 struct libusb_endpoint_descriptor *endpoint, unsigned char *buffer,
110 usbi_err(ctx, "short endpoint descriptor read %d/%d",
122 usbi_warn(ctx, "short endpoint descriptor read %d/%d",
127 usbi_parse_descriptor(buffer, "bbbbwbbb", endpoint, host_endian);
129 usbi_parse_descriptor(buffer, "bbbbwb", endpoint, host_endian);
131 usbi_err(ctx, "invalid endpoint bLength (%d)", header.bLength);
171 endpoint->extra = NULL
323 struct libusb_endpoint_descriptor *endpoint; local
    [all...]

Completed in 509 milliseconds

1 2