Searched defs:endpoint (Results 1 - 16 of 16) sorted by relevance

/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.java37 * Represents a connection to a remote endpoint that carries voice traffic.
1251 * @param endpoint the {@link Uri} of the participant to disconnect.
1254 public void onDisconnectConferenceParticipant(Uri endpoint) {} argument
/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/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/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/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/base/services/core/jni/
H A Dcom_android_server_UsbHostManager.cpp123 struct usb_endpoint_descriptor *endpoint = (struct usb_endpoint_descriptor *)desc; local
126 endpoint->bEndpointAddress, endpoint->bmAttributes,
127 __le16_to_cpu(endpoint->wMaxPacketSize), endpoint->bInterval);
/frameworks/av/include/media/
H A DMediaPlayerInterface.h172 virtual status_t setRetransmitEndpoint(const struct sockaddr_in* endpoint) { argument
175 virtual status_t getRetransmitEndpoint(struct sockaddr_in* endpoint) { argument
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp303 status_t setRetransmitEndpoint(const struct sockaddr_in* endpoint) argument
309 if (NULL != endpoint) {
310 data.writeInt32(sizeof(*endpoint));
311 data.write(endpoint, sizeof(*endpoint));
332 status_t getRetransmitEndpoint(struct sockaddr_in* endpoint) argument
344 data.read(endpoint, sizeof(*endpoint));
527 struct sockaddr_in endpoint; local
529 if (amt == sizeof(endpoint)) {
541 struct sockaddr_in endpoint; local
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneConnection.java587 * @param endpoint the {@link android.net.Uri} of the participant to disconnect.
590 public void onDisconnectConferenceParticipant(Uri endpoint) { argument
596 imsCall.removeParticipants(new String[]{endpoint.toString()});
600 "Failed to disconnect endpoint = " + endpoint);
/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/opt/telephony/src/java/com/android/internal/telephony/
H A DConnection.java590 * @param endpoint the {@link Uri} of the participant to disconnect.
592 public void onDisconnectConferenceParticipant(Uri endpoint) { argument
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp690 // Set the re-transmission endpoint if one was chosen.
1138 const struct sockaddr_in* endpoint) {
1140 if (NULL != endpoint) {
1141 uint32_t a = ntohl(endpoint->sin_addr.s_addr);
1142 uint16_t p = ntohs(endpoint->sin_port);
1151 // Right now, the only valid time to set a retransmit endpoint is before
1153 // retransmit endpoint is going to determine which player is selected during
1157 if (NULL != endpoint) {
1158 mRetransmitEndpoint = *endpoint;
1168 struct sockaddr_in* endpoint)
1137 setRetransmitEndpoint( const struct sockaddr_in* endpoint) argument
1167 getRetransmitEndpoint( struct sockaddr_in* endpoint) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java2438 * Sets the target UDP re-transmit endpoint for the low level player.
2439 * Generally, the address portion of the endpoint is an IP multicast
2441 * retransmit endpoint has been set, the media player will not decode and
2444 * re-transmit to the target endpoint. Receiver devices (which may be
2456 * @param endpoint the address and UDP port of the re-transmission target or
2459 * @throws IllegalArgumentException if the retransmit endpoint is supplied,
2464 public void setRetransmitEndpoint(InetSocketAddress endpoint) argument
2470 if (null != endpoint) {
2471 addrString = endpoint.getAddress().getHostAddress();
2472 port = endpoint
[all...]

Completed in 5839 milliseconds