/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_ag/ |
H A D | hfp_ag_profile.h | 433 int ReportCallStatusByCallNums(int numActive, int numHeld); 443 int ReportCallheldStatusByCallNums(int numActive, int numHeld); 468 int ProcessCurrentCallStateDialing(int numActive, int numHeld); 486 …int ProcessCurrentCallStateIncominging(int numActive, int numHeld, uint16_t type, const std::strin… 495 int ProcessCurrentCallStateIdle(int numActive, int numHeld); 504 int ProcessPreviousCallStateDialingAlerting(int numActive, int numHeld); 513 int ProcessPreviousCallStateIncoming(int numActive, int numHeld); 522 int ProcessPreviousCallStateIdle(int numActive, int numHeld); 531 void SetCallStates(int numHeld, int numActive, int callState);
|
H A D | hfp_ag_profile.cpp | 607 if ((numActive + numHeld) > 0) { in ReportCallStatusByCallNums() 621 if (numHeld > 0) { in ReportCallheldStatusByCallNums() 698 if ((numActive == 0) && (numHeld > 0)) { in ProcessCurrentCallStateDialing() 732 ReportCallStatusByCallNums(numActive, numHeld); in ProcessCurrentCallStateIncominging() 738 if ((numActive > 0) || (numHeld > 0)) { in ProcessCurrentCallStateIncominging() 806 ReportCallheldStatusByCallNums(numActive, numHeld); in ProcessPreviousCallStateDialingAlerting() 830 if ((numHeld >= preNumHeldCalls_) && numHeld > 0) { in ProcessPreviousCallStateIncoming() 840 …if ((numHeld > 0) && (numActive > 0) && (numActive == preNumHeldCalls_) && (numHeld == preNumActiv… in ProcessPreviousCallStateIdle() 851 ReportCallheldStatusByCallNums(numActive, numHeld); in ProcessPreviousCallStateIdle() 854 ReportCallStatusByCallNums(numActive, numHeld); in ProcessPreviousCallStateIdle() [all …]
|
H A D | hfp_ag_service.cpp | 502 int numHeld = phoneState.GetHeldNum(); in PhoneStateChanged() local 523 if ((numActive > 0) || (numHeld > 0) || (callState != HFP_AG_CALL_STATE_IDLE)) { in PhoneStateChanged() 531 HfpAgSystemInterface::GetInstance().SetHeldCallNumber(numHeld); in PhoneStateChanged() 535 curEvent.state_ = {numActive, numHeld, callState, number, type, phoneState.GetName()}; in PhoneStateChanged()
|
/ohos5.0/base/telephony/call_manager/services/bluetooth/src/ |
H A D | bluetooth_call_manager.cpp | 32 int32_t numActive, int32_t numHeld, int32_t callState, const std::string &number) in SendBtCallState() argument 38 return btConnection_->SendBtCallState(numActive, numHeld, callState, number); in SendBtCallState()
|
H A D | bluetooth_connection.cpp | 101 int32_t numActive, int32_t numHeld, int32_t callState, const std::string &number) in SendBtCallState() argument 111 profile->PhoneStateChanged(numActive, numHeld, callState, number, PHONE_NUMBER_TYPE, nickName); in SendBtCallState() 113 …honeStateChanged,numActive:%{public}d,numHeld:%{public}d,callState:%{public}d", numActive, numHeld, in SendBtCallState()
|
H A D | bluetooth_call_service.cpp | 124 int32_t numHeld = GetCallNum(TelCallState::CALL_STATUS_HOLDING, false); in GetCallState() local 133 if (numHeld > 0) { in GetCallState() 166 SendBtCallState(numActive, numHeld, callState, number); in GetCallState()
|
/ohos5.0/base/telephony/call_manager/services/bluetooth/include/ |
H A D | bluetooth_call_manager.h | 31 …int32_t SendBtCallState(int32_t numActive, int32_t numHeld, int32_t callState, const std::string &…
|
H A D | bluetooth_connection.h | 51 …int32_t SendBtCallState(int32_t numActive, int32_t numHeld, int32_t callState, const std::string &…
|
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_hfp_ag.h | 240 …int numActive, int numHeld, int callState, const std::string &number, int type, const std::string …
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/external/dummy/include/stub/ |
H A D | telephone_service.h | 155 void SetPhoneState(int numActive, int numHeld, int callState, in SetPhoneState() argument
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_hfp_ag.cpp | 562 …int numActive, int numHeld, int callState, const std::string &number, int type, const std::string … in PhoneStateChanged() argument 570 phoneState.SetHeldNum(numHeld); in PhoneStateChanged()
|
/ohos5.0/base/telephony/call_manager/test/unittest/call_manager_zero_gtest/src/ |
H A D | zero_branch6_test.cpp | 656 int32_t numHeld = CallObjectManager::GetCallNum(TelCallState::CALL_STATUS_HOLDING); variable 661 …ASSERT_EQ(bluetoothCallManager.SendBtCallState(numActive, numHeld, callState, number), TELEPHONY_S…
|