/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; 144 void TriggerSync(int notifyEvent);
|
H A D | generic_kvdb.h | 72 virtual void CommitNotify(int notifyEvent, KvDBCommitNotifyFilterAbleData *data); 174 void CommitNotifyAsync(int notifyEvent, KvDBCommitNotifyFilterAbleData *data);
|
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()
|
/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_MIGRATE_EVENT) && 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_kv_syncer.h | 31 void LocalDataChanged(int notifyEvent) override;
|
H A D | single_ver_relational_syncer.h | 32 void LocalDataChanged(int notifyEvent) override;
|
H A D | single_ver_relational_syncer.cpp | 158 void SingleVerRelationalSyncer::LocalDataChanged(int notifyEvent) in LocalDataChanged() argument 160 (void)notifyEvent; in LocalDataChanged()
|
/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
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/drag_drop/ |
H A D | drag_drop_manager.cpp | 511 RefPtr<NotifyDragEvent> notifyEvent = AceType::MakeRefPtr<NotifyDragEvent>(); in UpdateDragListener() local 512 CHECK_NULL_VOID(notifyEvent); in UpdateDragListener() 513 UpdateNotifyDragEvent(notifyEvent, point, DragEventType::MOVE); in UpdateDragListener() 515 NotifyDragRegisterFrameNode(dragMoveNodes, DragEventType::MOVE, notifyEvent); in UpdateDragListener() 516 NotifyDragRegisterFrameNode(dragEnterNodes, DragEventType::ENTER, notifyEvent); in UpdateDragListener() 517 NotifyDragRegisterFrameNode(dragLeaveNodes, DragEventType::LEAVE, notifyEvent); in UpdateDragListener() 522 DragEventType dragEventType, RefPtr<NotifyDragEvent>& notifyEvent) in NotifyDragRegisterFrameNode() 537 pattern->HandleOnDragStatusCallback(dragEventType, notifyEvent); in NotifyDragRegisterFrameNode() 544 RefPtr<NotifyDragEvent> notifyEvent = AceType::MakeRefPtr<NotifyDragEvent>(); in NotifyDragFrameNode() local 545 CHECK_NULL_VOID(notifyEvent); in NotifyDragFrameNode() 521 NotifyDragRegisterFrameNode(std::unordered_map<int32_t, WeakPtr<FrameNode>> nodes, DragEventType dragEventType, RefPtr<NotifyDragEvent>& notifyEvent) NotifyDragRegisterFrameNode() argument 1528 UpdateNotifyDragEvent( RefPtr<NotifyDragEvent>& notifyEvent, const Point& point, const DragEventType dragEventType) UpdateNotifyDragEvent() argument [all...] |
H A D | drag_drop_manager.h | 155 RefPtr<NotifyDragEvent>& notifyEvent, const Point& point, const DragEventType dragEventType); 241 RefPtr<NotifyDragEvent>& notifyEvent);
|
/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;
|
/foundation/arkui/ace_engine/test/unittest/core/manager/ |
H A D | drag_drop_manager_test_ng.cpp | 1579 * @tc.expected: notifyEvent attributes to be the set value. in HWTEST_F() 1581 RefPtr<NotifyDragEvent> notifyEvent = AceType::MakeRefPtr<NotifyDragEvent>(); in HWTEST_F() local 1582 dragDropManager->UpdateNotifyDragEvent(notifyEvent, Point(1.0f, 1.0f), DragEventType::START); in HWTEST_F() 1583 EXPECT_DOUBLE_EQ(notifyEvent->GetX(), 1.0); in HWTEST_F() 1584 EXPECT_DOUBLE_EQ(notifyEvent->GetY(), 1.0); in HWTEST_F() 1591 dragDropManager->nodesForDragNotify_, DragEventType::START, notifyEvent); in HWTEST_F() 1614 dragDropManager->UpdateNotifyDragEvent(notifyEvent, Point(1.0f, 1.0f), DragEventType::START); in HWTEST_F() 1621 dragDropManager->nodesForDragNotify_, DragEventType::START, notifyEvent); in HWTEST_F() 1658 RefPtr<NotifyDragEvent> notifyEvent = AceType::MakeRefPtr<NotifyDragEvent>(); in HWTEST_F() local 1661 dragDropManager->UpdateNotifyDragEvent(notifyEvent, Poin in HWTEST_F() [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/ |
H A D | syncer_proxy.cpp | 130 void SyncerProxy::LocalDataChanged(int notifyEvent) in LocalDataChanged() argument 135 syncer_->LocalDataChanged(notifyEvent); in LocalDataChanged()
|
/foundation/window/window_manager/window_scene/session/host/include/ |
H A D | extension_session.h | 61 using NotifyExtensionEventFunc = std::function<void(uint32_t notifyEvent)>; 114 void NotifyExtensionEventAsync(uint32_t notifyEvent) override;
|
/foundation/window/window_manager/window_scene/session/host/src/ |
H A D | extension_session.cpp | 460 void ExtensionSession::NotifyExtensionEventAsync(uint32_t notifyEvent) in NotifyExtensionEventAsync() argument 462 TLOGI(WmsLogTag::WMS_UIEXT, "Received extension event asynchronously, notifyEvent: %{public}d", notifyEvent); in NotifyExtensionEventAsync() 464 extSessionEventCallback_->notifyExtensionEventFunc_(notifyEvent); in NotifyExtensionEventAsync()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/include/ |
H A D | syncer_proxy.h | 73 void LocalDataChanged(int notifyEvent) override;
|
H A D | isyncer.h | 93 virtual void LocalDataChanged(int notifyEvent) = 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 | 548 void RdSingleVerNaturalStore::CommitNotify(int notifyEvent, KvDBCommitNotifyFilterAbleData *data) in CommitNotify() argument 550 GenericKvDB::CommitNotify(notifyEvent, data); in CommitNotify()
|
/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;
|
/foundation/window/window_manager/window_scene/session/host/include/zidl/ |
H A D | session_proxy.h | 102 void NotifyExtensionEventAsync(uint32_t notifyEvent) override;
|
H A D | session_interface.h | 284 virtual void NotifyExtensionEventAsync(uint32_t notifyEvent) {}; in NotifyExtensionEventAsync() argument
|
/foundation/window/window_manager/wm/include/ |
H A D | window_extension_session_impl.h | 107 void NotifyExtensionEventAsync(uint32_t notifyEvent) override;
|