/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/kv/ |
H A D | generic_kvdb.cpp | 117 void GenericKvDB::CommitNotify(int notifyEvent, KvDBCommitNotifyFilterAbleData *data) in CommitNotify() argument 125 notificationChain_->NotifyEvent(static_cast<EventType>(notifyEvent), nullptr); in CommitNotify() 130 [this, notifyEvent, data] { CommitNotifyAsync(notifyEvent, data); }); in CommitNotify() 291 void GenericKvDB::CommitNotifyAsync(int notifyEvent, KvDBCommitNotifyFilterAbleData *data) in CommitNotifyAsync() argument 293 notificationChain_->NotifyEvent(static_cast<EventType>(notifyEvent), data); in CommitNotifyAsync()
|
H A D | sync_able_kvdb.h | 40 void CommitNotify(int notifyEvent, KvDBCommitNotifyFilterAbleData *data) override; 141 void TriggerSync(int notifyEvent);
|
H A D | sync_able_kvdb.cpp | 63 void SyncAbleKvDB::TriggerSync(int notifyEvent) in TriggerSync() argument 69 syncer_.LocalDataChanged(notifyEvent); in TriggerSync() 73 void SyncAbleKvDB::CommitNotify(int notifyEvent, KvDBCommitNotifyFilterAbleData *data) in CommitNotify() argument 75 SyncAbleKvDB::TriggerSync(notifyEvent); in CommitNotify() 77 GenericKvDB::CommitNotify(notifyEvent, data); in CommitNotify()
|
H A D | generic_kvdb.h | 72 virtual void CommitNotify(int notifyEvent, KvDBCommitNotifyFilterAbleData *data); 174 void CommitNotifyAsync(int notifyEvent, KvDBCommitNotifyFilterAbleData *data);
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/singlever/ |
H A D | single_ver_kv_syncer.cpp | 69 void SingleVerKVSyncer::LocalDataChanged(int notifyEvent) in LocalDataChanged() argument 76 …if (notifyEvent != static_cast<int>(SQLiteGeneralNSNotificationEventType::SQLITE_GENERAL_FINISH_MI… in LocalDataChanged() 77 …notifyEvent != static_cast<int>(SQLiteGeneralNSNotificationEventType::SQLITE_GENERAL_NS_PUT_EVENT)… in LocalDataChanged() 78 LOGD("[Syncer] ignore event:%d", notifyEvent); in LocalDataChanged()
|
H A D | single_ver_relational_syncer.cpp | 158 void SingleVerRelationalSyncer::LocalDataChanged(int notifyEvent) in LocalDataChanged() argument 160 (void)notifyEvent; in LocalDataChanged()
|
H A D | single_ver_kv_syncer.h | 31 void LocalDataChanged(int notifyEvent) override;
|
H A D | single_ver_relational_syncer.h | 32 void LocalDataChanged(int notifyEvent) override;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/drag_drop/ |
H A D | drag_drop_manager.cpp | 487 UpdateNotifyDragEvent(notifyEvent, point, DragEventType::MOVE); in UpdateDragListener() 496 DragEventType dragEventType, RefPtr<NotifyDragEvent>& notifyEvent) in NotifyDragRegisterFrameNode() argument 519 UpdateNotifyDragEvent(notifyEvent, point, dragEventType); in NotifyDragFrameNode() 520 notifyEvent->SetResult(dragRet); in NotifyDragFrameNode() 1510 notifyEvent->SetX((double)point.GetX()); in UpdateNotifyDragEvent() 1511 notifyEvent->SetY((double)point.GetY()); in UpdateNotifyDragEvent() 1512 notifyEvent->SetScreenX((double)point.GetScreenX()); in UpdateNotifyDragEvent() 1513 notifyEvent->SetScreenY((double)point.GetScreenY()); in UpdateNotifyDragEvent() 1516 notifyEvent->SetVelocity(velocityTracker_.GetVelocity()); in UpdateNotifyDragEvent() 1518 notifyEvent->SetSummary(summaryMap_); in UpdateNotifyDragEvent() [all …]
|
H A D | drag_drop_manager.h | 154 … RefPtr<NotifyDragEvent>& notifyEvent, const Point& point, const DragEventType dragEventType); 240 RefPtr<NotifyDragEvent>& notifyEvent);
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/manager/ |
H A D | drag_drop_manager_test_ng.cpp | 1668 RefPtr<NotifyDragEvent> notifyEvent = AceType::MakeRefPtr<NotifyDragEvent>(); variable 1669 dragDropManager->UpdateNotifyDragEvent(notifyEvent, Point(1.0f, 1.0f), DragEventType::START); 1670 EXPECT_DOUBLE_EQ(notifyEvent->GetX(), 1.0); 1671 EXPECT_DOUBLE_EQ(notifyEvent->GetY(), 1.0); 1678 dragDropManager->nodesForDragNotify_, DragEventType::START, notifyEvent); 1701 dragDropManager->UpdateNotifyDragEvent(notifyEvent, Point(1.0f, 1.0f), DragEventType::START); 1708 dragDropManager->nodesForDragNotify_, DragEventType::START, notifyEvent); 1745 RefPtr<NotifyDragEvent> notifyEvent = AceType::MakeRefPtr<NotifyDragEvent>(); variable 1748 dragDropManager->UpdateNotifyDragEvent(notifyEvent, Point(1.0f, 1.0f), DragEventType::START); 1756 dragDropManager->nodesForDragNotify_, DragEventType::START, notifyEvent);
|
H A D | drag_drop_manager_test_ng_coverage.cpp | 472 RefPtr<NotifyDragEvent> notifyEvent = AceType::MakeRefPtr<NotifyDragEvent>(); variable 473 dragDropManager->UpdateNotifyDragEvent(notifyEvent, Point(1.0f, 1.0f), DragEventType::START); 474 EXPECT_DOUBLE_EQ(notifyEvent->GetX(), 1.0); 475 EXPECT_DOUBLE_EQ(notifyEvent->GetY(), 1.0); 485 dragDropManager->NotifyDragRegisterFrameNode(dragEnterNodes, DragEventType::START, notifyEvent);
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/ |
H A D | syncer_proxy.cpp | 122 void SyncerProxy::LocalDataChanged(int notifyEvent) in LocalDataChanged() argument 127 syncer_->LocalDataChanged(notifyEvent); in LocalDataChanged()
|
/ohos5.0/foundation/window/window_manager/window_scene/session/host/include/ |
H A D | extension_session.h | 60 using NotifyExtensionEventFunc = std::function<void(uint32_t notifyEvent)>; 112 void NotifyExtensionEventAsync(uint32_t notifyEvent) override;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/multiver/ |
H A D | multi_ver_syncer.h | 40 void LocalDataChanged(int notifyEvent) override;
|
H A D | multi_ver_syncer.cpp | 72 void MultiVerSyncer::LocalDataChanged(int notifyEvent) in LocalDataChanged() argument
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/ |
H A D | relational_db_sync_interface.h | 38 virtual int LocalDataChanged(int notifyEvent, std::vector<QuerySyncObject> &queryObj) = 0;
|
/ohos5.0/foundation/window/window_manager/window_scene/session/host/src/ |
H A D | extension_session.cpp | 450 void ExtensionSession::NotifyExtensionEventAsync(uint32_t notifyEvent) in NotifyExtensionEventAsync() argument 452 TLOGI(WmsLogTag::WMS_UIEXT, "notifyEvent: %{public}d", notifyEvent); in NotifyExtensionEventAsync() 454 extSessionEventCallback_->notifyExtensionEventFunc_(notifyEvent); in NotifyExtensionEventAsync()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/include/ |
H A D | syncer_proxy.h | 70 void LocalDataChanged(int notifyEvent) override;
|
H A D | isyncer.h | 89 virtual void LocalDataChanged(int notifyEvent) = 0;
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/gaussdb_rd/ |
H A D | rd_single_ver_natural_store.h | 144 void CommitNotify(int notifyEvent, KvDBCommitNotifyFilterAbleData *data) override;
|
H A D | rd_single_ver_natural_store.cpp | 533 void RdSingleVerNaturalStore::CommitNotify(int notifyEvent, KvDBCommitNotifyFilterAbleData *data) in CommitNotify() argument 535 GenericKvDB::CommitNotify(notifyEvent, data); in CommitNotify()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/ |
H A D | virtual_relational_ver_sync_db_interface.h | 55 int LocalDataChanged(int notifyEvent, std::vector<QuerySyncObject> &queryObj) override;
|
/ohos5.0/foundation/window/window_manager/window_scene/session/host/include/zidl/ |
H A D | session_proxy.h | 84 void NotifyExtensionEventAsync(uint32_t notifyEvent) override;
|
/ohos5.0/foundation/window/window_manager/wm/include/ |
H A D | window_extension_session_impl.h | 105 void NotifyExtensionEventAsync(uint32_t notifyEvent) override;
|