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

12345

/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/qemu/include/android/
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 );
/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/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/chromium_org/media/base/android/java/src/org/chromium/media/
H A DUsbMidiDeviceAndroid.java38 * A map from endpoint number to UsbEndpoint.
94 UsbEndpoint endpoint = iface.getEndpoint(j);
95 if (endpoint.getDirection() == UsbConstants.USB_DIR_OUT) {
96 mEndpointMap.put(endpoint.getEndpointNumber(), endpoint);
122 UsbEndpoint endpoint = iface.getEndpoint(j);
123 if (endpoint.getDirection() == UsbConstants.USB_DIR_IN) {
124 ByteBuffer buffer = ByteBuffer.allocate(endpoint.getMaxPacketSize());
126 request.initialize(mConnection, endpoint);
128 bufferForEndpoints.put(endpoint, buffe
[all...]
/external/chromium_org/net/http/
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
/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 Dwebsocket_endpoint_lock_manager.h38 int LockEndpoint(const IPEndPoint& endpoint, Waiter* waiter);
46 void RememberSocket(StreamSocket* socket, const IPEndPoint& endpoint);
48 // Releases the lock on the endpoint that was associated with |socket| by
55 // Releases the lock on |endpoint|. Does nothing if |endpoint| is not locked.
58 void UnlockEndpoint(const IPEndPoint& endpoint);
84 // that was passed to RememberSocket() for this endpoint. It should only be
86 // is non-NULL if RememberSocket() has been called for this endpoint since
103 // If an entry is present in the map for a particular endpoint, then that
104 // endpoint i
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dmemjournal.c64 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/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/WebKit/Source/modules/push_messaging/
H A DPushRegistration.cpp15 return new PushRegistration(registration->endpoint, registration->registrationId);
/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/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...]
H A Ddescriptor.c93 static void clear_endpoint(struct libusb_endpoint_descriptor *endpoint) argument
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
99 parse_endpoint(struct libusb_context *ctx, struct libusb_endpoint_descriptor *endpoint, unsigned char *buffer, int size, int host_endian) argument
323 struct libusb_endpoint_descriptor *endpoint; local
761 libusb_get_ss_endpoint_companion_descriptor( struct libusb_context *ctx, const struct libusb_endpoint_descriptor *endpoint, struct libusb_ss_endpoint_companion_descriptor **ep_comp) argument
[all...]
/external/chromium_org/device/usb/
H A Dusb_device_handle.h77 uint8 endpoint,
84 uint8 endpoint,
91 uint8 endpoint,
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/net/base/
H A Dip_endpoint.h20 // An IPEndPoint represents the address of a transport endpoint:
28 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());
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 Dip_endpoint.cc32 IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) { argument
33 address_ = endpoint.address_;
34 port_ = endpoint.port_;
/external/qemu/android/
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_org/third_party/libjingle/source/talk/p2p/base/
H A Dp2ptransportchannel_unittest.cc172 NAT_SYMMETRIC, // NAT, endpoint-dependent bindings
296 // In BUNDLE each endpoint must share common ICE credentials.
316 int endpoint,
323 "test content name", component, NULL, GetAllocator(endpoint));
332 channel->SetIceProtocolType(GetEndpoint(endpoint)->protocol_type());
339 channel->SetIceRole(GetEndpoint(endpoint)->ice_role());
340 channel->SetIceTiebreaker(GetEndpoint(endpoint)->GetIceTiebreaker());
380 Endpoint* GetEndpoint(int endpoint) { argument
381 if (endpoint == 0) {
383 } else if (endpoint
315 CreateChannel( int endpoint, int component, const std::string& local_ice_ufrag, const std::string& local_ice_pwd, const std::string& remote_ice_ufrag, const std::string& remote_ice_pwd) argument
389 GetAllocator(int endpoint) argument
392 AddAddress(int endpoint, const SocketAddress& addr) argument
395 RemoveAddress(int endpoint, const SocketAddress& addr) argument
398 SetProxy(int endpoint, rtc::ProxyType type) argument
405 SetAllocatorFlags(int endpoint, int flags) argument
408 SetSignalingDelay(int endpoint, int delay) argument
411 SetIceProtocol(int endpoint, cricket::IceProtocolType type) argument
414 SetIceRole(int endpoint, cricket::IceRole role) argument
417 SetIceTiebreaker(int endpoint, uint64 tiebreaker) argument
420 GetRoleConflict(int endpoint) argument
423 SetAllocationStepDelay(int endpoint, uint32 delay) argument
426 SetAllowTcpListen(int endpoint, bool allow_tcp_listen) argument
851 ConfigureEndpoint(int endpoint, Config config) argument
1617 ConfigureEndpoint(rtc::NATSocketServer::Translator* nat, int endpoint, Config config) argument
[all...]
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dusbgnubbydevice.js16 * @param {number} inEndpoint The device's in endpoint.
17 * @param {number} outEndpoint The device's out endpoint.
180 { direction: 'in', endpoint: this.inEndpoint, length: 2048 },
271 { direction: 'out', endpoint: this.outEndpoint, data: frame },
467 var endpoint = descriptor.endpoints[j];
468 if (inEndpoint == undefined && endpoint.type == 'bulk' &&
469 endpoint.direction == 'in') {
470 inEndpoint = endpoint.address;
472 if (outEndpoint == undefined && endpoint.type == 'bulk' &&
473 endpoint
[all...]

Completed in 476 milliseconds

12345