Home | History | Annotate | Download | only in usb

Lines Matching refs:endpoint

104      * Performs a control transaction on endpoint zero for this device.
133 * Performs a control transaction on endpoint zero for this device.
160 * Performs a bulk transaction on the given endpoint.
161 * The direction of the transfer is determined by the direction of the endpoint.
168 * @param endpoint the endpoint for this transaction
175 public int bulkTransfer(UsbEndpoint endpoint,
177 return bulkTransfer(endpoint, buffer, 0, length, timeout);
181 * Performs a bulk transaction on the given endpoint.
182 * The direction of the transfer is determined by the direction of the endpoint.
184 * @param endpoint the endpoint for this transaction
192 public int bulkTransfer(UsbEndpoint endpoint,
195 return native_bulk_request(endpoint.getAddress(), buffer, offset, length, timeout);
241 private native int native_bulk_request(int endpoint, byte[] buffer,