/foundation/distributedhardware/device_manager/services/service/src/advertise/ |
H A D | advertise_manager.cpp | 111 int32_t AdvertiseManager::StopAdvertising(const std::string &pkgName, int32_t publishId) in StopAdvertising() function in OHOS::DistributedHardware::AdvertiseManager 125 StopAdvertising(pkgName, publishId); in HandleAutoStopAdvertise()
|
/foundation/communication/bluetooth/frameworks/js/napi/include/ |
H A D | napi_bluetooth_ble.h | 30 napi_value StopAdvertising(napi_env env, napi_callback_info info);
|
/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_ble_advertiser.h | 40 virtual int StopAdvertising(int32_t advHandle) = 0;
|
/foundation/communication/bluetooth_service/services/bluetooth/server/include/ |
H A D | bluetooth_ble_advertiser_server.h | 39 virtual int StopAdvertising(int32_t advHandle) override;
|
/foundation/distributedhardware/device_manager/services/service/include/advertise/ |
H A D | advertise_manager.h | 30 int32_t StopAdvertising(const std::string &pkgName, int32_t publishId);
|
/foundation/communication/bluetooth/frameworks/inner/ipc/include/ |
H A D | bluetooth_ble_advertiser_proxy.h | 37 int StopAdvertising(int32_t advHandle) override;
|
/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/include/mini/ |
H A D | device_manager_impl_lite_m.h | 139 int StopAdvertising(const char *pkgName);
|
/foundation/distributedhardware/device_manager/test/servicesfuzztest/devicemanagerservice_fuzzer/ |
H A D | device_manager_service_fuzzer.cpp | 57 DeviceManagerService::GetInstance().StopAdvertising(inputStr, parametricMap); in DeviceManagerServiceFuzzTest()
|
/foundation/communication/bluetooth_service/services/bluetooth/server/src/ |
H A D | bluetooth_ble_advertiser_server.cpp | 221 int BluetoothBleAdvertiserServer::StopAdvertising(int32_t advHandle) in StopAdvertising() function in OHOS::Bluetooth::BluetoothBleAdvertiserServer 231 bleService->StopAdvertising(advHandle); in StopAdvertising()
|
/foundation/communication/bluetooth_service/test/unittest/ble/ |
H A D | ble_test.cpp | 211 bleAdvertise->StopAdvertising(bleAdvertiseCallbackTest_); in HWTEST_F() 216 bleAdvertise->StopAdvertising(bleAdvertiseCallbackTest_); in HWTEST_F()
|
/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_ble_advertiser.h | 470 int StopAdvertising(std::shared_ptr<BleAdvertiseCallback> callback);
|
/foundation/communication/bluetooth_service/services/bluetooth/service/include/ |
H A D | interface_adapter_ble.h | 410 virtual void StopAdvertising(uint8_t advHandle) const = 0;
|
/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/mini/ |
H A D | device_manager_impl_lite_m.c | 127 int StopAdvertising(const char *pkgName) in StopAdvertising() function
|
/foundation/distributedhardware/device_manager/test/unittest/ |
H A D | UTTest_device_manager_service_two.cpp | 130 DeviceManagerService::GetInstance().StopAdvertising(pkgName, advertiseParam); in HWTEST_F() 133 DeviceManagerService::GetInstance().StopAdvertising(pkgName, advertiseParam2); in HWTEST_F()
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/ble/ |
H A D | ble_adapter.h | 131 void StopAdvertising(uint8_t advHandle) const override;
|
H A D | ble_advertiser_impl.h | 108 void StopAdvertising(uint8_t advHandle) const;
|
/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_ble_advertiser_proxy.cpp | 172 int BluetoothBleAdvertiserProxy::StopAdvertising(int32_t advHandle) in StopAdvertising() function in OHOS::Bluetooth::BluetoothBleAdvertiserProxy 176 HILOGE("[StopAdvertising] fail: write interface token failed."); in StopAdvertising() 181 HILOGE("[StopAdvertising] fail: write advHandle failed."); in StopAdvertising() 189 HILOGE("[StopAdvertising] fail: transact ErrCode=%{public}d", result); in StopAdvertising()
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_ble_advertiser_stub.cpp | 158 int32_t ret = StopAdvertising(advHandle); in StopAdvertisingInner()
|
/foundation/communication/bluetooth/frameworks/js/napi/src/ble/ |
H A D | napi_bluetooth_ble.cpp | 329 DECLARE_NAPI_FUNCTION("stopAdvertising", StopAdvertising), in DefineBLEJSObject() 995 napi_value StopAdvertising(napi_env env, napi_callback_info info) in StopAdvertising() function 1017 int ret = bleAdvertiser->StopAdvertising( in StopAdvertising() 1031 int ret = bleAdvertiser->StopAdvertising(NapiBluetoothBleAdvertiseCallback::GetInstance()); in StopAdvertising()
|
H A D | napi_bluetooth_gatt_server.cpp | 53 DECLARE_NAPI_FUNCTION("stopAdvertising", StopAdvertising), in DefineGattServerJSClass()
|
/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_ble_advertiser.cpp | 491 int BleAdvertiser::StopAdvertising(std::shared_ptr<BleAdvertiseCallback> callback) in StopAdvertising() function in OHOS::Bluetooth::BleAdvertiser 509 int ret = proxy->StopAdvertising(advHandle); in StopAdvertising()
|
/foundation/CastEngine/castengine_cast_framework/service/src/device_manager/src/ |
H A D | discovery_manager.cpp | 204 int ret = DeviceManager::GetInstance().StopAdvertising(PKG_NAME, advertiseParam); in StopAdvertise()
|
/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/include/ |
H A D | device_manager.h | 478 virtual int32_t StopAdvertising(const std::string &pkgName, std::map<std::string, std::string> &advertiseParam) = 0;
|
/foundation/distributedhardware/device_manager/services/service/include/ |
H A D | device_manager_service.h | 178 int32_t StopAdvertising(const std::string &pkgName, const std::map<std::string, std::string> &advertiseParam);
|
/foundation/distributedhardware/device_manager/services/service/src/ |
H A D | device_manager_service.cpp | 503 return advertiseMgr_->StopAdvertising(pkgName, publishId); in UnPublishDeviceDiscovery() 1320 int32_t DeviceManagerService::StopAdvertising(const std::string &pkgName, in StopAdvertising() function in OHOS::DistributedHardware::DeviceManagerService 1333 LOGI("StopAdvertising input MetaType=%{public}s", (advertiseParam.find(PARAM_KEY_META_TYPE)->second).c_str()); in StopAdvertising() 1340 return advertiseMgr_->StopAdvertising(pkgName, publishId); in StopAdvertising()
|