OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InCallPresenter
(Results
1 - 11
of
11
) sorted by null
/packages/apps/InCallUI/src/com/android/incallui/
DialpadPresenter.java
25
implements
InCallPresenter
.InCallStateListener {
33
public void onStateChange(
InCallPresenter
.InCallState state, CallList callList) {
InCallApp.java
66
InCallPresenter
.getInstance().hangUpOngoingCall(context);
CallButtonPresenter.java
20
import com.android.incallui.
InCallPresenter
.InCallState;
21
import com.android.incallui.
InCallPresenter
.InCallStateListener;
22
import com.android.incallui.
InCallPresenter
.IncomingCallListener;
54
InCallPresenter
.getInstance().addListener(this);
55
InCallPresenter
.getInstance().addIncomingCallListener(this);
62
InCallPresenter
.getInstance().removeListener(this);
64
InCallPresenter
.getInstance().removeIncomingCallListener(this);
ConferenceManagerPresenter.java
22
import com.android.incallui.
InCallPresenter
.InCallState;
23
import com.android.incallui.
InCallPresenter
.InCallStateListener;
47
InCallPresenter
.getInstance().addListener(this);
54
InCallPresenter
.getInstance().removeListener(this);
InCallActivity.java
89
InCallPresenter
.getInstance().setActivity(this);
98
InCallPresenter
.getInstance().onUiShowing(true);
117
InCallPresenter
.getInstance().onUiShowing(false);
130
InCallPresenter
.getInstance().setActivity(null);
233
boolean handled =
InCallPresenter
.getInstance().handleCallKey();
308
InCallPresenter
.getInstance().getProximitySensor().onConfigurationChanged(config);
409
InCallPresenter
.getInstance().getProximitySensor().onDialpadVisible(showDialpad);
501
InCallPresenter
.getInstance().onDismissDialog();
StatusBarNotifier.java
36
import com.android.incallui.
InCallPresenter
.InCallState;
42
public class StatusBarNotifier implements
InCallPresenter
.InCallStateListener {
84
InCallPresenter
.getInstance().getInCallState(),
85
InCallPresenter
.getInstance().getCallList());
109
* Creates notifications according to the state we receive from {@link
InCallPresenter
}.
216
!
InCallPresenter
.getInstance().isActivityPreviouslyStarted();
231
(!
InCallPresenter
.getInstance().isShowingInCallUi() || state.isIncoming()) &&
249
if (
InCallPresenter
.getInstance().isShowingInCallUi() || call == null) {
566
final Intent intent =
InCallPresenter
.getInstance().getInCallIntent(/*showdialpad=*/false);
CallCardPresenter.java
31
import com.android.incallui.
InCallPresenter
.InCallState;
32
import com.android.incallui.
InCallPresenter
.InCallStateListener;
33
import com.android.incallui.
InCallPresenter
.IncomingCallListener;
100
InCallPresenter
.getInstance().addListener(this);
101
InCallPresenter
.getInstance().addIncomingCallListener(this);
109
InCallPresenter
.getInstance().removeListener(this);
110
InCallPresenter
.getInstance().removeIncomingCallListener(this);
ProximitySensor.java
24
import com.android.incallui.
InCallPresenter
.InCallState;
25
import com.android.incallui.
InCallPresenter
.InCallStateListener;
InCallPresenter.java
42
public class
InCallPresenter
implements CallList.Listener {
44
private static
InCallPresenter
sInCallPresenter;
67
public static synchronized
InCallPresenter
getInstance() {
69
sInCallPresenter = new
InCallPresenter
();
114
Log.d(this, "Finished
InCallPresenter
.setUp");
564
// 2)
InCallPresenter
- Gets announcement and calculates that the new InCallState
566
// 3)
InCallPresenter
- This method is called to see if we need to start or finish
568
// 4) StatusBarNotifier - Listens to InCallState changes.
InCallPresenter
calls
574
// call
InCallPresenter
::setActivity() to let the presenter
689
Log.d(this, "Finished
InCallPresenter
.CleanUp")
[
all
...]
AnswerPresenter.java
152
InCallPresenter
.getInstance().onDismissDialog();
CallHandlerService.java
58
private
InCallPresenter
mInCallPresenter;
204
mInCallPresenter =
InCallPresenter
.getInstance();
Completed in 135 milliseconds