Home
last modified time | relevance | path

Searched refs:notify (Results 1 – 25 of 82) sorted by relevance

1234

/llvm-project-15.0.7/lldb/source/Target/
H A DPathMappingList.cpp61 bool notify) { in Append() argument
64 if (notify && m_callback) in Append()
74 if (notify && m_callback) in Append()
89 if (notify && m_callback) in Insert()
99 if (notify && m_callback) in Replace()
111 if (notify && m_callback) in Remove()
134 void PathMappingList::Clear(bool notify) { in Clear() argument
138 if (notify && m_callback) in Clear()
228 bool notify) { in Replace() argument
233 if (notify && m_callback) in Replace()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DPathMappingList.h35 void Append(llvm::StringRef path, llvm::StringRef replacement, bool notify);
37 void Append(const PathMappingList &rhs, bool notify);
39 void Clear(bool notify);
52 uint32_t insert_idx, bool notify);
54 bool Remove(size_t index, bool notify);
56 bool Remove(ConstString path, bool notify);
58 bool Replace(llvm::StringRef path, llvm::StringRef replacement, bool notify);
61 uint32_t index, bool notify);
H A DThreadList.h74 bool SetSelectedThreadByID(lldb::tid_t tid, bool notify = false);
76 bool SetSelectedThreadByIndexID(uint32_t index_id, bool notify = false);
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointList.cpp30 break_id_t BreakpointList::Add(BreakpointSP &bp_sp, bool notify) { in Add() argument
38 if (notify) in Add()
44 bool BreakpointList::Remove(break_id_t break_id, bool notify) { in Remove() argument
54 if (notify) in Remove()
81 void BreakpointList::RemoveAll(bool notify) { in RemoveAll() argument
85 if (notify) { in RemoveAll()
93 void BreakpointList::RemoveAllowed(bool notify) { in RemoveAllowed() argument
99 if (notify) in RemoveAllowed()
H A DWatchpointList.cpp20 lldb::watch_id_t WatchpointList::Add(const WatchpointSP &wp_sp, bool notify) { in Add() argument
24 if (notify) { in Add()
167 bool WatchpointList::Remove(lldb::watch_id_t watch_id, bool notify) { in Remove() argument
172 if (notify) { in Remove()
228 void WatchpointList::RemoveAll(bool notify) { in RemoveAll() argument
230 if (notify) { in RemoveAll()
H A DWatchpoint.cpp237 void Watchpoint::SetEnabled(bool enabled, bool notify) { in SetEnabled() argument
250 if (notify && !m_is_ephemeral && changed) in SetEnabled()
255 void Watchpoint::SetWatchpointType(uint32_t type, bool notify) { in SetWatchpointType() argument
260 if (notify && in SetWatchpointType()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DClangdLSPServerTests.cpp59 Client.notify("exit", nullptr); in stop()
152 Client.notify( in TEST_F()
160 Client.notify( in TEST_F()
257 Client.notify("add", 2); in TEST_F()
258 Client.notify("add", 8); in TEST_F()
356 Client.notify("increment", nullptr); in TEST_F()
357 Client.notify("increment", nullptr); in TEST_F()
358 Client.notify("increment", nullptr); in TEST_F()
362 Client.notify("increment", nullptr); in TEST_F()
363 Client.notify("increment", nullptr); in TEST_F()
[all …]
H A DLSPClient.cpp108 void notify(llvm::StringRef Method, llvm::json::Value V) override { in notify() function in clang::clangd::LSPClient::TransportImpl
155 void LSPClient::notify(llvm::StringRef Method, llvm::json::Value Params) { in notify() function in clang::clangd::LSPClient
185 notify( in didOpen()
191 notify("textDocument/didChange", in didChange()
196 notify("textDocument/didClose", Obj{{"textDocument", documentID(Path)}}); in didClose()
H A DLSPBinderTests.cpp51 void notify(llvm::StringRef Method, llvm::json::Value Params) override { in notify() function
73 void notify(const Foo &Params) { in TEST() function
84 Binder.notification("notify", &H, &Handler::notify); in TEST()
H A DTUSchedulerTests.cpp242 Ready.notify(); in TEST_F()
331 Proceed.notify(); in TEST_F()
358 StartedRunning.notify(); in TEST_F()
365 ScheduledChange.notify(); in TEST_F()
421 Start.notify(); in TEST_F()
454 Start.notify(); in TEST_F()
743 TaskRun.notify(); in TEST_F()
966 TaskRun.notify(); in TEST_F()
1164 RunASTAction.notify(); in TEST_F()
1167 Ready.notify(); in TEST_F()
[all …]
/llvm-project-15.0.7/llvm/unittests/Support/
H A DThreading.cpp32 void notify() { in notify() function in __anon7152f2de0111::Notification
61 ThreadStarted.notify(); in TEST()
63 ThreadFinished.notify(); in TEST()
69 ThreadAdvanced.notify(); in TEST()
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpointList.h38 lldb::break_id_t Add(lldb::BreakpointSP &bp_sp, bool notify);
91 bool Remove(lldb::break_id_t breakID, bool notify);
113 void RemoveAll(bool notify);
118 void RemoveAllowed(bool notify);
H A DWatchpointList.h53 lldb::watch_id_t Add(const lldb::WatchpointSP &wp_sp, bool notify);
141 bool Remove(lldb::watch_id_t watchID, bool notify);
185 void RemoveAll(bool notify);
H A DWatchpoint.h73 void SetEnabled(bool enabled, bool notify = true);
83 void SetWatchpointType(uint32_t type, bool notify = true);
/llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/
H A Datomic-fence.mir4 # memory.atomic.notify and i32.add will be reordered by register stackify pass
6 # memory.atomic.notify and i32.add, they cannot be reordered, and local.set and
7 # local.get are inserted to save and load memory.atomic.notify's return value.
/llvm-project-15.0.7/lldb/source/API/
H A DSBWatchpoint.cpp147 const bool notify = true; in SetEnabled() local
150 process_sp->EnableWatchpoint(watchpoint_sp.get(), notify); in SetEnabled()
152 process_sp->DisableWatchpoint(watchpoint_sp.get(), notify); in SetEnabled()
154 watchpoint_sp->SetEnabled(enabled, notify); in SetEnabled()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/support/
H A DThreadingTests.cpp107 ReleaseB.notify(); in TEST_F()
114 ReleaseA.notify(); in TEST_F()
/llvm-project-15.0.7/lldb/source/Core/
H A DModuleList.cpp168 const bool notify = false; in UpdateSymlinkMappings() local
169 m_symlink_paths.Clear(notify); in UpdateSymlinkMappings()
174 m_symlink_paths.Append(symlink.GetPath(), resolved.GetPath(), notify); in UpdateSymlinkMappings()
223 void ModuleList::Append(const ModuleSP &module_sp, bool notify) { in Append() argument
224 AppendImpl(module_sp, notify); in Append()
256 bool ModuleList::AppendIfNeeded(const ModuleSP &new_module, bool notify) { in AppendIfNeeded() argument
264 Append(new_module, notify); in AppendIfNeeded()
310 bool ModuleList::Remove(const ModuleSP &module_sp, bool notify) { in Remove() argument
311 return RemoveImpl(module_sp, notify); in Remove()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DModuleList.h142 void Append(const lldb::ModuleSP &module_sp, bool notify = true);
171 bool AppendIfNeeded(const lldb::ModuleSP &new_module, bool notify = true);
406 bool Remove(const lldb::ModuleSP &module_sp, bool notify = true);
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DProcessWindows.h103 Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override;
104 Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
H A DProcessWindows.cpp851 Status ProcessWindows::EnableWatchpoint(Watchpoint *wp, bool notify) { in EnableWatchpoint() argument
855 wp->SetEnabled(true, notify); in EnableWatchpoint()
900 wp->SetEnabled(true, notify); in EnableWatchpoint()
905 Status ProcessWindows::DisableWatchpoint(Watchpoint *wp, bool notify) { in DisableWatchpoint() argument
909 wp->SetEnabled(false, notify); in DisableWatchpoint()
937 wp->SetEnabled(false, notify); in DisableWatchpoint()
/llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.h129 bool notify = true) override;
132 bool notify = true) override;
/llvm-project-15.0.7/mlir/lib/Tools/lsp-server-support/
H A DTransport.h56 void notify(StringRef method, llvm::json::Value params);
162 transport.notify(method, llvm::json::Value(params)); in outgoingNotification()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DTransport.h40 virtual void notify(llvm::StringRef Method, llvm::json::Value Params) = 0;
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectProcess.cpp1582 notify = std::string(option_arg); in SetOptionValue()
1598 notify.clear(); in OptionParsingStarting()
1612 std::string notify; member in CommandObjectProcessHandle::CommandOptions
1681 bool notify; in PrintSignal() local
1684 if (signals_sp->GetSignalInfo(signo, suppress, stop, notify)) { in PrintSignal()
1687 (stop ? "true " : "false"), (notify ? "true " : "false")); in PrintSignal()
1738 if (!m_options.notify.empty() && in DoExecute()
1739 !VerifyCommandOptionValue(m_options.notify, notify_action)) { in DoExecute()

1234