/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_hfp_hf.cpp | 276 std::vector<HandsFreeUnitCall> calls; in GetExistingCalls() local 292 calls.push_back(tmpCall); in GetExistingCalls() 295 return calls; in GetExistingCalls() 394 bluetooth::HandsFreeUnitCalls calls(call.GetRemoteDevice(), in FinishActiveCall() 403 return proxy->FinishActiveCall(BluetoothRawAddress(device.GetDeviceAddr()), calls); in FinishActiveCall() 413 BluetoothHfpHfCall calls; in StartDial() local 414 proxy->StartDial(BluetoothRawAddress(device.GetDeviceAddr()), number, calls); in StartDial() local 415 UUID uuid = UUID::ConvertFrom128Bits(calls.GetUuid().ConvertTo128Bits()); in StartDial() 416 HandsFreeUnitCall call(calls.GetRemoteDevice(), in StartDial() 417 calls in StartDial() [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/ |
H A D | disableProfiler.js | 24 Comments out stateMgmtProfiler.[start, stop] calls. 91 console.log(`Loading file to disable stateMgmtProfiler calls. File: ${fileName}`); 100 console.error(`Failed disabling stateMgmtProfiler calls. Error: ${err}`);
|
H A D | disableLogs.js | 24 Comments out console.[log, info, debug] calls. 25 Other calls such as console.[error, warn] are allowed.
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_hf/ |
H A D | hfp_hf_call_manager.cpp | 54 std::vector<HandsFreeUnitCalls> calls; in GetCurrentCalls() local 57 calls.push_back(it->second); in GetCurrentCalls() 59 return calls; in GetCurrentCalls()
|
H A D | hfp_hf_service.cpp | 386 std::vector<HandsFreeUnitCalls> calls; in GetCurrentCallList() local 391 return calls; in GetCurrentCallList() 396 return calls; in GetCurrentCallList() 570 HandsFreeUnitCalls calls( in StartDial() 574 event.calls_ = calls; in StartDial() 576 return calls; in StartDial()
|
/foundation/ability/ability_runtime/frameworks/native/ability/native/ |
H A D | js_service_extension_context.cpp | 478 std::shared_ptr<StartAbilityByCallParameters> calls = std::make_shared<StartAbilityByCallParameters>(); in OnStartAbilityByCall() local 480 calls->callerCallBack = std::make_shared<CallerCallBack>(); in OnStartAbilityByCall() 481 calls->callerCallBack->SetCallBack(GetCallBackDone(calls)); in OnStartAbilityByCall() 482 calls->callerCallBack->SetOnRelease(GetReleaseListen()); in OnStartAbilityByCall() 491 auto ret = context->StartAbilityByCall(want, calls->callerCallBack, accountId); in OnStartAbilityByCall() 498 if (calls->remoteCallee == nullptr) { in OnStartAbilityByCall() 502 env, nullptr, GetCallExecute(calls), GetCallComplete(calls), &retsult)); in OnStartAbilityByCall() 505 CreateAsyncTaskWithLastParam(env, nullptr, nullptr, GetCallComplete(calls), in OnStartAbilityByCall() 538 GetCallComplete(std::shared_ptr<StartAbilityByCallParameters> calls) GetCallComplete() argument 575 GetCallExecute(std::shared_ptr<StartAbilityByCallParameters> calls) GetCallExecute() argument 594 GetCallBackDone(std::shared_ptr<StartAbilityByCallParameters> calls) GetCallBackDone() argument [all...] |
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_hfp_hf_stub.cpp | 263 std::vector<BluetoothHfpHfCall> calls; in GetCurrentCallListInner() local 268 GetCurrentCallList(*device, calls); in GetCurrentCallListInner() 269 uint32_t callNum = calls.size(); in GetCurrentCallListInner() 275 if (!reply.WriteParcelable(&calls[i])) { in GetCurrentCallListInner()
|
/foundation/communication/bluetooth_service/services/bluetooth/server/src/ |
H A D | bluetooth_hfp_hf_server.cpp | 304 std::vector<BluetoothHfpHfCall> &calls) { in GetCurrentCallList() 312 calls.push_back(BluetoothHfpHfCall(call)); in GetCurrentCallList() 422 HandsFreeUnitCalls calls; in StartDial() local 428 call = calls; in StartDial() 303 GetCurrentCallList(const BluetoothRawAddress &device, std::vector<BluetoothHfpHfCall> &calls) GetCurrentCallList() argument
|
/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_hfp_hf.h | 40 virtual int GetCurrentCallList(const BluetoothRawAddress &device, std::vector<BluetoothHfpHfCall> &calls) = 0;
|
/foundation/communication/bluetooth_service/services/bluetooth/server/include/ |
H A D | bluetooth_hfp_hf_server.h | 42 int GetCurrentCallList(const BluetoothRawAddress &device, std::vector<BluetoothHfpHfCall> &calls) override;
|
/foundation/communication/bluetooth/frameworks/inner/ipc/include/ |
H A D | bluetooth_hfp_hf_proxy.h | 38 int GetCurrentCallList(const BluetoothRawAddress &device, std::vector<BluetoothHfpHfCall> &calls) override;
|
/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_hfp_hf_proxy.cpp | 189 int BluetoothHfpHfProxy::GetCurrentCallList(const BluetoothRawAddress &device, std::vector<BluetoothHfpHfCall> &calls) in GetCurrentCallList() argument 207 calls.push_back(*call); in GetCurrentCallList()
|
/foundation/communication/bluetooth_service/test/unittest/hfp/ |
H A D | hfp_hf_test.cpp | 269 * @tc.desc: Get a list of all existing calls. 277 vector<HandsFreeUnitCall> calls = profile_->GetExistingCalls(device); in HWTEST_F() local
|
/foundation/ability/ability_runtime/frameworks/native/ability/native/ability_runtime/ |
H A D | js_ability_context.cpp | 153 void GenerateCallerCallBack(std::shared_ptr<StartAbilityByCallParameters> calls, in GenerateCallerCallBack() argument 156 if (calls == nullptr) { in GenerateCallerCallBack() 157 TAG_LOGE(AAFwkTag::CONTEXT, "null calls"); in GenerateCallerCallBack() 164 auto callBackDone = [calldata = calls] (const sptr<IRemoteObject> &obj) { in GenerateCallerCallBack() 1066 std::shared_ptr<StartAbilityByCallParameters> calls = std::make_shared<StartAbilityByCallParameters>(); in OnStartAbilityByCall() local 1067 auto callExecute = [calldata = calls] () { StartAbilityByCallExecuteDone(calldata); }; in OnStartAbilityByCall() 1069 GenerateCallerCallBack(calls, callerCallBack); in OnStartAbilityByCall() 1070 auto callComplete = [weak = context_, calldata = calls, callerCallBack] ( in OnStartAbilityByCall() 1091 if (calls->remoteCallee == nullptr) { in OnStartAbilityByCall()
|
/foundation/multimedia/av_codec/services/services/codec/server/ |
H A D | codec_server.cpp | 938 has data, the thread will pop the data from the queue and calls "CodecServer::ReleaseOutputBuffer" to flush in CheckDrmSvpConsistency() 942 to notify application that the frame is ready. At last, application calls in CheckDrmSvpConsistency()
|