HomeSort by relevance Sort by last modified time
    Searched full:endpoint (Results 151 - 175 of 511) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/net/spdy/
spdy_proxy_client_socket.h 43 // CONNECT frame for |endpoint|. After the SYN_REPLY is received,
48 const HostPortPair& endpoint,
147 // The hostname and port of the endpoint. This is not necessarily the one
  /external/guava/guava/src/com/google/common/collect/
Range.java 43 * each of which can <i>open</i> (exclusive of its endpoint), <i>closed</i>
44 * (inclusive of its endpoint), or <i>unbounded</i>. This yields nine basic
67 * The upper endpoint may not be less than the lower endpoint. The endpoints may
127 * Returns {@code true} if this range has a lower endpoint.
134 * Returns the lower endpoint of this range.
140 return lowerBound.endpoint();
145 * the range includes its lower endpoint, {@link BoundType#OPEN} if it does
156 * Returns {@code true} if this range has an upper endpoint.
163 * Returns the upper endpoint of this range
    [all...]
  /external/libppp/src/
mp.h 58 struct enddisc enddisc; /* Peers endpoint discriminator */
98 unsigned negenddisc : 2; /* I want an endpoint discriminator */
99 struct enddisc enddisc; /* endpoint discriminator */
  /external/webkit/Source/WebCore/svg/
SVGLinearGradientElement.cpp 200 void SVGLinearGradientElement::calculateStartEndPoints(const LinearGradientAttributes& attributes, FloatPoint& startPoint, FloatPoint& endPoint)
205 endPoint = FloatPoint(attributes.x2().valueAsPercentage(), attributes.y2().valueAsPercentage());
208 endPoint = FloatPoint(attributes.x2().value(this), attributes.y2().value(this));
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 318 final int startPoint, final int endPoint, final boolean vcardType21) {
319 if (startPoint < 1 || startPoint > endPoint) {
320 Log.e(TAG, "internal error: startPoint or endPoint is not correct.");
342 if (startPoint == endPoint) {
345 callsCursor.moveToPosition(endPoint - 1);
357 if (startPoint == endPoint) {
379 final int endPoint, final boolean vcardType21, String ownerVCard) {
380 if (startPoint < 1 || startPoint > endPoint) {
381 Log.e(TAG, "internal error: startPoint or endPoint is not correct.");
396 if (startPoint == endPoint) {
    [all...]
BluetoothPbapObexServer.java 573 int endPoint = startPoint + requestSize;
574 if (endPoint > nameList.size()) {
575 endPoint = nameList.size();
579 for (int j = startPoint; j < endPoint; j++) {
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderMarquee.cpp 280 int endPoint = m_end;
290 endPoint = m_start;
300 newPos = min(newPos, endPoint);
302 newPos = max(newPos, endPoint);
305 if (newPos == endPoint) {
  /system/core/adb/
usb_windows.c 43 /// Handle to USB read pipe (endpoint)
46 /// Handle to USB write pipe (endpoint)
209 // Open read pipe (endpoint)
215 // Open write pipe (endpoint)
438 // assuming zero is a valid bulk endpoint ID
  /external/libusb_aah/libusb/
core.c 300 * - libusb is able to send a packet of zero length to an endpoint simply by
713 struct libusb_config_descriptor *config, unsigned char endpoint)
728 &altsetting->endpoint[ep_idx];
729 if (ep->bEndpointAddress == endpoint)
739 * endpoint in the active device configuration.
748 * \param endpoint address of the endpoint in question
750 * \returns LIBUSB_ERROR_NOT_FOUND if the endpoint does not exist
754 unsigned char endpoint)
767 ep = find_endpoint(config, endpoint);
    [all...]
  /external/libusb_aah/libusb/os/
openbsd_usb.c 146 /* Control endpoint is always .00 */
386 obsd_clear_halt(struct libusb_device_handle *handle, unsigned char endpoint)
396 USETW(req.ucr_request.wIndex, endpoint);
671 endpt = UE_GET_ADDR(transfer->endpoint);
674 usbi_dbg("endpoint %d mode %d", endpt, mode);
682 /* We may need to read/write to the same endpoint later. */
703 * endpoint and thus the node to open.
  /external/libusb/libusb/
core.c 675 struct libusb_config_descriptor *config, unsigned char endpoint)
690 &altsetting->endpoint[ep_idx];
691 if (ep->bEndpointAddress == endpoint)
701 * endpoint in the active device configuration.
710 * \param endpoint address of the endpoint in question
712 * \returns LIBUSB_ERROR_NOT_FOUND if the endpoint does not exist
716 unsigned char endpoint)
729 ep = find_endpoint(config, endpoint);
739 * Calculate the maximum packet size which a specific endpoint is capable i
    [all...]
  /frameworks/base/docs/html/guide/topics/connectivity/usb/
host.jd 79 <td>Represents an interface endpoint, which is a communication channel for this interface. An
112 interface to communicate on. Once you obtain the correct endpoint, open a {@link
361 device that you want to communicate on and send requests on this endpoint with a {@link
372 or more endpoints, and commonly will have an input and output endpoint for two-way
375 <li>When you find the correct endpoint, open a {@link android.hardware.usb.UsbDeviceConnection}
376 on that endpoint.</li>
378 <li>Supply the data that you want to transmit on the endpoint with the {@link
398 UsbEndpoint endpoint = intf.getEndpoint(0);
401 connection.bulkTransfer(endpoint, bytes, bytes.length, TIMEOUT); //do in another thread
413 shows how to listen on an interrupt endpoint asynchronously.</p
    [all...]
  /frameworks/base/tools/aidl/
generate_java_rpc.cpp 20 // TODO: Just use Endpoint, so this works for all endpoints.
293 Variable* endpoint; member in class:RpcProxyClass
312 // endpoint
313 this->endpoint = new Variable(RPC_ENDPOINT_INFO_TYPE, "_endpoint");
314 this->elements.push_back(new Field(PRIVATE, this->endpoint));
329 Variable* endpoint = new Variable(RPC_ENDPOINT_INFO_TYPE, "endpoint"); local
335 ctor->parameters.push_back(endpoint);
339 ctor->statements->Add(new Assignment(this->endpoint, endpoint));
    [all...]
  /external/qemu/hw/
usb-msd.c 118 /* Bulk-In endpoint */
120 0x05, /* u8 ep_bDescriptorType; Endpoint */
121 0x81, /* u8 ep_bEndpointAddress; IN Endpoint 1 */
126 /* Bulk-Out endpoint */
128 0x05, /* u8 ep_bDescriptorType; Endpoint */
129 0x02, /* u8 ep_bEndpointAddress; OUT Endpoint 2 */
usb-hid.c 141 /* one endpoint (status change endpoint) */
143 0x05, /* u8 ep_bDescriptorType; Endpoint */
144 0x81, /* u8 ep_bEndpointAddress; IN Endpoint 1 */
196 /* one endpoint (status change endpoint) */
198 0x05, /* u8 ep_bDescriptorType; Endpoint */
199 0x81, /* u8 ep_bEndpointAddress; IN Endpoint 1 */
251 /* one endpoint (status change endpoint) */
    [all...]
  /libcore/luni/src/main/java/java/math/
Conversion.java 274 int endPoint = resLengthInChars;
275 StringBuilder result1 = new StringBuilder(16 + endPoint - startPoint);
279 if (endPoint - startPoint >= 1) {
374 int endPoint = resLengthInChars;
375 StringBuilder result1 = new StringBuilder(16 + endPoint - startPoint);
379 if (endPoint - startPoint >= 1) {
  /system/core/libusbhost/
usbhost.c 573 int endpoint,
585 ctrl.ep = endpoint;
604 D("Unsupported endpoint type %d", ep_desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK);
608 urb->endpoint = ep_desc->bEndpointAddress;
619 req->endpoint = urb->endpoint;
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
CubeWallpaper2.java 47 int endPoint;
142 mLines[i].endPoint = Integer.valueOf(idx[1]);
283 ThreeDPoint end = mRotatedPoints[l.endPoint];
  /external/bison/lib/
strerror-override.c 79 return "Transport endpoint is already connected";
81 return "Transport endpoint is not connected";
113 return "Cannot send after transport endpoint shutdown";
  /external/chromium/net/socket/
transport_client_socket_pool_unittest.cc 1097 IPEndPoint endpoint; local
1141 IPEndPoint endpoint; local
1174 IPEndPoint endpoint; local
1207 IPEndPoint endpoint; local
    [all...]
  /frameworks/av/services/camera/libcameraservice/camera3/
Camera3Stream.h 48 * be gotten yet. Not connected to any endpoint, no buffers are registered
201 * Disconnect stream from its non-HAL endpoint. After this,
270 // Gets all buffers from endpoint and registers them with the HAL.
  /frameworks/base/services/common_time/
common_time_server.h 247 struct sockaddr_storage mMasterElectionEP; // Endpoint over which we conduct master election
248 String8 mBindIface; // Endpoint for the service to bind to.
251 struct sockaddr_storage mMasterEP; // Endpoint of our current master (if any)
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_audio.h 246 * SND endpoint. On input, the .id field contains the number of the
247 * endpoint, and on exit it contains the SND index, while .name contains
248 * the description of the endpoint.
  /ndk/sources/host-tools/sed-4.2.1/lib/
strerror.c 116 msg = "Transport endpoint is already connected";
119 msg = "Transport endpoint is not connected";
122 msg = "Cannot send after transport endpoint shutdown";
  /cts/suite/audio_quality/test_description/processing/
calc_delay.py 68 index = np.linspace(0.0, samples, num=samples, endpoint=False)

Completed in 585 milliseconds

1 2 3 4 5 67 8 91011>>