Searched refs:watch_type (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionGroupWatchpoint.h61 WatchType watch_type; member in class:lldb_private::OptionGroupWatchpoint
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionGroupWatchpoint.cpp85 watch_type = tmp_watch_type;
106 watch_type = eWatchInvalid;
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBFrame.h206 WatchValue (const char *name, ValueType value_type, uint32_t watch_type);
214 WatchLocation (const char *name, ValueType value_type, uint32_t watch_type, size_t size);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp1005 m_option_watchpoint.watch_type = OptionGroupWatchpoint::eWatchWrite;
1080 uint32_t watch_type = m_option_watchpoint.watch_type; local
1083 Watchpoint *wp = target->CreateWatchpoint(addr, size, &clang_type, watch_type, error).get();
1247 m_option_watchpoint.watch_type = OptionGroupWatchpoint::eWatchWrite;
1293 uint32_t watch_type = m_option_watchpoint.watch_type; local
1300 Watchpoint *wp = target->CreateWatchpoint(addr, size, &clang_type, watch_type, error).get();
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBValue.cpp1672 uint32_t watch_type = 0;
1674 watch_type |= LLDB_WATCH_TYPE_READ;
1676 watch_type |= LLDB_WATCH_TYPE_WRITE;
1680 WatchpointSP watchpoint_sp = target_sp->CreateWatchpoint(addr, byte_size, &type, watch_type, rc);
H A DSBTarget.cpp1791 uint32_t watch_type = 0; local
1793 watch_type |= LLDB_WATCH_TYPE_READ;
1795 watch_type |= LLDB_WATCH_TYPE_WRITE;
1796 if (watch_type == 0)
1806 watchpoint_sp = target_sp->CreateWatchpoint(addr, size, type, watch_type, cw_error);

Completed in 115 milliseconds