/frameworks/base/services/people/java/com/android/server/people/data/ |
D | CallLogQueryHelper.java | 89 int callType = cursor.getInt(typeIndex); in querySince() local 92 if (addEvent(phoneNumber, date, durationSeconds, callType)) { in querySince() 104 private boolean addEvent(String phoneNumber, long date, long durationSeconds, int callType) { in addEvent() argument 105 if (!validateEvent(phoneNumber, date, callType)) { in addEvent() 108 @Event.EventType int eventType = CALL_TYPE_TO_EVENT_TYPE.get(callType); in addEvent() 116 private boolean validateEvent(String phoneNumber, long date, int callType) { in validateEvent() argument 119 && CALL_TYPE_TO_EVENT_TYPE.indexOfKey(callType) >= 0; in validateEvent()
|
/frameworks/base/telephony/java/android/telephony/ims/ |
D | ImsExternalCallState.java | 91 @ExternalCallState int callState, int callType, boolean isCallheld) { in ImsExternalCallState() argument 96 mCallType = callType; in ImsExternalCallState() 103 boolean isPullable, @ExternalCallState int callState, int callType, in ImsExternalCallState() argument 110 mCallType = callType; in ImsExternalCallState() 129 @ExternalCallType int callType, boolean isCallheld) { in ImsExternalCallState() argument 135 mCallType = callType; in ImsExternalCallState()
|
D | ImsCallProfile.java | 631 public ImsCallProfile(int serviceType, int callType) { in ImsCallProfile() argument 633 mCallType = callType; in ImsCallProfile() 659 public ImsCallProfile(int serviceType, int callType, Bundle callExtras, in ImsCallProfile() argument 662 mCallType = callType; in ImsCallProfile() 931 public static int getVideoStateFromCallType(int callType) { in getVideoStateFromCallType() argument 933 switch (callType) { in getVideoStateFromCallType()
|
D | ImsCallSession.java | 814 public void accept(int callType, ImsStreamMediaProfile profile) { in accept() argument 820 miSession.accept(callType, profile); in accept() 968 public void update(int callType, ImsStreamMediaProfile profile) { in update() argument 974 miSession.update(callType, profile); in update()
|
/frameworks/base/telephony/java/android/telephony/ims/compat/feature/ |
D | MMTelFeature.java | 74 public boolean isConnected(int callSessionType, int callType) 77 return MMTelFeature.this.isConnected(callSessionType, callType); 112 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) 115 return MMTelFeature.this.createCallProfile(sessionId, callSessionType, callType); 238 public boolean isConnected(int callSessionType, int callType) { in isConnected() argument 285 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) { in createCallProfile() argument
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/ |
D | MmTelInterfaceAdapter.java | 57 public boolean isConnected(int callSessionType, int callType) throws RemoteException { in isConnected() argument 58 return getInterface().isConnected(callSessionType, callType); in isConnected() 78 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) in createCallProfile() argument 80 return getInterface().createCallProfile(sessionId, callSessionType, callType); in createCallProfile()
|
D | MmTelFeatureCompatAdapter.java | 386 public ImsCallProfile createCallProfile(int callSessionType, int callType) { in createCallProfile() argument 388 return mCompatFeature.createCallProfile(mSessionId, callSessionType, callType); in createCallProfile()
|
/frameworks/base/telecomm/java/android/telecom/ |
D | ParcelableCallAnalytics.java | 288 private final int callType; field in ParcelableCallAnalytics 327 public ParcelableCallAnalytics(long startTimeMillis, long callDurationMillis, int callType, in ParcelableCallAnalytics() argument 334 this.callType = callType; in ParcelableCallAnalytics() 349 callType = in.readInt(); in ParcelableCallAnalytics() 370 out.writeInt(callType); in writeToParcel() 409 return callType; in getCallType()
|
/frameworks/base/telephony/java/android/telephony/ims/stub/ |
D | ImsCallSessionImplBase.java | 177 public void accept(int callType, ImsStreamMediaProfile profile) { 178 ImsCallSessionImplBase.this.accept(callType, profile); 224 public void update(int callType, ImsStreamMediaProfile profile) { 225 ImsCallSessionImplBase.this.update(callType, profile); 422 public void accept(int callType, ImsStreamMediaProfile profile) { in accept() argument 523 public void update(int callType, ImsStreamMediaProfile profile) { in update() argument
|
/frameworks/base/apex/appsearch/service/java/com/android/server/appsearch/stats/ |
D | PlatformLogger.java | 408 @CallStats.CallType int callType) { in createExtraStatsLocked() argument 419 int samplingInterval = getSamplingIntervalFromConfig(callType); in createExtraStatsLocked() 420 int skippedSampleCount = mSkippedSampleCountLocked.get(callType, in createExtraStatsLocked() 422 mSkippedSampleCountLocked.put(callType, 0); in createExtraStatsLocked() 438 boolean shouldLogForTypeLocked(@CallStats.CallType int callType) { in shouldLogForTypeLocked() argument 439 int samplingInterval = getSamplingIntervalFromConfig(callType); in shouldLogForTypeLocked() 450 int count = mSkippedSampleCountLocked.get(callType, /*valueOfKeyIfNotFound=*/ 0); in shouldLogForTypeLocked() 452 mSkippedSampleCountLocked.put(callType, count); in shouldLogForTypeLocked()
|
/frameworks/base/telephony/java/com/android/ims/internal/ |
D | IImsMMTelFeature.aidl | 39 boolean isConnected(int callSessionType, int callType); in isConnected() argument 44 ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType); in createCallProfile() argument
|
D | IImsService.aidl | 39 boolean isConnected(int serviceId, int serviceType, int callType); in isConnected() argument 54 ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType); in createCallProfile() argument
|
D | IImsCallSession.aidl | 137 void accept(int callType, in ImsStreamMediaProfile profile); in accept() argument 212 void update(int callType, in ImsStreamMediaProfile profile); in update() argument
|
/frameworks/base/services/tests/servicestests/src/com/android/server/appsearch/external/localstorage/stats/ |
D | AppSearchStatsTest.java | 36 final @CallStats.CallType int callType = CallStats.CALL_TYPE_PUT_DOCUMENTS; in testAppSearchStats_CallStats() local 44 .setCallType(callType) in testAppSearchStats_CallStats() 56 assertThat(cStats.getCallType()).isEqualTo(callType); in testAppSearchStats_CallStats() 63 final @CallStats.CallType int callType = CallStats.CALL_TYPE_PUT_DOCUMENTS; in testAppSearchCallStats_nullValues() local 65 final CallStats.Builder cStatsBuilder = new CallStats.Builder().setCallType(callType); in testAppSearchCallStats_nullValues() 71 assertThat(cStats.getCallType()).isEqualTo(callType); in testAppSearchCallStats_nullValues()
|
/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/ |
D | TestMmTelFeature.java | 64 public ImsCallProfile createCallProfile(int callSessionType, int callType) { in createCallProfile() argument 65 return super.createCallProfile(callSessionType, callType); in createCallProfile()
|
D | TestMMTelFeatureCompat.java | 34 public boolean isConnected(int callSessinType, int callType) { in isConnected() argument
|
/frameworks/base/apex/appsearch/service/java/com/android/server/appsearch/external/localstorage/stats/ |
D | CallStats.java | 210 public Builder setCallType(@CallType int callType) { in setCallType() argument 211 mCallType = callType; in setCallType()
|
/frameworks/base/core/java/android/provider/ |
D | CallLog.java | 478 public @NonNull AddCallParametersBuilder setCallType(int callType) { in setCallType() argument 479 mCallType = callType; in setCallType() 673 String viaNumber, int presentation, int callType, int features, in AddCallParams() argument 685 mCallType = callType; in AddCallParams() 1484 int presentation, int callType, int features, in addCall() argument 1488 presentation, callType, features, accountHandle, start, duration, in addCall() 1525 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument 1529 return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType, in addCall() 1577 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument 1589 builder.setCallType(callType); in addCall()
|
/frameworks/base/telephony/java/android/telephony/ims/feature/ |
D | MmTelFeature.java | 89 public ImsCallProfile createCallProfile(int callSessionType, int callType) 93 return MmTelFeature.this.createCallProfile(callSessionType, callType); 646 public @Nullable ImsCallProfile createCallProfile(int callSessionType, int callType) { in createCallProfile() argument
|
/frameworks/base/telephony/java/android/telephony/ims/aidl/ |
D | IImsMmTelFeature.aidl | 42 ImsCallProfile createCallProfile(int callSessionType, int callType); in createCallProfile() argument
|
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/ |
D | ImsCallSessionImplBase.java | 193 public void accept(int callType, ImsStreamMediaProfile profile) { in accept() argument 297 public void update(int callType, ImsStreamMediaProfile profile) { in update() argument
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
D | ImsCall.java | 1193 public void accept(int callType) throws ImsException { in accept() argument 1194 accept(callType, new ImsStreamMediaProfile()); in accept() 1205 public void accept(int callType, ImsStreamMediaProfile profile) throws ImsException { in accept() argument 1206 logi("accept :: callType=" + callType + ", profile=" + profile); in accept() 1220 mSession.accept(callType, profile); in accept() 1590 public void update(int callType, ImsStreamMediaProfile mediaProfile) throws ImsException { in update() argument 1591 logi("update :: callType=" + callType + ", mediaProfile=" + mediaProfile); in update() 1617 mSession.update(callType, mediaProfile); in update()
|
D | MmTelFeatureConnection.java | 405 public ImsCallProfile createCallProfile(int callServiceType, int callType) in createCallProfile() argument 409 return getServiceInterface(mBinder).createCallProfile(callServiceType, callType); in createCallProfile()
|
D | ImsManager.java | 2333 public ImsCallProfile createCallProfile(int serviceType, int callType) throws ImsException { in createCallProfile() argument 2337 return c.createCallProfile(serviceType, callType); in createCallProfile()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCallTracker.java | 1615 int callType = ImsCallProfile.getCallTypeFromVideoState(videoState); in dialInternal() local 1621 ImsCallProfile profile = mImsManager.createCallProfile(serviceType, callType); in dialInternal()
|