Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp938 uint32_t watch_type = 0; in DoExecute() local
939 switch (m_option_watchpoint.watch_type) { in DoExecute()
941 watch_type |= LLDB_WATCH_TYPE_MODIFY; in DoExecute()
944 watch_type |= LLDB_WATCH_TYPE_READ; in DoExecute()
950 watch_type |= LLDB_WATCH_TYPE_WRITE; in DoExecute()
1122 uint32_t watch_type; in DoExecute() local
1123 switch (m_option_watchpoint.watch_type) { in DoExecute()
1125 watch_type = LLDB_WATCH_TYPE_READ; in DoExecute()
1128 watch_type = LLDB_WATCH_TYPE_WRITE; in DoExecute()
1131 watch_type = LLDB_WATCH_TYPE_MODIFY; in DoExecute()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupWatchpoint.cpp84 watch_type = tmp_watch_type; in SetOptionValue()
106 watch_type = eWatchInvalid; in OptionParsingStarting()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupWatchpoint.h44 WatchType watch_type; variable
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp1440 uint32_t watch_type = 0; in Watch() local
1442 watch_type |= LLDB_WATCH_TYPE_READ; in Watch()
1447 watch_type |= LLDB_WATCH_TYPE_WRITE; in Watch()
1450 watch_type |= LLDB_WATCH_TYPE_MODIFY; in Watch()
1456 target_sp->CreateWatchpoint(addr, byte_size, &type, watch_type, rc); in Watch()
H A DSBTarget.cpp1344 uint32_t watch_type = 0; in WatchpointCreateByAddress() local
1346 watch_type |= LLDB_WATCH_TYPE_READ; in WatchpointCreateByAddress()
1348 watch_type |= LLDB_WATCH_TYPE_WRITE; in WatchpointCreateByAddress()
1350 watch_type |= LLDB_WATCH_TYPE_MODIFY; in WatchpointCreateByAddress()
1351 if (watch_type == 0) { in WatchpointCreateByAddress()
1363 target_sp->CreateWatchpoint(addr, size, type, watch_type, cw_error); in WatchpointCreateByAddress()