Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionGroupWatchpoint.cpp89 watch_type = tmp_watch_type; in SetOptionValue()
109 watch_type = eWatchInvalid; in OptionParsingStarting()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp882 m_option_watchpoint.watch_type = OptionGroupWatchpoint::eWatchWrite; in DoExecute()
949 uint32_t watch_type = m_option_watchpoint.watch_type; in DoExecute() local
953 target->CreateWatchpoint(addr, size, &compiler_type, watch_type, error) in DoExecute()
1070 m_option_watchpoint.watch_type = OptionGroupWatchpoint::eWatchWrite; in DoExecute()
1112 uint32_t watch_type = m_option_watchpoint.watch_type; in DoExecute() local
1121 target->CreateWatchpoint(addr, size, &compiler_type, watch_type, error) in DoExecute()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptionGroupWatchpoint.h43 WatchType watch_type; variable
/llvm-project-15.0.7/lldb/source/API/
H A DSBValue.cpp1442 uint32_t watch_type = 0; in Watch() local
1444 watch_type |= LLDB_WATCH_TYPE_READ; in Watch()
1446 watch_type |= LLDB_WATCH_TYPE_WRITE; in Watch()
1451 target_sp->CreateWatchpoint(addr, byte_size, &type, watch_type, rc); in Watch()
H A DSBTarget.cpp1333 uint32_t watch_type = 0; in WatchAddress() local
1335 watch_type |= LLDB_WATCH_TYPE_READ; in WatchAddress()
1337 watch_type |= LLDB_WATCH_TYPE_WRITE; in WatchAddress()
1338 if (watch_type == 0) { in WatchAddress()
1349 target_sp->CreateWatchpoint(addr, size, type, watch_type, cw_error); in WatchAddress()
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.h189 uint32_t watch_type, bool hardware);