Searched refs:call (Results 126 - 150 of 349) sorted by relevance

1234567891011>>

/packages/apps/Dialer/InCallUI/src/com/android/incallui/
H A DStatusBarNotifier.java66 * This class adds Notifications to the status bar for the in-call experience.
74 // Notification for an active call. This is non-interruptive, but cannot be dismissed.
121 * incoming call UI in response to a new incoming call.
123 * If an incoming call is ringing (or call-waiting), the notification
128 * (This is the mechanism that actually brings up the incoming call UI
132 * Also note that this method is safe to call even if the phone isn't
133 * actually ringing (or, more likely, if an incoming call *was*
135 * update or cancel the in-call notificatio
192 showNotification(final Call call) argument
347 createIncomingCallNotification( Call call, int state, Notification.Builder builder) argument
372 setNotificationWhen(Call call, int state, Notification.Builder builder) argument
428 getContentTitle(ContactCacheEntry contactInfo, Call call) argument
442 addPersonReference(Notification.Builder builder, ContactCacheEntry contactInfo, Call call) argument
458 getLargeIconToDisplay(ContactCacheEntry contactInfo, Call call) argument
485 getIconToDisplay(Call call) argument
505 getContentString(Call call, @UserType long userType) argument
653 configureFullScreenIntent(Notification.Builder builder, PendingIntent intent, Call call) argument
736 onCallChanged(Call call) argument
[all...]
H A DInCallPresenter.java73 * Responsible for starting the activity for a new call and finishing the activity when all calls
75 * Creates and manages the in-call state and provides a listener pattern for the presenters
76 * that want to listen in on the in-call state changes.
128 * Whether or not we are currently bound and waiting for Telecom to send us a new call.
133 * If there is no actual call currently in the call list, this will be used as a fallback
147 final Call call = mCallList.getCallByTelecomCall(telecomCall);
148 if (call == null) {
149 Log.w(this, "Call not found in call list: " + telecomCall);
152 onPostDialCharWait(call
508 onCallAdded(final android.telecom.Call call) argument
525 shouldAttemptBlocking(android.telecom.Call call) argument
550 maybeBlockCall(final android.telecom.Call call) argument
608 onCallRemoved(android.telecom.Call call) argument
672 onIncomingCall(Call call) argument
685 onUpgradeToVideo(Call call) argument
693 onDisconnect(Call call) argument
709 onUpgradeToVideoRequest(Call call, int videoState) argument
1291 maybeShowErrorDialogOnDisconnect(Call call) argument
1421 isCallWithNoValidAccounts(Call call) argument
1446 setDisconnectCauseForMissingAccounts(Call call) argument
1782 getColorsFromCall(Call call) argument
1888 onIncomingCall(InCallState oldState, InCallState newState, Call call) argument
1896 onDetailsChanged(Call call, android.telecom.Call.Details details) argument
[all...]
H A DCallerInfoUtils.java38 * This is called to get caller info for a call. This will return a CallerInfo
39 * object immediately based off information in the call, but
43 public static CallerInfo getCallerInfoForCall(Context context, Call call, argument
45 CallerInfo info = buildCallerInfo(context, call);
47 // TODO: Have phoneapp send a Uri when it knows the contact that triggered this call.
50 // Start the query with the number provided from the call.
52 CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context, info, listener, call);
57 public static CallerInfo buildCallerInfo(Context context, Call call) { argument
62 info.cnapName = call.getCnapName();
64 info.numberPresentation = call
120 isVoiceMailNumber(Context context, Call call) argument
[all...]
/packages/apps/TV/tests/common/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
6 $(call all-java-files-under, src) \
7 $(call all-Iaidl-files-under, src)
/packages/apps/TV/tests/input/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
4 LOCAL_SRC_FILES := $(call all-java-files-under, src)
24 $(call dist-for-goals,apps_only,$(LOCAL_BUILT_MODULE):$(LOCAL_PACKAGE_NAME).apk)
/packages/apps/ContactsCommon/src/com/android/contacts/common/compat/
H A DCallSdkCompat.java34 * TODO: This API is hidden in the N release; replace the implementation with a call to the
37 public static void pullExternalCall(Call call) { argument
44 pullExternalCallMethod.invoke(call);
46 // Ignore requests to pull call if there is a problem.
48 // Ignore requests to pull call if there is a problem.
50 // Ignore requests to pull call if there is a problem.
/packages/apps/Nfc/nci/jni/
H A DAndroid.mk5 LOCAL_PATH := $(call my-dir)
7 include $(call all-makefiles-under,$(LOCAL_PATH))
15 LOCAL_SRC_FILES := $(call all-subdir-cpp-files) $(call all-subdir-c-files)
/packages/apps/Nfc/nci/jni/extns/pn54x/
H A DAndroid.mk1 EXTN_PN54X_PATH:= $(call my-dir)
/packages/inputmethods/OpenWnn/libs/libwnnEngDic/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
/packages/inputmethods/OpenWnn/libs/libwnnJpnDic/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
H A DCallListAdapter.java35 public void onCallAdded(Call call) {
40 public void onCallRemoved(Call call) {
97 Call call = mCallList.getCall(position);
98 Uri handle = call.getDetails().getHandle();
101 long durationMs = System.currentTimeMillis() - call.getDetails().getConnectTimeMillis();
104 state.setText(getStateString(call));
111 private static String getStateString(Call call) { argument
112 switch (call.getState()) {
/packages/apps/Bluetooth/tests/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
12 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/packages/apps/Calendar/tests/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
12 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/packages/apps/Contacts/tests/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
14 LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs))
/packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/
H A DMockCallListWrapper.java33 * various states (e.g. incoming call, active call, call waiting).
73 final Call call = Mockito.mock(Call.class);
74 when(call.getState()).thenReturn(Integer.valueOf(state));
76 when(call.getAccountHandle()).thenReturn(new PhoneAccountHandle(null, null));
78 return call;
/packages/apps/Settings/tests/app/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
21 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/packages/apps/Settings/tests/unit/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
16 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/packages/apps/StorageManager/tests/unit/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
12 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/packages/providers/BlockedNumberProvider/tests/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
14 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/packages/providers/CalendarProvider/tests/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
8 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/packages/providers/CallLogProvider/tests/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
12 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/packages/providers/ContactsProvider/tests/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
12 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/packages/providers/DownloadProvider/ui/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
6 LOCAL_SRC_FILES := $(call all-java-files-under, src) \
/packages/services/Telecomm/src/com/android/server/telecom/
H A DMissedCallNotifier.java28 void showMissedCallNotification(Call call); argument
/packages/services/Telecomm/tests/
H A DAndroid.mk17 LOCAL_PATH := $(call my-dir)
28 $(call all-java-files-under, src) \
29 $(call all-java-files-under, ../src) \
30 $(call all-proto-files-under, ../proto)

Completed in 687 milliseconds

1234567891011>>