HomeSort by relevance Sort by last modified time
    Searched full:endpoint (Results 51 - 75 of 512) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libusb_aah/libusb/
libusb.h 218 /** Endpoint descriptor. See libusb_endpoint_descriptor. */
246 * Endpoint direction. Values for bit 7 of the
247 * \ref libusb_endpoint_descriptor::bEndpointAddress "endpoint address" scheme.
260 * Endpoint transfer type. Values for bits 0:1 of the
261 * \ref libusb_endpoint_descriptor::bmAttributes "endpoint attributes" field.
264 /** Control endpoint */
267 /** Isochronous endpoint */
270 /** Bulk endpoint */
273 /** Interrupt endpoint */
314 /** Set then report an endpoint's synchronization frame *
537 const struct libusb_endpoint_descriptor *endpoint; member in struct:libusb_interface_descriptor
892 unsigned char endpoint; member in struct:libusb_transfer
    [all...]
descriptor.c 72 static void clear_endpoint(struct libusb_endpoint_descriptor *endpoint)
74 if (endpoint->extra)
75 free((unsigned char *) endpoint->extra);
79 struct libusb_endpoint_descriptor *endpoint, unsigned char *buffer,
104 usbi_parse_descriptor(buffer, "bbbbwbbb", endpoint, host_endian);
106 usbi_parse_descriptor(buffer, "bbbbwb", endpoint, host_endian);
140 endpoint->extra = NULL;
141 endpoint->extra_length = 0;
146 endpoint->extra = extra;
148 endpoint->extra_length = 0
275 struct libusb_endpoint_descriptor *endpoint; local
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/
NioEndpoint.java 35 import com.jme3.network.kernel.Endpoint;
45 * Endpoint implementation that encapsulates the
52 public class NioEndpoint implements Endpoint
97 throw new KernelException( "Error closing endpoint for socket:" + socket, e );
123 // We create a ByteBuffer per endpoint since we
124 // use it to track the data sent to each endpoint
172 throw new KernelException( "Endpoint has been closed:" + socket );
SelectorKernel.java 115 public void broadcast( Filter<? super Endpoint> filter, ByteBuffer data, boolean reliable,
134 // Give it the data... but let each endpoint track their
147 // Note: we purposely do NOT put the key in the endpoint.
154 // Enqueue an endpoint event for the listeners
165 // Enqueue an endpoint event for the listeners
184 //log.log( Level.INFO, "Closing endpoint:{0}.", p );
231 * the endpoint -> key mapping internally.
318 // And now create a new endpoint
328 //log.log( Level.INFO, "Endpoint already closed:{0}.", p );
331 log.log( Level.FINE, "Endpoint keys size:{0}", endpointKeys.size() )
    [all...]
  /external/guava/guava/src/com/google/common/collect/
GeneralRange.java 64 * Returns everything above the endpoint relative to the specified comparator, with the specified
65 * endpoint behavior.
67 static <T> GeneralRange<T> downTo(Comparator<? super T> comparator, @Nullable T endpoint,
69 return new GeneralRange<T>(comparator, true, endpoint, boundType, false, null, OPEN);
73 * Returns everything below the endpoint relative to the specified comparator, with the specified
74 * endpoint behavior.
76 static <T> GeneralRange<T> upTo(Comparator<? super T> comparator, @Nullable T endpoint,
78 return new GeneralRange<T>(comparator, false, null, OPEN, true, endpoint, boundType);
83 * specified endpoint behavior.
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
Envelope.java 44 private Endpoint source;
53 public Envelope( Endpoint source, byte[] data, boolean reliable )
60 public Endpoint getSource()
AbstractKernel.java 58 * Contains the pending endpoint events waiting for the caller
103 * Removes and returnsn one endpoint event from the event queue or
104 * null if there are no endpoint events.
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
CHANGELOG.txt 14 * Increased size of example endpoint input field and added note about
  /frameworks/av/media/libmedia/
IMediaPlayer.cpp 296 status_t setRetransmitEndpoint(const struct sockaddr_in* endpoint)
302 if (NULL != endpoint) {
303 data.writeInt32(sizeof(*endpoint));
304 data.write(endpoint, sizeof(*endpoint));
325 status_t getRetransmitEndpoint(struct sockaddr_in* endpoint)
337 data.read(endpoint, sizeof(*endpoint));
512 struct sockaddr_in endpoint; local
514 if (amt == sizeof(endpoint)) {
526 struct sockaddr_in endpoint; local
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/download/
download_shelf_view.mm 44 NSPoint endPoint =
49 toPoint:endPoint
  /external/chromium/net/base/
ip_endpoint.h 16 // An IPEndPoint represents the address of a transport endpoint:
24 IPEndPoint(const IPEndPoint& endpoint);
ip_endpoint.cc 25 IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) {
26 address_ = endpoint.address_;
27 port_ = endpoint.port_;
net_util_win.cc 113 IPEndPoint endpoint; local
114 if (endpoint.FromSockAddr(address->Address.lpSockaddr,
117 networks->push_back(NetworkInterface(name, endpoint.address()));
  /development/samples/USB/MissileLauncher/src/com/android/missilelauncher/
MissileLauncherActivity.java 121 // device should have one endpoint
123 Log.e(TAG, "could not find endpoint");
126 // endpoint should be of type interrupt
129 Log.e(TAG, "endpoint is not interrupt type");
157 // Send command via a control request on endpoint zero
222 // queue a request on the interrupt endpoint
  /external/ipsec-tools/src/racoon/doc/
README.gssapi 37 GSS endpoint attribute will be specified in the first SA sent.
38 However, if the initiator does specify a GSS endpoint attribute,
39 racoon will always respond with its own GSS endpoint name
64 insert the (variable-length) GSS endpoint name attribute.
85 the config file must be used, as Windows 2000 expects the GSS endpoint
87 because the spec describes the GSS endpoint name sent by W2K as
  /external/libusb-compat/libusb/
core.c 359 if (iface->endpoint) {
362 clear_endpoint_descriptor(iface->endpoint + i);
363 free(iface->endpoint);
420 dest->endpoint = malloc(alloc_size);
421 if (!dest->endpoint)
423 memset(dest->endpoint, 0, alloc_size);
426 int r = copy_endpoint_descriptor(dest->endpoint + i, &src->endpoint[i]);
736 usbi_dbg("endpoint %x", ep);
751 usbi_dbg("endpoint %x size %d timeout %d", ep, size, timeout)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PathOpenVG.cpp 205 void Path::addQuadCurveTo(const FloatPoint& controlPoint, const FloatPoint& endPoint)
208 const VGfloat pathData[] = { controlPoint.x(), controlPoint.y(), endPoint.x(), endPoint.y() };
214 m_path->m_currentPoint = endPoint;
217 void Path::addBezierCurveTo(const FloatPoint& controlPoint1, const FloatPoint& controlPoint2, const FloatPoint& endPoint)
220 const VGfloat pathData[] = { controlPoint1.x(), controlPoint1.y(), controlPoint2.x(), controlPoint2.y(), endPoint.x(), endPoint.y() };
226 m_path->m_currentPoint = endPoint;
259 FloatPoint endPoint = FloatPoint(point1.x() + v21.width() * rate,
280 radius, radius, 0, endPoint.x(), endPoint.y(
    [all...]
  /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/kernel-headers/original/linux/usb/
functionfs.h 19 /* Descriptor of an non-audio endpoint */
132 /* Endpoint ioctls */
139 * THIS returns how many bytes are "unclaimed" in the endpoint fifo
147 /* resets endpoint halt+toggle; used to implement set_interface.
162 * Returns real bEndpointAddress of an endpoint. If function is not
  /frameworks/base/services/jni/
com_android_server_UsbHostManager.cpp 89 struct usb_endpoint_descriptor *endpoint = (struct usb_endpoint_descriptor *)desc; local
92 endpointValues.add(endpoint->bEndpointAddress);
93 endpointValues.add(endpoint->bmAttributes);
94 endpointValues.add(__le16_to_cpu(endpoint->wMaxPacketSize));
95 endpointValues.add(endpoint->bInterval);
  /external/chromium/net/socket/
tcp_server_socket_unittest.cc 47 IPEndPoint endpoint; local
48 EXPECT_TRUE(endpoint.FromSockAddr(
50 return endpoint;
  /external/kernel-headers/original/linux/
usb.h 46 * struct usb_host_endpoint - host-side endpoint descriptor and queue
47 * @desc: descriptor for this endpoint, wMaxPacketSize in native byteorder
48 * @urb_list: urbs queued to this endpoint; maintained by usbcore
52 * @extra: descriptors following this endpoint in the configuration
55 * USB requests are always queued to a given endpoint, identified by a
75 struct usb_host_endpoint *endpoint; member in struct:usb_host_interface
93 * endpoint configurations. They will be in no particular order.
113 * or by a product's vendor. The (default) control endpoint is part of
174 * set of endpoint configurations. They will be in no particular order.
333 unsigned int toggle[2]; /* one bit for each endpoint
    [all...]
  /development/host/windows/usb/api/
adb_api.cpp 359 // Lookup endpoint object for the handle
376 // Lookup endpoint object for the handle
397 // Lookup endpoint object for the handle
422 // Lookup endpoint object for the handle
446 // Lookup endpoint object for the handle
467 // Lookup endpoint object for the handle
487 // Lookup endpoint object for the handle
504 // Lookup endpoint object for the handle
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/usb/
midi.h 29 /* A.2 MS Class-Specific Endpoint Descriptor Subtypes */
91 /* 6.2.2 Class-Specific MS Bulk Data Endpoint Descriptor */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/usb/
midi.h 29 /* A.2 MS Class-Specific Endpoint Descriptor Subtypes */
91 /* 6.2.2 Class-Specific MS Bulk Data Endpoint Descriptor */

Completed in 5408 milliseconds

1 23 4 5 6 7 8 91011>>