Home
last modified time | relevance | path

Searched refs:call (Results 1 – 25 of 1043) sorted by relevance

12345678910>>...42

/frameworks/opt/net/ims/src/java/com/android/ims/
DImsCallGroup.java69 public boolean isOwner(ICall call) { in isOwner() argument
76 if ((call == null) || (owner == null)) { in isOwner()
80 if (!(call instanceof ImsCall)) { in isOwner()
84 return isSameCall(owner, (ImsCall)call); in isOwner()
88 public boolean isReferrer(ICall call) { in isReferrer() argument
89 if (call == null) { in isReferrer()
93 if (!(call instanceof ImsCall)) { in isReferrer()
99 if ((c != null) && isSameCall((ImsCall)c, (ImsCall)call)) { in isReferrer()
109 public void addReferrer(ICall call) { in addReferrer() argument
110 if (call == null) { in addReferrer()
[all …]
DImsCall.java68 public void onCallProgressing(ImsCall call) { in onCallProgressing() argument
69 onCallStateChanged(call); in onCallProgressing()
78 public void onCallStarted(ImsCall call) { in onCallStarted() argument
79 onCallStateChanged(call); in onCallStarted()
89 public void onCallStartFailed(ImsCall call, ImsReasonInfo reasonInfo) { in onCallStartFailed() argument
90 onCallError(call, reasonInfo); in onCallStartFailed()
100 public void onCallTerminated(ImsCall call, ImsReasonInfo reasonInfo) { in onCallTerminated() argument
103 onCallStateChanged(call); in onCallTerminated()
112 public void onCallHeld(ImsCall call) { in onCallHeld() argument
113 onCallStateChanged(call); in onCallHeld()
[all …]
/frameworks/base/
DCleanSpec.mk46 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s…
47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s…
48 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s…
49 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s…
50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s…
51 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s…
52 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s…
53 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/FrameworkTest_intermediates/)
54 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/android.policy*)
55 $(call add-clean-step, rm -rf $(TARGET_OUT_JAVA_LIBRARIES)/android.policy.jar)
[all …]
/frameworks/compile/libbcc/
DCleanSpec.mk46 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libbcc_intermediates)
47 $(call add-clean-step, rm -rf $(HOST_OUT)/obj/SHARED_LIBRARIES/libbcc_intermediates)
48 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libruntime.bc)
49 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libclcore.bc_intermediates)
50 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libbcc_sha1_intermediates)
51 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libbcc_sha1.so)
52 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libclcore.bc_intermediates)
53 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libclcore.bc_intermediates)
54 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libclcore.bc_intermediates)
55 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libclcore.bc_intermediates)
[all …]
/frameworks/base/telecomm/java/android/telecom/
DPhone.java65 public void onCallAdded(Phone phone, Call call) { } in onCallAdded() argument
76 public void onCallRemoved(Phone phone, Call call) { } in onCallRemoved() argument
102 Call call = new Call(this, parcelableCall.getId(), mInCallAdapter); in internalAddCall() local
103 mCallByTelecomCallId.put(parcelableCall.getId(), call); in internalAddCall() local
104 mCalls.add(call); in internalAddCall()
106 call.internalUpdate(parcelableCall, mCallByTelecomCallId); in internalAddCall()
107 fireCallAdded(call); in internalAddCall()
111 final void internalRemoveCall(Call call) { in internalRemoveCall() argument
112 mCallByTelecomCallId.remove(call.internalGetCallId()); in internalRemoveCall()
113 mCalls.remove(call); in internalRemoveCall()
[all …]
/frameworks/av/
DCleanSpec.mk46 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libmedia_native_intermediates)
47 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/lib/libmedia_native.so)
48 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/symbols/system/lib/libmedia_native.so)
49 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libmedia_native.so)
50 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libaudioflinger_intermediates)
51 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libaudioflinger.so)
52 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libaudiopolicy_intermediates)
53 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libaudiopolicy.so)
54 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libaudiopolicy_intermediates)
55 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libaudiopolicy.so)
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
DSimulatedGsmCallState.java185 CallInfo call = mCalls[i]; in triggerRing() local
187 if (call == null && empty < 0) { in triggerRing()
189 } else if (call != null in triggerRing()
190 && (call.mState == CallInfo.State.INCOMING in triggerRing()
191 || call.mState == CallInfo.State.WAITING) in triggerRing()
196 } else if (call != null) { in triggerRing()
222 CallInfo call = mCalls[i]; in progressConnectingCallState() local
224 if (call != null && call.mState == CallInfo.State.DIALING) { in progressConnectingCallState()
225 call.mState = CallInfo.State.ALERTING; in progressConnectingCallState()
229 obtainMessage(EVENT_PROGRESS_CALL_STATE, call), in progressConnectingCallState()
[all …]
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
DCallGroup.java73 public boolean isOwner(ICall call) { in isOwner() argument
78 return mCallGroup.isOwner(call); in isOwner()
81 public boolean isReferrer(ICall call) { in isReferrer() argument
86 return mCallGroup.isReferrer(call); in isReferrer()
89 public void addReferrer(ICall call) { in addReferrer() argument
94 mCallGroup.addReferrer(call); in addReferrer()
97 public void removeReferrer(ICall call) { in removeReferrer() argument
102 mCallGroup.removeReferrer(call); in removeReferrer()
105 public void setNeutralReferrer(ICall call) { in setNeutralReferrer() argument
110 mCallGroup.setNeutralReferrer(call); in setNeutralReferrer()
[all …]
DICallGroup.java71 public boolean isOwner(ICall call); in isOwner() argument
79 public boolean isReferrer(ICall call); in isReferrer() argument
86 public void addReferrer(ICall call); in addReferrer() argument
93 public void removeReferrer(ICall call); in removeReferrer() argument
100 public void setNeutralReferrer(ICall call); in setNeutralReferrer() argument
109 public void setOwner(ICall call); in setOwner() argument
/frameworks/base/data/fonts/
DAndroid.mk18 LOCAL_PATH := $(call my-dir)
38 $(eval $(call create-font-symlink,DroidSans.ttf,Roboto-Regular.ttf))
39 $(eval $(call create-font-symlink,DroidSans-Bold.ttf,Roboto-Bold.ttf))
40 $(eval $(call create-font-symlink,DroidSerif-Regular.ttf,NotoSerif-Regular.ttf))
41 $(eval $(call create-font-symlink,DroidSerif-Bold.ttf,NotoSerif-Bold.ttf))
42 $(eval $(call create-font-symlink,DroidSerif-Italic.ttf,NotoSerif-Italic.ttf))
43 $(eval $(call create-font-symlink,DroidSerif-BoldItalic.ttf,NotoSerif-BoldItalic.ttf))
125 $(eval $(call create-font-symlink,Roboto-Black.ttf,Roboto-Bold.ttf))
126 $(eval $(call create-font-symlink,Roboto-BlackItalic.ttf,Roboto-BoldItalic.ttf))
127 $(eval $(call create-font-symlink,Roboto-Light.ttf,Roboto-Regular.ttf))
[all …]
/frameworks/opt/telephony/
DCleanSpec.mk41 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed…
42 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed…
43 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed…
44 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed…
45 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed…
46 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed…
47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed…
48 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed…
49 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed…
50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermed…
[all …]
/frameworks/support/v4/
DAndroid.mk15 LOCAL_PATH := $(call my-dir)
21 LOCAL_SRC_FILES := $(call all-java-files-under, donut)
30 LOCAL_SRC_FILES := $(call all-java-files-under, eclair)
40 LOCAL_SRC_FILES := $(call all-java-files-under, eclair-mr1)
50 LOCAL_SRC_FILES := $(call all-java-files-under, froyo)
60 LOCAL_SRC_FILES := $(call all-java-files-under, gingerbread)
70 LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb)
80 LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr1)
90 LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr2)
100 LOCAL_SRC_FILES := $(call all-java-files-under, ics)
[all …]
/frameworks/rs/
DCleanSpec.mk46 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/*/src/RenderScript.stamp)
47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/*/src/renderscript/)
48 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/*/src/renderscript)
49 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/*/src/renderscript)
50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/*/src/RenderScript.stamp)
51 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/*/src/RenderScript.stamp)
52 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/*/obj/SHARED_LIBRARIES/lib*.bc_intermediate…
53 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/*/obj/SHARED_LIBRARIES/librs*_intermediates)
54 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/*/obj/SHARED_LIBRARIES/libhellocomputendk_i…
55 $(call add-clean-step, rm -rf $(OUT_DIR)/host/*/obj/SHARED_LIBRARIES/librsrt*.bc)
/frameworks/base/core/tests/coretests/apks/keyset/
DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
5 LOCAL_SRC_FILES := $(call all-subdir-java-files)
12 LOCAL_SRC_FILES := $(call all-subdir-java-files)
19 LOCAL_SRC_FILES := $(call all-subdir-java-files)
26 LOCAL_SRC_FILES := $(call all-subdir-java-files)
33 LOCAL_SRC_FILES := $(call all-subdir-java-files)
40 LOCAL_SRC_FILES := $(call all-subdir-java-files)
47 LOCAL_SRC_FILES := $(call all-subdir-java-files)
55 LOCAL_SRC_FILES := $(call all-subdir-java-files)
62 LOCAL_SRC_FILES := $(call all-subdir-java-files)
[all …]
/frameworks/base/tools/layoutlib/
DAndroid.mk30 built_framework_dep := $(call java-lib-deps,framework)
31 built_framework_classes := $(call java-lib-files,framework)
33 built_core_dep := $(call java-lib-deps,core-libart)
34 built_core_classes := $(call java-lib-files,core-libart)
36 built_ext_dep := $(call java-lib-deps,ext)
37 built_ext_classes := $(call java-lib-files,ext)
38 built_ext_data := $(call intermediates-dir-for, \
41 built_layoutlib_create_jar := $(call intermediates-dir-for, \
76 include $(call all-makefiles-under,$(LOCAL_PATH))
/frameworks/base/core/tests/coretests/
DAndroid.mk1 ACTUAL_LOCAL_PATH := $(call my-dir)
8 include $(call all-makefiles-under,$(ACTUAL_LOCAL_PATH))
19 $(call all-java-files-under, src) \
20 $(call all-Iaidl-files-under, src) \
21 $(call all-java-files-under, DisabledTestApp/src) \
22 $(call all-java-files-under, EnabledTestApp/src)
33 FrameworkCoreTests_intermediates := $(call intermediates-dir-for,APPS,$(LOCAL_PACKAGE_NAME))/test_a…
41 $(FrameworkCoreTests_all_apks_res): $(FrameworkCoreTests_intermediates)/raw/%: $(call intermediates…
42 $(call copy-file-to-new-target)
/frameworks/testing/support/
DAndroid.mk17 LOCAL_PATH := $(call my-dir)
20 LOCAL_SRC_FILES := $(call all-java-files-under, src)
35 LOCAL_SRC_FILES := $(call all-java-files-under, src)
50 LOCAL_SRC_FILES := $(call all-java-files-under, src) \
51 $(call junit4_to_document, ../../../external/junit/src/org) \
52 $(call all-java-files-under, ../../../external/hamcrest/src)
72 LOCAL_SRC_FILES := $(call all-java-files-under, src) \
73 $(call all-java-files-under, ../../../external/junit/src/org) \
74 $(call all-java-files-under, ../../../external/hamcrest/src)
94 include $(call all-makefiles-under,$(LOCAL_PATH))
/frameworks/wilhelm/tests/sandbox/
DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
10 $(call include-path-for, wilhelm)
39 $(call include-path-for, wilhelm)
66 $(call include-path-for, wilhelm) \
67 $(call include-path-for, wilhelm-ut)
98 $(call include-path-for, wilhelm) \
99 $(call include-path-for, wilhelm-ut)
130 $(call include-path-for, wilhelm)
157 $(call include-path-for, wilhelm)
188 $(call include-path-for, wilhelm)
[all …]
/frameworks/wilhelm/tests/examples/
DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
10 $(call include-path-for, wilhelm)
34 $(call include-path-for, wilhelm)
58 $(call include-path-for, wilhelm)
86 $(call include-path-for, wilhelm)
111 $(call include-path-for, wilhelm)
135 $(call include-path-for, wilhelm)
159 $(call include-path-for, wilhelm)
183 $(call include-path-for, wilhelm)
207 $(call include-path-for, wilhelm)
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCallManager.java1782 Call call = getFirstNonIdleCall(mForegroundCalls); in getActiveFgCall() local
1783 if (call == null) { in getActiveFgCall()
1784 call = (mDefaultPhone == null) in getActiveFgCall()
1788 return call; in getActiveFgCall()
1792 Call call = getFirstNonIdleCall(mForegroundCalls, subId); in getActiveFgCall() local
1793 if (call == null) { in getActiveFgCall()
1795 call = (phone == null) in getActiveFgCall()
1799 return call; in getActiveFgCall()
1806 for (Call call : calls) { in getFirstNonIdleCall()
1807 if (!call.isIdle()) { in getFirstNonIdleCall()
[all …]
/frameworks/opt/photoviewer/
DAndroid.mk15 LOCAL_PATH := $(call my-dir)
32 $(call all-java-files-under, src) \
33 $(call all-java-files-under, appcompat/src) \
34 $(call all-logtags-files-under, src)
53 $(call all-java-files-under, src) \
54 $(call all-java-files-under, activity/src) \
55 $(call all-logtags-files-under, src)
101 include $(call all-makefiles-under,$(LOCAL_PATH))
/frameworks/support/
DCleanSpec.mk47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/android-support-v*)
48 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/android-support-v*)
49 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/android-support-v*)
50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/android-support-v*)
51 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/android-support-v*)
52 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/android-support-v*)
/frameworks/opt/net/wifi/service/
DAndroid.mk15 LOCAL_PATH := $(call my-dir)
32 $(call include-path-for, libhardware_legacy)/hardware_legacy
69 $(call include-path-for, libhardware)/hardware \
70 $(call include-path-for, libhardware_legacy)/hardware_legacy \
100 $(call include-path-for, libhardware)/hardware \
101 $(call include-path-for, libhardware_legacy)/hardware_legacy \
129 LOCAL_SRC_FILES := $(call all-java-files-under, java) \
130 $(call all-Iaidl-files-under, java) \
131 $(call all-logtags-files-under, java)
/frameworks/rs/driver/runtime/arch/
Dasimd.ll109 …%1 = tail call <4 x float> @llvm.aarch64.neon.fmin.v4f32(<4 x float> %value, <4 x float> %high) no…
110 …%2 = tail call <4 x float> @llvm.aarch64.neon.fmax.v4f32(<4 x float> %1, <4 x float> %low) nounwin…
115 %_high = tail call <4 x float> @smear_4f(float %high) nounwind readnone
116 %_low = tail call <4 x float> @smear_4f(float %low) nounwind readnone
117 …%out = tail call <4 x float> @_Z5clampDv4_fS_S_(<4 x float> %value, <4 x float> %_low, <4 x float>…
125 …%a = tail call <4 x float> @llvm.aarch64.neon.fmin.v4f32(<4 x float> %_value, <4 x float> %_high) …
126 …%b = tail call <4 x float> @llvm.aarch64.neon.fmax.v4f32(<4 x float> %a, <4 x float> %_low) nounwi…
133 %_high = tail call <4 x float> @smear_4f(float %high) nounwind readnone
134 %_low = tail call <4 x float> @smear_4f(float %low) nounwind readnone
135 …%a = tail call <4 x float> @llvm.aarch64.neon.fmin.v4f32(<4 x float> %_value, <4 x float> %_high) …
[all …]
/frameworks/wilhelm/tests/mimeUri/
DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
10 $(call include-path-for, wilhelm)
36 $(call include-path-for, wilhelm)
62 $(call include-path-for, wilhelm)
88 $(call include-path-for, wilhelm)
114 $(call include-path-for, wilhelm)
140 $(call include-path-for, wilhelm)
166 $(call include-path-for, wilhelm)
192 $(call include-path-for, wilhelm)

12345678910>>...42