Searched refs:endpoint (Results 1 - 23 of 23) sorted by relevance

/frameworks/base/core/java/android/hardware/usb/
H A DUsbRequest.java32 * <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) { argument
62 mEndpoint = endpoint;
63 return native_init(connection, endpoint.getAddress(), endpoint
[all...]
H A DUsbDeviceConnection.java123 * Performs a control transaction on endpoint zero for this device.
152 * Performs a control transaction on endpoint zero for this device.
179 * Performs a bulk transaction on the given endpoint.
180 * The direction of the transfer is determined by the direction of the endpoint.
187 * @param endpoint the endpoint for this transaction
194 public int bulkTransfer(UsbEndpoint endpoint, argument
196 return bulkTransfer(endpoint, buffer, 0, length, timeout);
200 * Performs a bulk transaction on the given endpoint.
201 * The direction of the transfer is determined by the direction of the endpoint
211 bulkTransfer(UsbEndpoint endpoint, byte[] buffer, int offset, int length, int timeout) argument
262 native_bulk_request(int endpoint, byte[] buffer, int offset, int length, int timeout) argument
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DConferenceParticipant.java40 * The endpoint Uri which uniquely identifies this conference participant. E.g. for an IMS
41 * conference call, this is the endpoint URI for the participant on the IMS conference server.
57 * @param endpoint The enpoint Uri which uniquely identifies this conference participant.
60 public ConferenceParticipant(Uri handle, String displayName, Uri endpoint, int state) { argument
63 mEndpoint = endpoint;
78 Uri endpoint = source.readParcelable(classLoader);
80 return new ConferenceParticipant(handle, displayName, endpoint, state);
144 * conference call, this is the endpoint URI for the participant on the IMS conference server.
H A DConnection.java42 * Represents a phone call or connection to a remote endpoint that carries voice and/or video
1718 * @param endpoint the {@link Uri} of the participant to disconnect.
1721 public void onDisconnectConferenceParticipant(Uri endpoint) {} argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DTestConferenceEventPackageParser.java42 * <endpoint>sip:+16505551212@ims-test-provider.com</endpoint>
132 String endpoint = "";
145 endpoint = parser.getText();
154 Log.v(LOG_TAG, "Endpoint: "+endpoint);
159 bundle.putString(ImsConferenceState.ENDPOINT, endpoint);
/frameworks/base/core/java/android/net/
H A DLocalSocket.java116 * Connects this socket to an endpoint. May only be called on an instance
119 * @param endpoint endpoint address
123 public void connect(LocalSocketAddress endpoint) throws IOException { argument
130 impl.connect(endpoint, 0);
137 * Binds this socket to an endpoint name. May only be called on an instance
140 * @param bindpoint endpoint address
274 public void connect(LocalSocketAddress endpoint, int timeout) argument
H A DLocalSocketImpl.java294 * Binds this socket to an endpoint name. May only be called on an instance
297 * @param endpoint endpoint address
300 public void bind(LocalSocketAddress endpoint) throws IOException argument
306 bindLocal(fd, endpoint.getName(), endpoint.getNamespace().getId());
/frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
H A Daccessorychat.c35 int endpoint = (int)(uintptr_t)arg; local
41 ret = usb_device_bulk_transfer(sDevice, endpoint, buffer, sizeof(buffer), 1000);
55 int endpoint = (int)(uintptr_t)arg; local
63 ret = usb_device_bulk_transfer(sDevice, endpoint, line, strlen(line), 1000);
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp377 status_t setRetransmitEndpoint(const struct sockaddr_in* endpoint) argument
383 if (NULL != endpoint) {
384 data.writeInt32(sizeof(*endpoint));
385 data.write(endpoint, sizeof(*endpoint));
406 status_t getRetransmitEndpoint(struct sockaddr_in* endpoint) argument
418 data.read(endpoint, sizeof(*endpoint));
655 struct sockaddr_in endpoint; local
656 memset(&endpoint,
670 struct sockaddr_in endpoint; local
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_UsbHostManager.cpp124 struct usb_endpoint_descriptor *endpoint = (struct usb_endpoint_descriptor *)desc; local
127 endpoint->bEndpointAddress, endpoint->bmAttributes,
128 __le16_to_cpu(endpoint->wMaxPacketSize), endpoint->bInterval);
/frameworks/av/include/media/
H A DIMediaPlayer.h79 virtual status_t setRetransmitEndpoint(const struct sockaddr_in* endpoint) = 0;
80 virtual status_t getRetransmitEndpoint(struct sockaddr_in* endpoint) = 0;
/frameworks/base/tools/aidl/
H A Dgenerate_java_rpc.cpp293 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));
352 get->statements->Add(new ReturnStatement(this->endpoint));
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_UsbDeviceConnection.cpp195 jint endpoint, jbyteArray buffer, jint start, jint length, jint timeout)
208 jint result = usb_device_bulk_transfer(device, endpoint, bufferBytes + start, length, timeout);
194 android_hardware_UsbDeviceConnection_bulk_request(JNIEnv *env, jobject thiz, jint endpoint, jbyteArray buffer, jint start, jint length, jint timeout) argument
/frameworks/av/media/mtp/
H A DMtpPacket.cpp157 request->endpoint,
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp678 // Set the re-transmission endpoint if one was chosen.
1189 const struct sockaddr_in* endpoint) {
1191 if (NULL != endpoint) {
1192 uint32_t a = ntohl(endpoint->sin_addr.s_addr);
1193 uint16_t p = ntohs(endpoint->sin_port);
1202 // Right now, the only valid time to set a retransmit endpoint is before
1204 // retransmit endpoint is going to determine which player is selected during
1208 if (NULL != endpoint) {
1209 mRetransmitEndpoint = *endpoint;
1219 struct sockaddr_in* endpoint)
1188 setRetransmitEndpoint( const struct sockaddr_in* endpoint) argument
1218 getRetransmitEndpoint( struct sockaddr_in* endpoint) argument
[all...]
H A DMediaPlayerService.h307 virtual status_t setRetransmitEndpoint(const struct sockaddr_in* endpoint);
308 virtual status_t getRetransmitEndpoint(struct sockaddr_in* endpoint);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneConnection.java674 * @param endpoint the {@link android.net.Uri} of the participant to disconnect.
677 public void onDisconnectConferenceParticipant(Uri endpoint) { argument
683 imsCall.removeParticipants(new String[]{endpoint.toString()});
687 "Failed to disconnect endpoint = " + endpoint);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DVpn.java1333 // Add a throw route for the VPN server endpoint, if one was specified.
1334 String endpoint = parameters[5];
1335 if (!endpoint.isEmpty()) {
1337 InetAddress addr = InetAddress.parseNumericAddress(endpoint);
1343 Log.e(TAG, "Unknown IP address family for VPN endpoint: " + endpoint);
1346 Log.e(TAG, "Exception constructing throw route to " + endpoint + ": " + e);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DConnection.java717 * @param endpoint the {@link Uri} of the participant to disconnect.
719 public void onDisconnectConferenceParticipant(Uri endpoint) { argument
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java1605 String endpoint = confInfo.getString(ImsConferenceState.ENDPOINT);
1612 ", endpoint=" + endpoint);
1616 if (endpoint == null) {
1617 endpoint = "";
1619 Uri endpointUri = Uri.parse(endpoint);
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java2710 * Sets the target UDP re-transmit endpoint for the low level player.
2711 * Generally, the address portion of the endpoint is an IP multicast
2713 * retransmit endpoint has been set, the media player will not decode and
2716 * re-transmit to the target endpoint. Receiver devices (which may be
2728 * @param endpoint the address and UDP port of the re-transmission target or
2731 * @throws IllegalArgumentException if the retransmit endpoint is supplied,
2736 public void setRetransmitEndpoint(InetSocketAddress endpoint) argument
2742 if (null != endpoint) {
2743 addrString = endpoint.getAddress().getHostAddress();
2744 port = endpoint
[all...]
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java2220 SyncStorageEngine.EndPoint endpoint = (SyncStorageEngine.EndPoint) msg.obj;
2224 + endpoint + " bundle: " + extras);
2226 cancelActiveSyncH(endpoint, extras);
3008 * @param extras Can be null to indicate <strong>all</strong> syncs for the given endpoint.
3336 String getPackageName(EndPoint endpoint) { argument
3337 if (endpoint.target_service) {
3338 return endpoint.service.getPackageName();
3341 SyncAdapterType.newKey(endpoint.provider, endpoint.account.type);
3343 syncAdapterInfo = mSyncAdapters.getServiceInfo(syncAdapterType, endpoint
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 972 milliseconds