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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/fps/
test_verify_signature.py 7 endpoint = 'http://vamsik.desktop.amazon.com:8080/ipn.jsp'
8 conn.verify_signature(endpoint, params)
  /external/parameter-framework/asio-1.10.6/include/asio/ip/detail/
endpoint.hpp 2 // ip/detail/endpoint.hpp
28 // Helper class for implementating an IP endpoint.
29 class endpoint class in namespace:asio::ip::detail
33 ASIO_DECL endpoint();
35 // Construct an endpoint using a family and port number.
36 ASIO_DECL endpoint(int family, unsigned short port_num);
38 // Construct an endpoint using an address and port number.
39 ASIO_DECL endpoint(const asio::ip::address& addr,
43 endpoint(const endpoint& other function in class:asio::ip::detail::endpoint
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds/
regioninfo.py 29 def __init__(self, connection=None, name=None, endpoint=None,
32 super(RDSRegionInfo, self).__init__(connection, name, endpoint,
  /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
188 @Override Comparable<?> endpoint() { method in class:Cut.AboveAll
    [all...]
  /external/autotest/client/cros/chameleon/
audio_board.py 82 # Maps port id defined in chameleon_audio_ids to endpoint name used in
121 """Gets the endpoint name used in audio bus API.
126 @returns: The endpoint name for the port used in audio bus API.
132 def _connect_endpoint(self, endpoint):
133 """Connects an endpoint to audio bus.
135 @param endpoint: An endpoint name in _PORT_ID_AUDIO_BUS_ENDPOINT_MAP.
139 'Audio bus %s is connecting endpoint %s',
140 self.bus_index, endpoint)
141 self._chameleond_proxy.AudioBoardConnect(self.bus_index, endpoint)
    [all...]
  /system/connectivity/shill/wifi/
mock_wifi_provider.h 43 WiFiServiceRefPtr(const WiFiEndpointConstRefPtr& endpoint));
44 MOCK_METHOD1(OnEndpointAdded, void(const WiFiEndpointConstRefPtr& endpoint));
46 WiFiServiceRefPtr(const WiFiEndpointConstRefPtr& endpoint));
48 void(const WiFiEndpointConstRefPtr& endpoint));
wifi_endpoint_unittest.cc 188 const WiFiEndpointRefPtr& endpoint,
190 endpoint->vendor_information_ = vendor_information;
288 // binary equivalents before calling the Endpoint constructor. Let's make
289 // sure the Endpoint can translate them back losslessly to strings.
290 WiFiEndpointRefPtr endpoint = local
292 EXPECT_EQ(kSSID, endpoint->ssid_string());
293 EXPECT_EQ(kBSSID, endpoint->bssid_string());
297 WiFiEndpointRefPtr endpoint = local
299 EXPECT_EQ("?", endpoint->ssid_string());
463 WiFiEndpointRefPtr endpoint local
512 WiFiEndpointRefPtr endpoint = local
689 WiFiEndpointRefPtr endpoint = local
701 WiFiEndpointRefPtr endpoint = local
716 WiFiEndpointRefPtr endpoint = local
728 WiFiEndpointRefPtr endpoint = local
786 WiFiEndpointRefPtr endpoint = MakeEndpoint( local
792 WiFiEndpointRefPtr endpoint = local
798 WiFiEndpointRefPtr endpoint = local
805 WiFiEndpointRefPtr endpoint = local
814 WiFiEndpointRefPtr endpoint = MakeEndpoint( local
819 WiFiEndpointRefPtr endpoint = MakeEndpoint( local
827 WiFiEndpointRefPtr endpoint = MakeEndpoint( local
    [all...]
mock_wifi_service.h 52 void(const WiFiEndpointConstRefPtr& endpoint));
54 void(const WiFiEndpointConstRefPtr& endpoint));
56 void(const WiFiEndpointConstRefPtr& endpoint));
58 void(const WiFiEndpointConstRefPtr& endpoint));
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
regioninfo.py 32 def __init__(self, connection=None, name=None, endpoint=None,
35 super(EC2RegionInfo, self).__init__(connection, name, endpoint,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/
regioninfo.py 29 def __init__(self, connection=None, name=None, endpoint=None,
32 super(SDBRegionInfo, self).__init__(connection, name, endpoint,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sqs/
regioninfo.py 29 def __init__(self, connection=None, name=None, endpoint=None,
32 super(SQSRegionInfo, self).__init__(connection, name, endpoint,
  /frameworks/base/core/java/android/hardware/usb/
UsbRequest.java 32 * <p>Requests on endpoint zero are not supported by this class;
33 * use {@link UsbDeviceConnection#controlTransfer} for endpoint zero requests instead.
55 * Initializes the request so it can read or write data on the given endpoint.
56 * Whether the request allows reading or writing depends on the direction of the endpoint.
58 * @param endpoint the endpoint to be used for this request.
61 public boolean initialize(UsbDeviceConnection connection, UsbEndpoint endpoint) {
62 mEndpoint = endpoint;
63 return native_init(connection, endpoint.getAddress(), endpoint.getAttributes()
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/nio/
SelectChannelConnector.java 32 import org.eclipse.jetty.io.EndPoint;
135 public void customize(EndPoint endpoint, Request request) throws IOException
138 endpoint.setMaxIdleTime(_maxIdleTime);
139 super.customize(endpoint, request);
144 public void persist(EndPoint endpoint) throws IOException
146 AsyncEndPoint aEndp = ((AsyncEndPoint)endpoint);
148 super.persist(endpoint);
277 protected void endPointClosed(SelectChannelEndPoint endpoint)
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
resolver_service.hpp 38 // The endpoint type.
39 typedef typename Protocol::endpoint endpoint_type;
85 // Resolve an endpoint to a list of entries.
87 const endpoint_type& endpoint, asio::error_code& ec)
91 socket_ops::sync_getnameinfo(endpoint.data(), endpoint.size(),
93 endpoint.protocol().type(), ec);
96 endpoint, host_name, service_name);
99 // Asynchronously resolve an endpoint to a list of entries.
102 const endpoint_type& endpoint, Handler& handler
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_resolver_entry.hpp 36 /// The protocol type associated with the endpoint entry.
39 /// The endpoint type associated with the endpoint entry.
40 typedef typename InternetProtocol::endpoint endpoint_type;
47 /// Construct with specified endpoint, host name and service name.
56 /// Get the endpoint associated with the entry.
57 endpoint_type endpoint() const function in class:asio::ip::basic_resolver_entry
62 /// Convert to the endpoint associated with the entry.
basic_resolver_iterator.hpp 90 typename InternetProtocol::endpoint endpoint;
91 endpoint.resize(static_cast<std::size_t>(address_info->ai_addrlen));
92 memcpy(endpoint.data(), address_info->ai_addr,
95 basic_resolver_entry<InternetProtocol>(endpoint,
104 /// Create an iterator from an endpoint, host name and service name.
106 const typename InternetProtocol::endpoint& endpoint,
113 endpoint, host_name, service_name));
basic_resolver_query.hpp 39 /// The protocol type associated with the endpoint query.
65 typename InternetProtocol::endpoint endpoint; local
68 hints_.ai_socktype = endpoint.protocol().type();
69 hints_.ai_protocol = endpoint.protocol().protocol();
150 typename InternetProtocol::endpoint endpoint; local
153 hints_.ai_socktype = endpoint.protocol().type();
154 hints_.ai_protocol = endpoint.protocol().protocol();
  /bionic/tools/bionicbb/
gerrit.py 38 def call(endpoint, method='GET'):
42 url = gerrit_url + endpoint
50 endpoint = '/changes/{}/detail?o=CURRENT_REVISION'.format(change_id)
51 change = json.loads(call(endpoint))
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearch/
test_document.py 42 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
58 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
74 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
91 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
130 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
153 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
176 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
190 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
208 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
236 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com"
    [all...]
test_search.py 91 search = SearchConnection(endpoint=HOSTNAME)
102 search = SearchConnection(endpoint=HOSTNAME)
111 search = SearchConnection(endpoint=HOSTNAME)
122 search = SearchConnection(endpoint=HOSTNAME)
131 search = SearchConnection(endpoint=HOSTNAME)
140 search = SearchConnection(endpoint=HOSTNAME)
152 search = SearchConnection(endpoint=HOSTNAME)
167 search = SearchConnection(endpoint=HOSTNAME)
176 search = SearchConnection(endpoint=HOSTNAME)
187 search = SearchConnection(endpoint=HOSTNAME
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
regioninfo.py 45 Given an existing set of endpoint data, this will deep-update it with
70 Actually load the region/endpoint information from the JSON files.
137 for region_name, endpoint in endpoints.get(service_name, {}).items():
141 endpoint=endpoint,
154 def __init__(self, connection=None, name=None, endpoint=None,
158 self.endpoint = endpoint
171 self.endpoint = value
177 Connect to this Region's endpoint. Returns an connectio
    [all...]
  /development/host/windows/usb/winusb/
adb_winusb_endpoint_object.h 21 encapsulates a handle opened to a WinUsb endpoint on our device.
27 /** Class AdbWinUsbEndpointObject encapsulates a handle opened to an endpoint on
35 @param[in] endpoint_id Endpoint ID (endpoint address) on the device.
36 @param[in] endpoint_index Zero-based endpoint index in the interface's
141 global per endpoint (pipe). I.e. once set, it will be used against
142 all read / write operations performed on this endpoint, untill
148 there is no conflict in setting per-endpoint timeouts.
169 DecrementPendingIO(AdbWinUsbEndpointObject* endpoint)
170 : endpoint_(endpoint) {}
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/iam/
__init__.py 33 Connect to this Region's endpoint. Returns an connection
34 object pointing to the endpoint associated with this region.
40 :return: The connection to this regions endpoint
43 return self.connection_cls(host=self.endpoint, **kw_params)
59 # For historical reasons, we had a "universal" endpoint as well.
63 endpoint='iam.amazonaws.com',
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/
__init__.py 34 Connect to this Region's endpoint. Returns an connection
35 object pointing to the endpoint associated with this region.
41 :return: The connection to this regions endpoint
44 return self.connection_cls(host=self.endpoint, **kw_params)
60 # For historical reasons, we had a "universal" endpoint as well.
64 endpoint='route53.amazonaws.com',
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
__init__.py 33 Connect to this Region's endpoint. Returns an connection
34 object pointing to the endpoint associated with this region.
40 :return: The connection to this regions endpoint
43 return self.connection_cls(host=self.endpoint, **kw_params)
66 region.endpoint = kw_params['host']

Completed in 500 milliseconds

1 2 3 4 5 6 7 8 91011>>