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

1 2 3 4 5 6

  /development/host/windows/usb/api/
adb_legacy_interface.h 86 /** \brief Gets information about an endpoint on this interface.
88 @param[in] endpoint_index Zero-based endpoint index. There are two
92 @param[out] info Upon successful completion will have endpoint information.
99 /** \brief Opens an endpoint on this interface.
101 @param[in] endpoint_index Zero-based endpoint index. There are two
106 this parameter has no effect on the way endpoint is opened. It's
109 this parameter has no effect on the way endpoint is opened. It's
111 @return Handle to the opened endpoint object or NULL on failure.
124 /** \brief Opens an endpoint on this interface.
126 @param[in] endpoint_name Endpoint file name.
    [all...]
adb_api.h 35 /** \brief Enumerates ADB endpoint types.
40 /// Unknown (invalid, or not initialized) endpoint type.
43 /// Endpoint is device control pipe.
46 /// Endpoint is isochronous r/w pipe.
49 /// Endpoint is a bulk r/w pipe.
52 /// Endpoint is an interrupt r/w pipe.
56 /** \brief Endpoint desriptor.
61 /// Maximum packet size this endpoint is capable of.
67 /// ADB endpoint type.
70 /// Raw endpoint address on the device as described by its descriptor.
    [all...]
adb_legacy_interface.cpp 75 // ADB_QUERY_BULK_READ_ENDPOINT_INDEX into actual endpoint indexes and IDs.
76 for (UCHAR endpoint = 0; endpoint < usb_interface_descriptor_.bNumEndpoints;
77 endpoint++) {
78 // Get endpoint information
80 if (!GetEndpointInformation(endpoint, &pipe_info)) {
85 // This is a bulk endpoint. Cache its index and ID.
87 // Use this endpoint as default bulk read endpoint
89 def_read_endpoint_ = endpoint;
    [all...]
adb_legacy_endpoint_object.h 21 encapsulates a handle opened to an endpoint on our device controlled by
28 /** Encapsulates a handle opened to an endpoint on our device controlled by
36 @param[in] endpoint_id Endpoint ID (endpoint address) on the device.
37 @param[in] endpoint_index Zero-based endpoint index in the interface's
102 /** \brief Opens endpoint and creates a handle to this object
104 @param item_path[in] Path to the endpoint on our USB device.
123 We override this method in order to close handle to the endpoint opened
132 /// Gets handle to the endpoint opened on our USB device.
138 /// Handle to the endpoint opened on our USB device.
    [all...]
adb_endpoint_object.h 21 encapsulates a handle opened to an endpoint on our device.
26 /** Class AdbEndpointObject encapsulates a handle opened to an endpoint on
39 @param[in] endpoint_id Endpoint ID (endpoint address) on the device.
40 @param[in] endpoint_index Zero-based endpoint index in the interface's
105 /** \brief Gets information about this endpoint.
107 @param[out] info Upon successful completion will have endpoint information.
195 /// Gets this endpoint ID
200 /// Gets this endpoint index on the interface
215 /// This endpoint id
    [all...]
adb_interface.h 76 /** \brief Gets information about an endpoint on this interface.
78 @param[in] endpoint_index Zero-based endpoint index. There are two
82 @param[out] info Upon successful completion will have endpoint information.
89 /** \brief Opens an endpoint on this interface.
91 @param[in] endpoint_index Zero-based endpoint index. There are two
96 this parameter has no effect on the way endpoint is opened. It's
99 this parameter has no effect on the way endpoint is opened. It's
101 @return Handle to the opened endpoint object or NULL on failure.
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
  /external/qemu/
charpipe.h 23 /* 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 );
charpipe.c 257 ** 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...]
  /development/host/windows/usb/winusb/
adb_winusb_interface.cpp 100 // ADB_QUERY_BULK_READ_ENDPOINT_INDEX into actual endpoint indexes and IDs.
101 for (UCHAR endpoint = 0; endpoint < usb_interface_descriptor_.bNumEndpoints;
102 endpoint++) {
103 // Get endpoint information
105 if (!WinUsb_QueryPipe(winusb_handle(), interface_number(), endpoint,
111 // This is a bulk endpoint. Cache its index and ID.
113 // Use this endpoint as default bulk read endpoint
115 def_read_endpoint_ = endpoint;
    [all...]
adb_winusb_interface.h 116 /** \brief Gets information about an endpoint on this interface.
118 @param[in] endpoint_index Zero-based endpoint index. There are two
122 @param[out] info Upon successful completion will have endpoint information.
129 /** \brief Opens an endpoint on this interface.
131 @param[in] endpoint_index Zero-based endpoint index. There are two
136 this parameter has no effect on the way endpoint is opened. It's
139 this parameter has no effect on the way endpoint is opened. It's
141 @return Handle to the opened endpoint object or NULL on failure.
154 /** \brief Opens an endpoint on this interface.
156 @param[in] endpoint_id Endpoint (pipe) address on the device.
    [all...]
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
130 global per endpoint (pipe). I.e. once set, it will be used against
131 all read / write operations performed on this endpoint, untill
137 there is no conflict in setting per-endpoint timeouts.
  /external/srec/tools/grxmlcompile/
sub_grph.cpp 369 void SubGraph::RemoveRuleStarts (int startPoint, int endPoint)
371 if (startPoint == -1 && endPoint == -1) {
373 endPoint= lastId;
382 ProcessBegins (startPoint, endPoint, BEGINRULE_LABEL, nodeList, 0, visitList, numVertex);
390 void SubGraph::RemoveRuleEnds (int startPoint, int endPoint)
392 if (startPoint == -1 && endPoint == -1) {
394 endPoint= lastId;
403 ProcessEnds (endPoint, startPoint, ENDRULE_LABEL, nodeList, 0, visitList, numVertex);
411 void SubGraph::RemoveNulls (int startPoint, int endPoint)
413 if (startPoint == -1 && endPoint == -1)
    [all...]
  /frameworks/base/core/java/android/net/
LocalSocket.java 81 * Connects this socket to an endpoint. May only be called on an instance
84 * @param endpoint endpoint address
88 public void connect(LocalSocketAddress endpoint) throws IOException {
95 impl.connect(endpoint, 0);
102 * Binds this socket to an endpoint name. May only be called on an instance
105 * @param bindpoint endpoint address
238 public void connect(LocalSocketAddress endpoint, int timeout)
  /external/kernel-headers/original/linux/
msm_audio.h 94 * SND endpoint. On input, the .id field contains the number of the
95 * endpoint, and on exit it contains the SND index, while .name contains
96 * the description of the endpoint.
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...]
  /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
  /dalvik/libcore/luni/src/main/java/java/net/
InetSocketAddress.java 24 * This class represents a socket endpoint described by a IP address and a port
38 * Creates a socket endpoint with the given port number {@code port} and
50 * Creates a socket endpoint with the given port number {@code port} and
74 * Creates a socket endpoint with the given port number {@code port} and the
141 * @return the socket endpoint port number.
150 * @return the socket endpoint address.
159 * @return the socket endpoint hostname.
SocketAddress.java 24 * socket-endpoint representing classes. The class has to be implemented
  /external/webkit/WebCore/svg/
SVGLinearGradientElement.cpp 110 FloatPoint endPoint;
113 endPoint = FloatPoint(attributes.x2().valueAsPercentage(), attributes.y2().valueAsPercentage());
116 endPoint = FloatPoint(attributes.x2().value(this), attributes.y2().value(this));
119 RefPtr<Gradient> gradient = Gradient::create(startPoint, endPoint);
143 linearGradient->setGradientEnd(endPoint);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 266 final int startPoint, final int endPoint, final boolean vcardType21) {
267 if (startPoint < 1 || startPoint > endPoint) {
268 Log.e(TAG, "internal error: startPoint or endPoint is not correct.");
290 if (startPoint == endPoint) {
293 callsCursor.moveToPosition(endPoint - 1);
305 if (startPoint == endPoint) {
327 final int endPoint, final boolean vcardType21, String ownerVCard) {
328 if (startPoint < 1 || startPoint > endPoint) {
329 Log.e(TAG, "internal error: startPoint or endPoint is not correct.");
344 if (startPoint == endPoint) {
    [all...]
BluetoothPbapObexServer.java 555 int endPoint = startPoint + requestSize;
556 if (endPoint > nameList.size()) {
557 endPoint = nameList.size();
567 for (int j = startPoint; j < endPoint; j++) {
573 for (int j = startPoint; j < endPoint; j++) {
590 int endPoint = startPoint + requestSize;
591 if (endPoint > numberList.size()) {
592 endPoint = numberList.size();
601 for (int j = startPoint; j < endPoint; j++) {
607 for (int j = startPoint; j < endPoint; j++)
    [all...]
  /external/kernel-headers/original/asm-generic/
errno.h 68 #define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */
79 #define EISCONN 106 /* Transport endpoint is already connected */
80 #define ENOTCONN 107 /* Transport endpoint is not connected */
81 #define ESHUTDOWN 108 /* Cannot send after transport endpoint shutdown */
  /external/ppp/pppd/
lcp.h 58 #define CI_EPDISC 19 /* endpoint discriminator */
88 bool neg_endpoint; /* negotiate endpoint discriminator */
96 struct epdisc endpoint; /* endpoint discriminator */ member in struct:lcp_options
  /system/core/adb/
usb_osx.c 301 UInt8 endpoint; local
337 for (endpoint = 0; endpoint <= interfaceNumEndpoints; endpoint++) {
344 kr = (*interface)->GetPipeProperties(interface, endpoint, &direction,
352 handle->bulkIn = endpoint;
355 handle->bulkOut = endpoint;
460 DBG("ERR: bulkOut endpoint not assigned\n");
503 DBG("ERR: bulkIn endpoint not assigned\n");

Completed in 4264 milliseconds

1 2 3 4 5 6