/base/customization/enterprise_device_management/test/unittest/interface/inner_api/proxy/ |
H A D | update_policy_utils_test.cpp | 84 packageInfo.description.notify.installTips = TEST_INSTALL_TIPS; in HWTEST_F() 85 packageInfo.description.notify.installTipsDetail = TEST_INSTALL_TIPS_DEATIL; in HWTEST_F() 92 ASSERT_TRUE(packageInfo2.description.notify.installTips.empty()); in HWTEST_F() 93 ASSERT_TRUE(packageInfo2.description.notify.installTipsDetail.empty()); in HWTEST_F() 109 packageInfo.description.notify.installTips = TEST_INSTALL_TIPS; in HWTEST_F() 110 packageInfo.description.notify.installTipsDetail = TEST_INSTALL_TIPS_DEATIL; in HWTEST_F() 117 ASSERT_TRUE(packageInfo2.description.notify.installTips == TEST_INSTALL_TIPS); in HWTEST_F() 118 ASSERT_TRUE(packageInfo2.description.notify.installTipsDetail == TEST_INSTALL_TIPS_DEATIL); in HWTEST_F()
|
/base/telephony/sms_mms/services/sms/ |
H A D | sms_mms_common.cpp | 33 void SmsMmsCommon::SendBroadcast(uint16_t id, std::string notify, std::string stauts, std::string type) in SendBroadcast() argument 38 want.SetAction(notify); in SendBroadcast() 46 data.SetData(notify); in SendBroadcast() 49 "SmsMmsCommon::SendBroadcast:%{public}d;notify:%{public}s;stauts:%{public}s;type:%{public}s;result:%{public}d", in SendBroadcast() 50 id, notify.c_str(), stauts.c_str(), type.c_str(), result); in SendBroadcast()
|
/base/security/device_security_level/services/dslm/ |
H A D | dslm_fsm_process.c | 237 DslmNotifyListNode *notify = MALLOC(sizeof(DslmNotifyListNode)); in ProcessSdkRequest() local 238 if (notify == NULL) { in ProcessSdkRequest() 242 (void)memset_s(notify, sizeof(DslmNotifyListNode), 0, sizeof(DslmNotifyListNode)); in ProcessSdkRequest() 243 notify->owner = inputNotify->owner; in ProcessSdkRequest() 244 notify->cookie = inputNotify->cookie; in ProcessSdkRequest() 245 notify->requestCallback = inputNotify->requestCallback; in ProcessSdkRequest() 246 notify->start = inputNotify->start; in ProcessSdkRequest() 247 notify->keep = inputNotify->keep; in ProcessSdkRequest() 248 if (notify->cookie == 0 || notify in ProcessSdkRequest() [all...] |
/base/hiviewdfx/hidumper/frameworks/native/src/util/ |
H A D | zip_utils.cpp | 22 bool ZipUtils::ZipFolder(const std::string &srcPath, const std::string &dstFile, const ZipTickNotify notify) in ZipFolder() argument 41 if ((notify != nullptr) && (notify(UNSET_PROGRESS, UNSET_PROGRESS))) { in ZipFolder() 42 DUMPER_HILOGE(MODULE_COMMON, "leave|notify"); in ZipFolder() 67 bool ret = zipWriter.Write(zipItems, notify); in ZipFolder()
|
/base/sensors/sensor_lite/frameworks/src/ |
H A D | sensor_agent_proxy.c | 129 SensorNotifyBuffer *notify = (SensorNotifyBuffer *)owner;
in GetSensorInfos() local 130 if (notify == NULL) {
in GetSensorInfos() 131 HILOG_ERROR(HILOG_MODULE_APP, "%s notify is null", __func__);
in GetSensorInfos() 134 ReadInt32(reply, &(notify->retCode));
in GetSensorInfos() 135 if (notify->retCode < 0) {
in GetSensorInfos() 136 HILOG_ERROR(HILOG_MODULE_APP, "%s failed, retCode: %d", __func__, notify->retCode);
in GetSensorInfos() 139 ReadInt32(reply, &(notify->count));
in GetSensorInfos() 143 if ((notify->count <= 0) || (data == NULL)) {
in GetSensorInfos() 145 notify->retCode = SENSOR_ERROR_INVALID_PARAM;
in GetSensorInfos() 149 *(notify in GetSensorInfos() [all...] |
/base/useriam/user_auth_framework/test/unittest/services/src/ |
H A D | context_callback_impl_test.cpp | 104 auto notify = [](const ContextCallbackNotifyListener::MetaData &metaData, TraceFlag flag) { return; }; in HWTEST_F() local 105 ContextCallbackNotifyListener::GetInstance().AddNotifier(notify); in HWTEST_F() 135 auto notify = [](const ContextCallbackNotifyListener::MetaData &metaData, TraceFlag flag) { return; }; in HWTEST_F() local 136 ContextCallbackNotifyListener::GetInstance().AddNotifier(notify); in HWTEST_F() 163 auto notify = [](const ContextCallbackNotifyListener::MetaData &metaData, TraceFlag flag) { return; }; in HWTEST_F() local 164 ContextCallbackNotifyListener::GetInstance().AddNotifier(notify); in HWTEST_F()
|
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/ |
H A D | sys_event_service_adapter.cpp | 24 void SysEventServiceAdapter::StartService(SysEventServiceBase* service, OHOS::HiviewDFX::NotifySysEvent notify) in StartService() argument 30 OHOS::HiviewDFX::SysEventServiceOhos::StartService(service, notify); in StartService()
|
H A D | sys_event_service_adapter.h | 27 static void StartService(SysEventServiceBase* service, OHOS::HiviewDFX::NotifySysEvent notify);
|
/base/hiviewdfx/hidumper/frameworks/native/include/util/zip/ |
H A D | zip_writer.h | 35 const ZipTickNotify notify = nullptr); 37 bool FlushItems(const ZipTickNotify notify = nullptr);
|
/base/customization/enterprise_device_management/interfaces/inner_api/system_manager/src/ |
H A D | update_policy_utils.cpp | 80 data.WriteString(packageInfo.description.notify.installTips); in WriteUpgradePackageInfo() 81 data.WriteString(packageInfo.description.notify.installTipsDetail); in WriteUpgradePackageInfo() 98 data.ReadString(packageInfo.description.notify.installTips); in ReadUpgradePackageInfo() 99 data.ReadString(packageInfo.description.notify.installTipsDetail); in ReadUpgradePackageInfo()
|
/base/hiviewdfx/hidumper/frameworks/native/src/util/zip/ |
H A D | zip_writer.cpp | 78 bool ZipWriter::Write(const std::vector<std::pair<std::string, std::string>> &zipItems, const ZipTickNotify notify) in Write() argument 89 bool ret = FlushItems(notify); in Write() 100 bool ZipWriter::FlushItems(const ZipTickNotify notify) in FlushItems() argument 110 if ((notify != nullptr) && (notify(((PROCENT100 * i) / zipItems.size()), UNSET_PROGRESS))) { in FlushItems() 111 DUMPER_HILOGE(MODULE_COMMON, "FlushItems error|notify"); in FlushItems()
|
/base/request/request/services/src/task/ |
H A D | mod.rs | 23 pub(crate) mod notify;
|
/base/hiviewdfx/hidumper/frameworks/native/include/util/ |
H A D | zip_utils.h | 26 // notify : zip progress notify, default is nullptr. 28 const ZipTickNotify notify = nullptr);
|
/base/request/request/frameworks/native/include/ |
H A D | notify_interface.h | 28 virtual void CallBack(const Notify ¬ify) = 0;
|
H A D | runcount_notify_stub.h | 38 virtual void CallBack(const Notify ¬ify) override;
|
/base/security/device_auth/deps_adapter/os_adapter/interfaces/liteos/ |
H A D | hc_condition.h | 25 void (*notify)(struct HcConditionT*);
member
|
H A D | hc_thread.h | 31 void (*notify)(struct HcThreadT* thread);
member
|
/base/tee/tee_client/services/cadaemon/src/ca_daemon/ |
H A D | cadaemon_service.h | 87 int32_t SetCallBack(const sptr<IRemoteObject> ¬ify) override;
113 int32_t AddClient(pid_t pid, const sptr<IRemoteObject> ¬ify);
121 Client(pid_t pid, const sptr<IRemoteObject> ¬ify, const sptr<CaDaemonService> &caDaemonService)
122 : mPid(pid), mNotify(notify), mService(caDaemonService)
|
/base/security/device_auth/deps_adapter/os_adapter/interfaces/linux/ |
H A D | hc_condition.h | 33 void (*notify)(struct HcConditionT*);
member
|
/base/useriam/user_auth_framework/services/context/src/ |
H A D | context_callback_impl.cpp | 240 void ContextCallbackNotifyListener::AddNotifier(const Notify ¬ify) in AddNotifier() argument 242 notifierList_.emplace_back(notify); in AddNotifier() 247 for (const auto ¬ify : notifierList_) { in Process() 248 if (notify != nullptr) { in Process() 249 notify(metaData, flag); in Process()
|
/base/security/device_auth/deps_adapter/os_adapter/interfaces/ |
H A D | hc_thread.h | 35 void (*notify)(struct HcThreadT* thread);
member
|
/base/telephony/sms_mms/services/sms/include/ |
H A D | sms_mms_common.h | 44 void SendBroadcast(uint16_t id, std::string notify, std::string stauts, std::string type);
|
/base/request/request/test/unittest/cpp_test/fwkTest/src/ |
H A D | runcount_notify_stub_test.cpp | 82 Notify notify; in HWTEST_F() local 83 RunCountNotifyStub::GetInstance()->CallBack(notify); in HWTEST_F()
|
/base/security/device_auth/deps_adapter/os_adapter/impl/src/ |
H A D | hc_task_thread.c | 50 thread->thread.notify(&thread->thread);
in PushTask() 76 thread->thread.notify(&thread->thread);
in StopAndClear()
|
/base/security/device_auth/deps_adapter/os_adapter/impl/src/linux/ |
H A D | hc_thread.c | 113 thread->bizWaitObj.notify(&thread->bizWaitObj);
in BizNotify() 125 thread->notify = BizNotify;
in InitThread()
|