Home
last modified time | relevance | path

Searched refs:calls (Results 1 - 15 of 15) sorted by relevance

/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_hfp_hf.cpp276 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 DdisableProfiler.js24 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 DdisableLogs.js24 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 Dhfp_hf_call_manager.cpp54 std::vector<HandsFreeUnitCalls> calls; in GetCurrentCalls() local
57 calls.push_back(it->second); in GetCurrentCalls()
59 return calls; in GetCurrentCalls()
H A Dhfp_hf_service.cpp386 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 Djs_service_extension_context.cpp478 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 Dbluetooth_hfp_hf_stub.cpp263 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 Dbluetooth_hfp_hf_server.cpp304 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 Di_bluetooth_hfp_hf.h40 virtual int GetCurrentCallList(const BluetoothRawAddress &device, std::vector<BluetoothHfpHfCall> &calls) = 0;
/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_hfp_hf_server.h42 int GetCurrentCallList(const BluetoothRawAddress &device, std::vector<BluetoothHfpHfCall> &calls) override;
/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_hfp_hf_proxy.h38 int GetCurrentCallList(const BluetoothRawAddress &device, std::vector<BluetoothHfpHfCall> &calls) override;
/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_hfp_hf_proxy.cpp189 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 Dhfp_hf_test.cpp269 * @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 Djs_ability_context.cpp153 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 Dcodec_server.cpp938 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()

Completed in 15 milliseconds