Home
last modified time | relevance | path

Searched refs:callType (Results 1 – 25 of 26) sorted by relevance

12

/frameworks/opt/net/ims/src/java/com/android/ims/
DImsServiceBase.java55 public boolean isConnected(int serviceId, int serviceType, int callType) { in isConnected() argument
56 return onIsConnected(serviceId, serviceType, callType); in isConnected()
76 public ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType) { in createCallProfile() argument
77 return onCreateCallProfile(serviceId, serviceType, callType); in createCallProfile()
148 protected boolean onIsConnected(int serviceId, int serviceType, int callType) { in onIsConnected() argument
168 protected ImsCallProfile onCreateCallProfile(int serviceId, int serviceType, int callType) { in onCreateCallProfile() argument
DImsCall.java1117 public void accept(int callType) throws ImsException { in accept() argument
1118 accept(callType, new ImsStreamMediaProfile()); in accept()
1129 public void accept(int callType, ImsStreamMediaProfile profile) throws ImsException { in accept() argument
1130 logi("accept :: callType=" + callType + ", profile=" + profile); in accept()
1139 mSession.accept(callType, profile); in accept()
1423 public void update(int callType, ImsStreamMediaProfile mediaProfile) throws ImsException { in update() argument
1424 logi("update :: callType=" + callType + ", mediaProfile=" + mediaProfile); in update()
1450 mSession.update(callType, mediaProfile); in update()
3479 String callType = mCallProfile.getCallExtra(ImsCallProfile.EXTRA_CALL_RAT_TYPE); in getRadioTechnology() local
3480 if (callType == null || callType.isEmpty()) { in getRadioTechnology()
[all …]
DImsManager.java1744 public boolean isConnected(int serviceType, int callType) in isConnected() argument
1749 return mImsServiceProxy.isConnected(serviceType, callType); in isConnected()
1793 public ImsCallProfile createCallProfile(int sessionId, int serviceType, int callType) in createCallProfile() argument
1798 return mImsServiceProxy.createCallProfile(sessionId, serviceType, callType); in createCallProfile()
/frameworks/support/lifecycle/common/src/main/java/android/arch/lifecycle/
DReflectiveGenericLifecycleObserver.java134 int callType = CALL_TYPE_NO_ARG; in createInfo() local
136 callType = CALL_TYPE_PROVIDER; in createInfo()
145 callType = CALL_TYPE_PROVIDER_WITH_EVENT; in createInfo()
158 MethodReference methodReference = new MethodReference(callType, method); in createInfo()
191 MethodReference(int callType, Method method) { in MethodReference() argument
192 mCallType = callType; in MethodReference()
/frameworks/base/telecomm/java/android/telecom/
DParcelableCallAnalytics.java286 private final int callType; field in ParcelableCallAnalytics
322 public ParcelableCallAnalytics(long startTimeMillis, long callDurationMillis, int callType, in ParcelableCallAnalytics() argument
329 this.callType = callType; in ParcelableCallAnalytics()
344 callType = in.readInt(); in ParcelableCallAnalytics()
364 out.writeInt(callType); in writeToParcel()
397 return callType; in getCallType()
/frameworks/base/telephony/java/android/telephony/ims/
DImsServiceProxyCompat.java70 public boolean isConnected(int callServiceType, int callType) in isConnected() argument
73 return getServiceInterface(mBinder).isConnected(SERVICE_ID, callServiceType, callType); in isConnected()
97 public ImsCallProfile createCallProfile(int sessionId, int callServiceType, int callType) in createCallProfile() argument
100 return getServiceInterface(mBinder).createCallProfile(sessionId, callServiceType, callType); in createCallProfile()
DImsServiceProxy.java140 public boolean isConnected(int callServiceType, int callType) in isConnected() argument
145 callServiceType, callType); in isConnected()
178 public ImsCallProfile createCallProfile(int sessionId, int callServiceType, int callType) in createCallProfile() argument
183 sessionId, callServiceType, callType); in createCallProfile()
DImsService.java147 public boolean isConnected(int slotId, int featureType, int callSessionType, int callType)
153 return feature.isConnected(callSessionType, callType);
213 int callSessionType, int callType) throws RemoteException {
218 return feature.createCallProfile(sessionId, callSessionType, callType);
/frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/vo/
DFieldSetter.kt23 data class FieldSetter(val name: String, val type: TypeMirror, val callType: CallType) { constant in android.arch.persistence.room.vo.FieldSetter
25 val stmt = when (callType) { in writeSet()
DFieldGetter.kt25 data class FieldGetter(val name : String, val type : TypeMirror, val callType: CallType) { constant in android.arch.persistence.room.vo.FieldGetter
27 val stmt = when (callType) { in writeGet()
/frameworks/base/core/java/android/provider/
DCallLog.java523 int presentation, int callType, int features, PhoneAccountHandle accountHandle, in addCall() argument
526 presentation, callType, features, accountHandle, start, duration, in addCall()
561 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument
564 return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType, in addCall()
604 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument
665 values.put(TYPE, Integer.valueOf(callType)); in addCall()
678 if (callType == MISSED_TYPE) { in addCall()
716 && callType == Calls.OUTGOING_TYPE in addCall()
/frameworks/base/telephony/java/com/android/ims/
DImsCallProfile.java233 public ImsCallProfile(int serviceType, int callType) { in ImsCallProfile() argument
235 mCallType = callType; in ImsCallProfile()
365 public static int getVideoStateFromCallType(int callType) { in getVideoStateFromCallType() argument
367 switch (callType) { in getVideoStateFromCallType()
DImsExternalCallState.java57 int callType, boolean isCallheld) { in ImsExternalCallState() argument
62 mCallType = callType; in ImsExternalCallState()
/frameworks/base/telephony/java/android/telephony/ims/feature/
DIMMTelFeature.java82 boolean isConnected(int callServiceType, int callType) throws RemoteException; in isConnected() argument
125 ImsCallProfile createCallProfile(int sessionId, int callServiceType, int callType) in createCallProfile() argument
DMMTelFeature.java53 public boolean isConnected(int callSessionType, int callType) { in isConnected() argument
71 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) { in createCallProfile() argument
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsService.aidl39 boolean isConnected(int serviceId, int serviceType, int callType); in isConnected() argument
54 ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType); in createCallProfile() argument
DIImsCallSession.aidl135 void accept(int callType, in ImsStreamMediaProfile profile); in accept() argument
187 void update(int callType, in ImsStreamMediaProfile profile); in update() argument
DIImsServiceController.aidl45 boolean isConnected(int slotId, int featureType, int callSessionType, int callType); in isConnected() argument
52 int callSessionType, int callType); in createCallProfile() argument
DImsCallSession.java734 public void accept(int callType, ImsStreamMediaProfile profile) { in accept() argument
740 miSession.accept(callType, profile); in accept()
837 public void update(int callType, ImsStreamMediaProfile profile) { in update() argument
843 miSession.update(callType, profile); in update()
/frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/writer/
DFieldReadWriteWriter.kt177 it.field.setter.callType == CallType.CONSTRUCTOR in <lambda>()
201 it.field.setter.callType == CallType.CONSTRUCTOR in <lambda>()
221 if (setter != null && setter.callType != CallType.CONSTRUCTOR) { in <lambda>()
277 val varName = if (field.getter.callType == CallType.FIELD) { in <lambda>()
296 when (field.setter.callType) { in <lambda>()
/frameworks/base/telephony/java/android/telephony/ims/stub/
DImsCallSessionImplBase.java181 public void accept(int callType, ImsStreamMediaProfile profile) throws RemoteException { in accept() argument
255 public void update(int callType, ImsStreamMediaProfile profile) throws RemoteException { in update() argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
DTestImsServiceControllerAdapter.java72 public boolean isConnected(int slotId, int featureType, int callSessionType, int callType) in isConnected() argument
101 int callSessionType, int callType) throws RemoteException { in createCallProfile() argument
/frameworks/support/room/compiler/src/test/kotlin/android/arch/persistence/room/processor/
DPojoProcessorTest.kt566 assertThat(pojo.fields.find { it.name == "mName" }?.setter?.callType, in <lambda>()
583 assertThat(pojo.fields.find { it.name == "mName" }?.setter?.callType, in <lambda>()
661 assertThat(pojo.fields.find { it.name == "mName" }?.setter?.callType, in <lambda>()
663 assertThat(pojo.fields.find { it.name == "mLastName" }?.setter?.callType, in <lambda>()
DEntityProcessorTest.kt179 assertThat(entity.fields.first().getter.callType, `is`(CallType.FIELD)) in <lambda>()
231 assertThat(entity.fields.first().setter.callType, `is`(CallType.FIELD)) in <lambda>()
/frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/processor/
DPojoProcessor.kt415 callType = CallType.FIELD) in <lambda>()
421 callType = CallType.METHOD) in <lambda>()
453 callType = CallType.FIELD) in <lambda>()
460 callType = CallType.METHOD) in <lambda>()

12