/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/ |
D | PhoneCallStateHandler.java | 108 boolean callStatus = checkCallStatus(); in updateCallStatus() 109 if (mIsPhoneCallOngoing.compareAndSet(!callStatus, callStatus)) { in updateCallStatus() 110 mCallback.onPhoneCallStateChanged(callStatus); in updateCallStatus()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/analytics/ |
D | CallAnalyticsProvider.java | 150 String callType, String callStatus, int slotId, String rat, String failureReason) { in getContentValues() argument 155 values.put(CallAnalyticsTable.CALL_STATUS, callStatus); in getContentValues() 195 String callType, String callStatus, int slotId, String rat, String failureReason) { in insertDataToDb() argument 196 ContentValues values = getContentValues(callType, callStatus, slotId, rat, failureReason); in insertDataToDb() 298 private String[] getColumnSelectionAndArgs(String callType, String callStatus) { in getColumnSelectionAndArgs() argument 302 if (callStatus != null) { in getColumnSelectionAndArgs() 312 selection, callType, callStatus, Integer.toString(mSlotIndex) in getColumnSelectionAndArgs() 323 if (callStatus != null) { in getColumnSelectionAndArgs() 330 new String[] {selection, callStatus, Integer.toString(mSlotIndex)}; in getColumnSelectionAndArgs() 339 private long countCallsOfTypeAndStatus(String callType, String callStatus) { in countCallsOfTypeAndStatus() argument [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/analytics/ |
D | CallAnalyticsProviderTest.java | 201 String callType, String callStatus, int slotId, String rat, String failureReason) { in getContentValues() argument 206 values.put(CallAnalyticsTable.CALL_STATUS, callStatus); in getContentValues() 248 String callStatus = "Success"; in testSuccessCall() local 262 ContentValues values = getContentValues(callType, callStatus, slotId, rat, failureReason); in testSuccessCall() 268 callStatus, in testSuccessCall() 272 mCallAnalyticsProvider.insertDataToDb(callType, callStatus, slotId, rat, failureReason); in testSuccessCall() 280 String callStatus = "Failure"; in testFailureCall() local 299 ContentValues values = getContentValues(callType, callStatus, slotId, rat, failureReason); in testFailureCall() 310 mCallAnalyticsProvider.insertDataToDb(callType, callStatus, slotId, rat, failureReason); in testFailureCall()
|
/frameworks/av/services/camera/libcameraservice/common/hidl/ |
D | HidlProviderInfo.cpp | 900 Status callStatus; in isSessionConfigurationSupported() local 903 [&callStatus, &status] (Status s, bool combStatus) { in isSessionConfigurationSupported() 904 callStatus = s; in isSessionConfigurationSupported() 922 switch (callStatus) { in isSessionConfigurationSupported() 931 ALOGE("%s: Session configuration query failed: %d", __FUNCTION__, callStatus); in isSessionConfigurationSupported() 1027 Status callStatus; in isConcurrentSessionConfigurationSupported() local 1029 [&isSupported, &callStatus](Status s, bool supported) { in isConcurrentSessionConfigurationSupported() 1030 callStatus = s; in isConcurrentSessionConfigurationSupported() 1069 switch (callStatus) { in isConcurrentSessionConfigurationSupported() 1079 callStatus); in isConcurrentSessionConfigurationSupported()
|
/frameworks/av/services/camera/libcameraservice/device3/hidl/ |
D | HidlCamera3Device.cpp | 864 hardware::camera::common::V1_0::Status callStatus; in isReconfigurationRequired() local 866 auto hidlCb = [&callStatus, &required] (hardware::camera::common::V1_0::Status s, in isReconfigurationRequired() 868 callStatus = s; in isReconfigurationRequired() 875 switch (callStatus) { in isReconfigurationRequired() 884 ALOGV("%s: Reconfiguration query failed: %d", __FUNCTION__, callStatus); in isReconfigurationRequired()
|