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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/public/platform/
WebPushRegistration.h 13 WebPushRegistration(const WebString& endpoint, const WebString& registrationId)
14 : endpoint(endpoint)
19 WebString endpoint; member in struct:blink::WebPushRegistration
  /frameworks/base/core/java/android/hardware/usb/
UsbEndpoint.java 23 * A class representing an endpoint on a {@link UsbInterface}.
28 * The endpoint zero is a special endpoint for control messages sent from the host
51 * Returns the endpoint's address field.
52 * The address is a bitfield containing both the endpoint number
53 * as well as the data direction of the endpoint.
54 * the endpoint number and direction can also be accessed via
57 * @return the endpoint's address
64 * Extracts the endpoint's endpoint number from its addres
    [all...]
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...]
  /frameworks/base/telephony/java/com/android/ims/
ImsConferenceState.java 41 // user > endpoint (String) : URI or GRUU or Phone number
42 public static final String ENDPOINT = "endpoint";
43 // user > endpoint > status
48 * "pending" : Endpoint is not yet in the session, but it is anticipated that he/she will
50 * "dialing-out" : Focus has dialed out to connect the endpoint to the conference,
51 * but the endpoint is not yet in the roster (probably being authenticated).
52 * "dialing-in" : Endpoint is dialing into the conference, not yet in the roster
55 * endpoint is being alerted.
56 * "on-hold" : Active signaling dialog exists between an endpoint and a focus
    [all...]
  /external/chromium_org/media/midi/
usb_midi_output_stream_unittest.cc 38 log_ += base::StringPrintf("(endpoint = %d)\n", endpoint_number);
75 EXPECT_EQ("0x29 0x90 0x45 0x7f (endpoint = 4)\n", device_.log());
84 EXPECT_EQ("0x29 0x90 0x45 0x7f (endpoint = 4)\n", device_.log());
100 "0x29 0x90 0x45 0x72 (endpoint = 4)\n", device_.log());
107 EXPECT_EQ("0x28 0x80 0x33 0x44 (endpoint = 4)\n", device_.log());
114 EXPECT_EQ("0x2a 0xa0 0x33 0x44 (endpoint = 4)\n", device_.log());
121 EXPECT_EQ("0x2b 0xb7 0x33 0x44 (endpoint = 4)\n", device_.log());
128 EXPECT_EQ("0x2c 0xc2 0x33 0x00 (endpoint = 4)\n", device_.log());
135 EXPECT_EQ("0x2d 0xd1 0x33 0x44 (endpoint = 4)\n", device_.log());
142 EXPECT_EQ("0x2e 0xe4 0x33 0x44 (endpoint = 4)\n", device_.log())
    [all...]
usb_midi_jack.h 17 // The direction of the endpoint associated with an EMBEDDED MIDI jack.
18 // Note that an IN MIDI jack associated with an OUT endpoint has
36 // The cable number of this jack in the associated endpoint.
38 // The address of the endpoint that this jack is associated with.
  /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
185 @Override Comparable<?> endpoint() { method in class:Cut.AboveAll
    [all...]
Ranges.java 127 * upper}, where each endpoint may be either inclusive (closed) or exclusive
149 * endpoint}.
151 public static <C extends Comparable<?>> Range<C> lessThan(C endpoint) {
152 return create(Cut.<C>belowAll(), Cut.belowValue(endpoint));
157 * {@code endpoint}.
159 public static <C extends Comparable<?>> Range<C> atMost(C endpoint) {
160 return create(Cut.<C>belowAll(), Cut.aboveValue(endpoint));
164 * Returns a range with no lower bound up to the given endpoint, which may be
168 C endpoint, BoundType boundType) {
171 return lessThan(endpoint);
    [all...]
  /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...]
  /development/samples/USB/MissileLauncher/
README.txt 10 - Sending control requests on endpoint zero that contain data
12 - Receiving packets on an interrupt endpoint using a thread that calls
_index.html 8 <li>Sending control requests on endpoint zero that contain data</li>
9 <li>Receiving packets on an interrupt endpoint using a thread that calls
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
UsbMidiDeviceAndroid.java 38 * A map from endpoint number to UsbEndpoint.
94 UsbEndpoint endpoint = iface.getEndpoint(j); local
95 if (endpoint.getDirection() == UsbConstants.USB_DIR_OUT) {
96 mEndpointMap.put(endpoint.getEndpointNumber(), endpoint); local
122 UsbEndpoint endpoint = iface.getEndpoint(j); local
123 if (endpoint.getDirection() == UsbConstants.USB_DIR_IN) {
124 ByteBuffer buffer = ByteBuffer.allocate(endpoint.getMaxPacketSize());
126 request.initialize(mConnection, endpoint);
128 bufferForEndpoints.put(endpoint, buffer)
145 UsbEndpoint endpoint = request.getEndpoint(); local
197 UsbEndpoint endpoint = mEndpointMap.get(endpointNumber); local
    [all...]
  /external/chromium_org/net/quic/
quic_flow_controller.cc 14 #define ENDPOINT (is_server_ ? "Server: " : " Client: ")
33 DVLOG(1) << ENDPOINT << "Created flow controller for stream " << id_
40 DVLOG(1) << ENDPOINT << "Disabling QuicFlowController for stream " << id_
52 DVLOG(1) << ENDPOINT << "Stream " << id_ << " consumed: " << bytes_consumed_;
67 DVLOG(1) << ENDPOINT << "Stream " << id_
80 LOG(DFATAL) << ENDPOINT << "Stream " << id_ << " Trying to send an extra "
91 DVLOG(1) << ENDPOINT << "Stream " << id_ << " sent: " << bytes_sent_;
100 LOG(ERROR) << ENDPOINT << "Flow control violation on stream "
126 DVLOG(1) << ENDPOINT << "Sending WindowUpdate frame for stream " << id_
145 DVLOG(1) << ENDPOINT << "Stream " << id_ << " is flow control blocked.
    [all...]
  /external/qemu/include/android/
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 );
  /device/google/accessory/arduino/USB_Host_Shield/
ch9.h 38 #define EP_DESCR_LEN 7 //endpoint descriptor length
54 #define USB_FEATURE_ENDPOINT_HALT 0 // CLEAR/SET FEATURE - Endpoint Halt
67 #define USB_SETUP_RECIPIENT_ENDPOINT 0x02 // Device Request bmRequestType recipient - endpoint
76 #define USB_DESCRIPTOR_ENDPOINT 0x05 // bDescriptorType for an Endpoint Descriptor.
87 /* USB Endpoint Transfer Types */
88 #define USB_TRANSFER_TYPE_CONTROL 0x00 // Endpoint is a control endpoint.
89 #define USB_TRANSFER_TYPE_ISOCHRONOUS 0x01 // Endpoint is an isochronous endpoint.
90 #define USB_TRANSFER_TYPE_BULK 0x02 // Endpoint is a bulk endpoint.
    [all...]
  /external/kernel-headers/original/uapi/linux/usb/
gadgetfs.h 5 * on endpoint files found in one directory. They are configured by
14 * or earlier; writing endpoint descriptors to /dev/gadget/$ENDPOINT
69 /* endpoint ioctls */
75 * THIS returns how many bytes are "unclaimed" in the endpoint fifo
83 /* resets endpoint halt+toggle; used to implement set_interface.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/usb/
gadgetfs.h 5 * on endpoint files found in one directory. They are configured by
14 * or earlier; writing endpoint descriptors to /dev/gadget/$ENDPOINT
69 /* endpoint ioctls */
75 * THIS returns how many bytes are "unclaimed" in the endpoint fifo
83 /* resets endpoint halt+toggle; used to implement set_interface.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/usb/
gadgetfs.h 5 * on endpoint files found in one directory. They are configured by
14 * or earlier; writing endpoint descriptors to /dev/gadget/$ENDPOINT
69 /* endpoint ioctls */
75 * THIS returns how many bytes are "unclaimed" in the endpoint fifo
83 /* resets endpoint halt+toggle; used to implement set_interface.
  /external/chromium_org/components/cloud_devices/common/
cloud_devices_switches.cc 17 // The XMPP endpoint the cloud print service will use. Only used if the cloud
19 const char kCloudPrintXmppEndpoint[] = "cloud-print-xmpp-endpoint";
  /external/chromium_org/mojo/system/
message_pipe_endpoint.h 30 // endpoint is local (i.e., in the current process), there'll be a dispatcher
31 // corresponding to the endpoint. In that case, the implementation of
46 // Returns false if the endpoint should be closed and destroyed, else true.
54 // Implementations must override these if they represent a local endpoint,
56 // An implementation for a proxy endpoint (for which there's no dispatcher)
74 // Implementations must override these if they represent a proxy endpoint. An
75 // implementation for a local endpoint needs not override these methods, since
79 // Returns false if the endpoint should be closed and destroyed, else true.
  /external/libusb-compat/examples/
testlibusb.c 13 void print_endpoint(struct usb_endpoint_descriptor *endpoint)
15 printf(" bEndpointAddress: %02xh\n", endpoint->bEndpointAddress);
16 printf(" bmAttributes: %02xh\n", endpoint->bmAttributes);
17 printf(" wMaxPacketSize: %d\n", endpoint->wMaxPacketSize);
18 printf(" bInterval: %d\n", endpoint->bInterval);
19 printf(" bRefresh: %d\n", endpoint->bRefresh);
20 printf(" bSynchAddress: %d\n", endpoint->bSynchAddress);
36 print_endpoint(&interface->endpoint[i]);
  /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...]

Completed in 4984 milliseconds

1 2 3 4 5 6 7 8 91011>>