Home
last modified time | relevance | path

Searched refs:notifyEvent (Results 1 - 25 of 33) sorted by relevance

12

/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/kv/
H A Dgeneric_kvdb.cpp117 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 Dsync_able_kvdb.h40 void CommitNotify(int notifyEvent, KvDBCommitNotifyFilterAbleData *data) override;
144 void TriggerSync(int notifyEvent);
H A Dgeneric_kvdb.h72 virtual void CommitNotify(int notifyEvent, KvDBCommitNotifyFilterAbleData *data);
174 void CommitNotifyAsync(int notifyEvent, KvDBCommitNotifyFilterAbleData *data);
H A Dsync_able_kvdb.cpp63 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 Dsingle_ver_kv_syncer.cpp69 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 Dsingle_ver_kv_syncer.h31 void LocalDataChanged(int notifyEvent) override;
H A Dsingle_ver_relational_syncer.h32 void LocalDataChanged(int notifyEvent) override;
H A Dsingle_ver_relational_syncer.cpp158 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 Dmulti_ver_syncer.h40 void LocalDataChanged(int notifyEvent) override;
H A Dmulti_ver_syncer.cpp72 void MultiVerSyncer::LocalDataChanged(int notifyEvent) in LocalDataChanged() argument
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/drag_drop/
H A Ddrag_drop_manager.cpp511 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 Ddrag_drop_manager.h155 RefPtr<NotifyDragEvent>& notifyEvent, const Point& point, const DragEventType dragEventType);
241 RefPtr<NotifyDragEvent>& notifyEvent);
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/
H A Drelational_db_sync_interface.h38 virtual int LocalDataChanged(int notifyEvent, std::vector<QuerySyncObject> &queryObj) = 0;
/foundation/arkui/ace_engine/test/unittest/core/manager/
H A Ddrag_drop_manager_test_ng.cpp1579 * @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 Dsyncer_proxy.cpp130 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 Dextension_session.h61 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 Dextension_session.cpp460 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 Dsyncer_proxy.h73 void LocalDataChanged(int notifyEvent) override;
H A Disyncer.h93 virtual void LocalDataChanged(int notifyEvent) = 0;
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/gaussdb_rd/
H A Drd_single_ver_natural_store.h144 void CommitNotify(int notifyEvent, KvDBCommitNotifyFilterAbleData *data) override;
H A Drd_single_ver_natural_store.cpp548 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 Dvirtual_relational_ver_sync_db_interface.h55 int LocalDataChanged(int notifyEvent, std::vector<QuerySyncObject> &queryObj) override;
/foundation/window/window_manager/window_scene/session/host/include/zidl/
H A Dsession_proxy.h102 void NotifyExtensionEventAsync(uint32_t notifyEvent) override;
H A Dsession_interface.h284 virtual void NotifyExtensionEventAsync(uint32_t notifyEvent) {}; in NotifyExtensionEventAsync() argument
/foundation/window/window_manager/wm/include/
H A Dwindow_extension_session_impl.h107 void NotifyExtensionEventAsync(uint32_t notifyEvent) override;

Completed in 17 milliseconds

12