Lines Matching defs:watchpoint_sp
54 lldb::WatchpointSP watchpoint_sp(GetSP());
55 if (watchpoint_sp)
56 watch_id = watchpoint_sp->GetID();
87 lldb::WatchpointSP watchpoint_sp(GetSP());
88 if (watchpoint_sp) {
89 sb_error.SetError(watchpoint_sp->GetError().Clone());
109 lldb::WatchpointSP watchpoint_sp(GetSP());
110 if (watchpoint_sp) {
112 watchpoint_sp->GetTarget().GetAPIMutex());
113 ret_addr = watchpoint_sp->GetLoadAddress();
124 lldb::WatchpointSP watchpoint_sp(GetSP());
125 if (watchpoint_sp) {
127 watchpoint_sp->GetTarget().GetAPIMutex());
128 watch_size = watchpoint_sp->GetByteSize();
137 lldb::WatchpointSP watchpoint_sp(GetSP());
138 if (watchpoint_sp) {
139 Target &target = watchpoint_sp->GetTarget();
145 process_sp->EnableWatchpoint(watchpoint_sp, notify);
147 process_sp->DisableWatchpoint(watchpoint_sp, notify);
149 watchpoint_sp->SetEnabled(enabled, notify);
157 lldb::WatchpointSP watchpoint_sp(GetSP());
158 if (watchpoint_sp) {
160 watchpoint_sp->GetTarget().GetAPIMutex());
161 return watchpoint_sp->IsEnabled();
170 lldb::WatchpointSP watchpoint_sp(GetSP());
171 if (watchpoint_sp) {
173 watchpoint_sp->GetTarget().GetAPIMutex());
174 count = watchpoint_sp->GetHitCount();
183 lldb::WatchpointSP watchpoint_sp(GetSP());
184 if (watchpoint_sp) {
186 watchpoint_sp->GetTarget().GetAPIMutex());
187 return watchpoint_sp->GetIgnoreCount();
195 lldb::WatchpointSP watchpoint_sp(GetSP());
196 if (watchpoint_sp) {
198 watchpoint_sp->GetTarget().GetAPIMutex());
199 watchpoint_sp->SetIgnoreCount(n);
206 lldb::WatchpointSP watchpoint_sp(GetSP());
207 if (!watchpoint_sp)
211 watchpoint_sp->GetTarget().GetAPIMutex());
212 return ConstString(watchpoint_sp->GetConditionText()).GetCString();
218 lldb::WatchpointSP watchpoint_sp(GetSP());
219 if (watchpoint_sp) {
221 watchpoint_sp->GetTarget().GetAPIMutex());
222 watchpoint_sp->SetCondition(condition);
232 lldb::WatchpointSP watchpoint_sp(GetSP());
233 if (watchpoint_sp) {
235 watchpoint_sp->GetTarget().GetAPIMutex());
236 watchpoint_sp->GetDescription(&strm, level);
292 lldb::WatchpointSP watchpoint_sp(GetSP());
293 if (watchpoint_sp) {
295 watchpoint_sp->GetTarget().GetAPIMutex());
296 const CompilerType &type = watchpoint_sp->GetCompilerType();
305 lldb::WatchpointSP watchpoint_sp(GetSP());
306 if (watchpoint_sp) {
308 watchpoint_sp->GetTarget().GetAPIMutex());
309 if (watchpoint_sp->IsWatchVariable())
319 lldb::WatchpointSP watchpoint_sp(GetSP());
320 if (!watchpoint_sp)
324 watchpoint_sp->GetTarget().GetAPIMutex());
329 return ConstString(watchpoint_sp->GetWatchSpec()).AsCString();
334 lldb::WatchpointSP watchpoint_sp(GetSP());
335 if (watchpoint_sp) {
337 watchpoint_sp->GetTarget().GetAPIMutex());
339 return watchpoint_sp->WatchpointRead();
347 lldb::WatchpointSP watchpoint_sp(GetSP());
348 if (watchpoint_sp) {
350 watchpoint_sp->GetTarget().GetAPIMutex());
352 return watchpoint_sp->WatchpointWrite() ||
353 watchpoint_sp->WatchpointModify();