OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RemoteConnection
(Results
1 - 7
of
7
) sorted by null
/packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
TestConnectionManager.java
28
import android.telecom.
RemoteConnection
;
44
private final
RemoteConnection
.Callback mRemoteCallback = new
RemoteConnection
.Callback() {
46
public void onStateChanged(
RemoteConnection
connection, int state) {
52
RemoteConnection
connection, DisconnectCause disconnectCause) {
58
public void onRingbackRequested(
RemoteConnection
connection, boolean ringback) {
63
public void onConnectionCapabilitiesChanged(
RemoteConnection
connection,
69
public void onPostDialWait(
RemoteConnection
connection, String remainingDigits) {
74
public void onVoipAudioChanged(
RemoteConnection
connection, boolean isVoip) {
79
public void onStatusHintsChanged(
RemoteConnection
connection, StatusHints statusHints)
[
all
...]
TestManagedVideoProvider.java
21
import android.telecom.
RemoteConnection
;
27
private final
RemoteConnection
.VideoProvider.Listener mRemoteListener =
28
new
RemoteConnection
.VideoProvider.Listener() {
30
public void onReceiveSessionModifyRequest(
RemoteConnection
.VideoProvider rvp,
36
public void onReceiveSessionModifyResponse(
RemoteConnection
.VideoProvider rvp,
44
public void onHandleCallSessionEvent(
RemoteConnection
.VideoProvider rvp, int event) {
49
public void onPeerDimensionsChanged(
RemoteConnection
.VideoProvider rvp, int width,
55
public void onCallDataUsageChanged(
RemoteConnection
.VideoProvider rvp, int dataUsage) {
60
public void onCameraCapabilitiesChanged(
RemoteConnection
.VideoProvider rvp,
66
private final
RemoteConnection
.VideoProvider mRemoteVideoProvider
[
all
...]
/frameworks/base/telecomm/java/android/telecom/
RemoteConnection.java
44
public final class
RemoteConnection
{
48
* Invoked when the state of this {@code
RemoteConnection
} has changed. See
51
* @param connection The {@code
RemoteConnection
} invoking this method.
52
* @param state The new state of the {@code
RemoteConnection
}.
54
public void onStateChanged(
RemoteConnection
connection, int state) {}
57
* Invoked when this {@code
RemoteConnection
} is disconnected.
59
* @param connection The {@code
RemoteConnection
} invoking this method.
64
RemoteConnection
connection,
68
* Invoked when this {@code
RemoteConnection
} is requesting ringback. See
71
* @param connection The {@code
RemoteConnection
} invoking this method
[
all
...]
RemoteConference.java
41
public void onConnectionAdded(RemoteConference conference,
RemoteConnection
connection) {}
42
public void onConnectionRemoved(RemoteConference conference,
RemoteConnection
connection) {}
48
List<
RemoteConnection
> conferenceableConnections) {}
56
private final List<
RemoteConnection
> mChildConnections = new CopyOnWriteArrayList<>();
57
private final List<
RemoteConnection
> mUnmodifiableChildConnections =
59
private final List<
RemoteConnection
> mConferenceableConnections = new ArrayList<>();
60
private final List<
RemoteConnection
> mUnmodifiableConferenceableConnections =
80
for (
RemoteConnection
connection : mChildConnections) {
108
void addConnection(
RemoteConnection
connection) {
119
void removeConnection(
RemoteConnection
connection)
[
all
...]
RemoteConnectionManager.java
53
public
RemoteConnection
createRemoteConnection(
76
public void conferenceRemoteConnections(
RemoteConnection
a,
RemoteConnection
b) {
RemoteConnectionService.java
45
private static final
RemoteConnection
NULL_CONNECTION =
46
new
RemoteConnection
("NULL", null, (ConnectionRequest) null);
57
RemoteConnection
connection =
74
List<
RemoteConnection
> conferenceable = new ArrayList<>();
155
RemoteConnection
connection =
181
RemoteConnection
c = mConnectionById.get(id);
238
RemoteConnection
.VideoProvider remoteVideoProvider = null;
240
remoteVideoProvider = new
RemoteConnection
.VideoProvider(videoProvider);
285
List<
RemoteConnection
> conferenceable = new ArrayList<>();
304
RemoteConnection
remoteConnction = new RemoteConnection(callId
[
all
...]
ConnectionService.java
812
* Ask some other {@code ConnectionService} to create a {@code
RemoteConnection
} given an
[
all
...]
Completed in 421 milliseconds