Searched defs:endpoint (Results 51 - 75 of 83) sorted by relevance

1234

/external/chromium_org/chrome/browser/net/
H A Dnetwork_stats.cc215 const net::IPEndPoint& endpoint = addresses_.front(); local
216 int rv = socket_->Connect(endpoint);
/external/chromium_org/content/browser/devtools/
H A Ddevtools_http_handler_impl.cc759 net::IPEndPoint endpoint; local
761 if ((err = server_->GetLocalAddress(&endpoint)) != net::OK) {
770 std::string port_string = base::IntToString(endpoint.port());
/external/chromium_org/net/http/
H A Dhttp_network_transaction.cc1044 HostPortPair endpoint = HostPortPair(request_->url.HostNoBrackets(), local
1048 endpoint);
1297 // by the endpoint host, request_->url, rather than considering if they were
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DContentSecurityPolicy.cpp700 // own execution context. Use the frame's document to complete the endpoint URL, overriding
704 KURL endpoint = contextFrame ? frame->document()->completeURLWithOverride(reportEndpoints[i], blockedURL) : completeURL(reportEndpoints[i]); local
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DBidiResolver.h87 Iterator& endpoint = midpointsIterator[m_numMidpoints - 2]; local
89 Iterator currpoint = endpoint;
95 if (endpoint.object()->style()->collapseWhiteSpace() && endpoint.object()->isText())
96 endpoint.setOffset(endpoint.offset() - 1);
/external/chromium_org/third_party/libusb/src/libusb/
H A Dcore.c281 * - libusbx is able to send a packet of zero length to an endpoint simply by
847 struct libusb_config_descriptor *config, unsigned char endpoint)
862 &altsetting->endpoint[ep_idx];
863 if (ep->bEndpointAddress == endpoint)
873 * endpoint in the active device configuration.
882 * \param endpoint address of the endpoint in question
884 * \returns LIBUSB_ERROR_NOT_FOUND if the endpoint does not exist
888 unsigned char endpoint)
901 ep = find_endpoint(config, endpoint);
846 find_endpoint( struct libusb_config_descriptor *config, unsigned char endpoint) argument
887 libusb_get_max_packet_size(libusb_device *dev, unsigned char endpoint) argument
936 libusb_get_max_iso_packet_size(libusb_device *dev, unsigned char endpoint) argument
1580 libusb_clear_halt(libusb_device_handle *dev, unsigned char endpoint) argument
[all...]
H A Dlibusb.h322 * \ref libusb_endpoint_descriptor::bEndpointAddress "endpoint address" scheme.
336 * \ref libusb_endpoint_descriptor::bmAttributes "endpoint attributes" field.
339 /** Control endpoint */
342 /** Isochronous endpoint */
345 /** Bulk endpoint */
348 /** Interrupt endpoint */
389 /** Set then report an endpoint's synchronization frame */
465 /** Data endpoint */
468 /** Feedback endpoint */
471 /** Implicit feedback Data endpoint */
619 const struct libusb_endpoint_descriptor *endpoint; member in struct:libusb_interface_descriptor
1218 unsigned char endpoint; member in struct:libusb_transfer
1539 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
1567 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
1596 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...]
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dwince_usb.c530 unsigned char endpoint)
533 if (!UkwClearHaltHost(priv->dev, endpoint)) {
536 if (!UkwClearHaltDevice(priv->dev, endpoint)) {
635 direction_in = transfer->endpoint & LIBUSB_ENDPOINT_IN;
660 ret = UkwIssueBulkTransfer(priv->dev, flags, transfer->endpoint, transfer->buffer,
694 usbi_err(TRANSFER_CTX(transfer), "unknown endpoint type %d", transfer->type);
712 * endpoint isn't actually stalled.
719 * checking the pipe status and requesting the endpoint status from the device.
723 if (UkwIsPipeHalted(priv->dev, transfer->endpoint, &halted)) {
724 /* Pipe status retrieved, so now request endpoint statu
528 wince_clear_halt( struct libusb_device_handle *handle, unsigned char endpoint) argument
[all...]
H A Ddarwin_usb.c177 /* No pipe found with the correct endpoint address */
178 usbi_warn (HANDLE_CTX(dev_handle), "no pipeRef found with endpoint address 0x%02x.", ep);
1218 usbi_err (HANDLE_CTX (dev_handle), "could not build endpoint table");
1254 /* clean up endpoint data */
1295 usbi_err (HANDLE_CTX (dev_handle), "could not build endpoint table");
1302 static int darwin_clear_halt(struct libusb_device_handle *dev_handle, unsigned char endpoint) { argument
1310 /* determine the interface/endpoint to use */
1311 if (ep_to_pipeRef (dev_handle, endpoint, &pipeRef, &iface) != 0) {
1312 usbi_err (HANDLE_CTX (dev_handle), "endpoint not found on any open interface");
1319 /* newer versions of darwin support clearing additional bits on the device's endpoint */
[all...]
H A Dlinux_usbfs.c1410 unsigned char endpoint)
1413 unsigned int _endpoint = endpoint;
1698 int is_out = (transfer->endpoint & LIBUSB_ENDPOINT_DIR_MASK)
1779 urb->endpoint = transfer->endpoint;
1955 urb->endpoint = transfer->endpoint;
2034 urb->endpoint = transfer->endpoint;
2068 "unknown endpoint typ
1409 op_clear_halt(struct libusb_device_handle *handle, unsigned char endpoint) argument
[all...]
H A Dwindows_usb.c63 static int winusbx_clear_halt(int sub_api, struct libusb_device_handle *dev_handle, unsigned char endpoint);
78 static int hid_clear_halt(int sub_api, struct libusb_device_handle *dev_handle, unsigned char endpoint);
93 static int composite_clear_halt(int sub_api, struct libusb_device_handle *dev_handle, unsigned char endpoint);
667 safe_free(priv->usb_interface[iface].endpoint);
674 priv->usb_interface[iface].endpoint = (uint8_t*) malloc(if_desc->bNumEndpoints);
675 if (priv->usb_interface[iface].endpoint == NULL) {
681 priv->usb_interface[iface].endpoint[i] = if_desc->endpoint[i].bEndpointAddress;
682 usbi_dbg("(re)assigned endpoint %02X to interface %d", priv->usb_interface[iface].endpoint[
1886 windows_clear_halt(struct libusb_device_handle *dev_handle, unsigned char endpoint) argument
2353 unsupported_clear_halt(int sub_api, struct libusb_device_handle *dev_handle, unsigned char endpoint) argument
3012 winusbx_clear_halt(int sub_api, struct libusb_device_handle *dev_handle, unsigned char endpoint) argument
4120 hid_clear_halt(int sub_api, struct libusb_device_handle *dev_handle, unsigned char endpoint) argument
4337 composite_clear_halt(int sub_api, struct libusb_device_handle *dev_handle, unsigned char endpoint) argument
[all...]
H A Dwindows_usb.h120 int (*clear_halt)(int sub_api, struct libusb_device_handle *dev_handle, unsigned char endpoint);
219 int8_t nb_endpoints; // and a set of endpoint addresses (USB_MAXENDPOINTS)
220 uint8_t *endpoint; member in struct:windows_device_priv::__anon12858
251 p->usb_interface[i].endpoint = NULL;
268 safe_free(p->usb_interface[i].endpoint);
/external/libusb/libusb/os/
H A Ddarwin_usb.c141 /* No pipe found with the correct endpoint address */
142 usbi_warn (HANDLE_CTX(dev_handle), "no pipeRef found with endpoint address 0x%02x.", ep);
910 usbi_err (HANDLE_CTX (dev_handle), "could not build endpoint table");
946 /* clean up endpoint data */
987 usbi_err (HANDLE_CTX (dev_handle), "could not build endpoint table");
994 static int darwin_clear_halt(struct libusb_device_handle *dev_handle, unsigned char endpoint) { argument
1002 /* determine the interface/endpoint to use */
1003 if (ep_to_pipeRef (dev_handle, endpoint, &pipeRef, &iface) != 0) {
1004 usbi_err (HANDLE_CTX (dev_handle), "endpoint not found on any open interface");
1014 /* newer versions of darwin support clearing additional bits on the device's endpoint */
[all...]
H A Dlinux_usbfs.c79 * endpoint is disabled, meaning that no more data can creep in during the
1190 unsigned char endpoint)
1193 unsigned int _endpoint = endpoint;
1344 int is_out = (transfer->endpoint & LIBUSB_ENDPOINT_DIR_MASK)
1382 urb->endpoint = transfer->endpoint;
1547 urb->endpoint = transfer->endpoint;
1633 urb->endpoint = transfer->endpoint;
1189 op_clear_halt(struct libusb_device_handle *handle, unsigned char endpoint) argument
[all...]
/external/libusb-compat/libusb/
H A Dusb.h142 struct usb_endpoint_descriptor *endpoint; member in struct:usb_interface_descriptor
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcallclient.cc1164 console_->PrintLine("Unable to make valid muc endpoint for %s",
1262 void CallClient::OnMucJoined(const buzz::Jid& endpoint) { argument
1263 MucMap::iterator elem = mucs_.find(endpoint);
1337 void CallClient::OnMucLeft(const buzz::Jid& endpoint, int error) { argument
1340 MucMap::iterator elem = mucs_.find(endpoint);
/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/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...]
/external/chromium_org/content/shell/renderer/test_runner/
H A Dtest_runner.cc297 void SetMockPushClientSuccess(const std::string& endpoint,
1396 const std::string& endpoint,
1400 runner_->SetMockPushClientSuccess(endpoint, registration_id);
2895 void TestRunner::SetMockPushClientSuccess(const std::string& endpoint, argument
2897 proxy_->GetPushClientMock()->SetMockSuccessValues(endpoint, registration_id);
1395 SetMockPushClientSuccess( const std::string& endpoint, const std::string& registration_id) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf.provider.filetransfer_3.1.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/valgrind/main/include/vki/
H A Dvki-linux.h2460 unsigned char endpoint; member in struct:vki_usbdevfs_urb
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...

Completed in 2337 milliseconds

1234