Searched defs:ringback (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/telecomm/java/android/telecom/
H A DConnectionServiceAdapter.java176 * Asks Telecom to start or stop a ringback tone for a call.
178 * @param callId The unique ID of the call whose ringback is being changed.
179 * @param ringback Whether Telecom should start playing a ringback tone.
181 void setRingbackRequested(String callId, boolean ringback) { argument
184 adapter.setRingbackRequested(callId, ringback);
H A DRemoteConnection.java73 * Invoked when this {@code RemoteConnection} is requesting ringback. See
77 * @param ringback Whether the {@code RemoteConnection} is requesting ringback.
79 public void onRingbackRequested(RemoteConnection connection, boolean ringback) {} argument
796 * Determines whether this {@code RemoteConnection} is requesting ringback.
799 * ringback tone on its behalf.
1056 void setRingbackRequested(final boolean ringback) { argument
1057 if (mRingbackRequested != ringback) {
1058 mRingbackRequested = ringback;
1065 callback.onRingbackRequested(connection, ringback);
[all...]
H A DConnection.java75 * answered the call and the user traditionally hears a ringback tone.
405 public void onRingbackRequested(Connection c, boolean ringback) {} argument
1174 * Returns whether this connection is requesting that the system play a ringback tone
1463 * Requests that the framework play a ringback tone. This is to be invoked by implementations
1464 * that do not play a ringback tone themselves in the connection's audio stream.
1466 * @param ringback Whether the ringback tone is to be played.
1468 public final void setRingbackRequested(boolean ringback) { argument
1470 if (mRingbackRequested != ringback) {
1471 mRingbackRequested = ringback;
[all...]

Completed in 55 milliseconds