Home
last modified time | relevance | path

Searched refs:Notifications (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/lib/DirectoryWatcher/windows/
H A DDirectoryWatcher-windows.cpp33 std::vector<DWORD> Notifications; member in __anonc6ef4db10111::DirectoryWatcherWindows
103 Notifications.resize((4 * EntrySize) / sizeof(DWORD)); in DirectoryWatcherWindows()
153 if (!ReadDirectoryChangesW(DirectoryHandle, Notifications.data(), in WatcherThreadProc()
154 Notifications.size() * sizeof(DWORD), in WatcherThreadProc()
200 (FILE_NOTIFY_INFORMATION *)Notifications.data(); in WatcherThreadProc()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DLSPClient.cpp87 std::swap(Result, Notifications[Method]); in takeNotifications()
111 Notifications[Method].push_back(std::move(V)); in notify()
138 llvm::StringMap<std::vector<llvm::json::Value>> Notifications; member in clang::clangd::LSPClient::TransportImpl
204 auto Notifications = takeNotifications("textDocument/publishDiagnostics"); in diagnostics() local
205 for (const auto &Notification : llvm::reverse(Notifications)) { in diagnostics()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DProcess.h395 } Notifications; typedef
779 void RegisterNotificationCallbacks(const Process::Notifications &callbacks);
795 bool UnregisterNotificationCallbacks(const Process::Notifications &callbacks);
2864 std::vector<Notifications> m_notifications; ///< The list of notifications
/llvm-project-15.0.7/utils/bazel/
H A DREADME.md79 runs the full Bazel build on every commit to the main branch. Notifications of
/llvm-project-15.0.7/lldb/source/Target/
H A DProcess.cpp541 std::vector<Notifications> empty_notifications; in Finalize()
575 void Process::RegisterNotificationCallbacks(const Notifications &callbacks) { in RegisterNotificationCallbacks()
581 bool Process::UnregisterNotificationCallbacks(const Notifications &callbacks) { in UnregisterNotificationCallbacks()
582 std::vector<Notifications>::iterator pos, end = m_notifications.end(); in UnregisterNotificationCallbacks()
595 std::vector<Notifications>::iterator notification_pos, in SynchronouslyNotifyStateChanged()