Lines Matching refs:lldb_private

36 class ProcessKDP : public lldb_private::Process
43 CreateInstance (lldb_private::Target& target,
44 lldb_private::Listener &listener,
45 const lldb_private::FileSpec *crash_file_path);
51 DebuggerInitialize (lldb_private::Debugger &debugger);
56 static lldb_private::ConstString
65 ProcessKDP(lldb_private::Target& target, lldb_private::Listener &listener);
74 CanDebug (lldb_private::Target &target,
77 virtual lldb_private::CommandObject *
83 virtual lldb_private::Error
84 WillLaunch (lldb_private::Module* module);
86 virtual lldb_private::Error
87 DoLaunch (lldb_private::Module *exe_module,
88 const lldb_private::ProcessLaunchInfo &launch_info);
90 virtual lldb_private::Error
93 virtual lldb_private::Error
96 virtual lldb_private::Error
97 DoConnectRemote (lldb_private::Stream *strm, const char *remote_url);
99 virtual lldb_private::Error
102 virtual lldb_private::Error
103 DoAttachToProcessWithID (lldb::pid_t pid, const lldb_private::ProcessAttachInfo &attach_info);
105 virtual lldb_private::Error
106 DoAttachToProcessWithName (const char *process_name, bool wait_for_launch, const lldb_private::ProcessAttachInfo &attach_info);
114 lldb_private::DynamicLoader *
120 virtual lldb_private::ConstString
129 virtual lldb_private::Error
132 virtual lldb_private::Error
135 virtual lldb_private::Error
138 virtual lldb_private::Error
141 virtual lldb_private::Error
144 virtual lldb_private::Error
160 DoReadMemory (lldb::addr_t addr, void *buf, size_t size, lldb_private::Error &error);
163 DoWriteMemory (lldb::addr_t addr, const void *buf, size_t size, lldb_private::Error &error);
166 DoAllocateMemory (size_t size, uint32_t permissions, lldb_private::Error &error);
168 virtual lldb_private::Error
174 virtual lldb_private::Error
175 EnableBreakpointSite (lldb_private::BreakpointSite *bp_site);
177 virtual lldb_private::Error
178 DisableBreakpointSite (lldb_private::BreakpointSite *bp_site);
183 virtual lldb_private::Error
184 EnableWatchpoint (lldb_private::Watchpoint *wp, bool notify = true);
186 virtual lldb_private::Error
187 DisableWatchpoint (lldb_private::Watchpoint *wp, bool notify = true);
233 UpdateThreadList (lldb_private::ThreadList &old_thread_list,
234 lldb_private::ThreadList &new_thread_list);
249 lldb_private::Broadcaster m_async_broadcaster;
251 lldb_private::ConstString m_dyld_plugin_name;