LLDB
mainline
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Variables
a
b
d
e
f
g
h
i
k
l
n
p
r
s
t
v
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
v
w
Enumerator
a
c
d
e
f
g
i
k
l
n
o
p
s
t
u
v
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
Related Functions
:
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
_
a
b
c
d
e
g
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
_
a
b
c
d
e
f
g
i
j
l
m
o
p
r
s
t
u
v
Enumerations
Enumerator
a
b
d
e
f
g
h
k
m
n
p
r
s
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Examples
llvm-project
lldb
include
lldb
API
SBWatchpointOptions.h
Go to the documentation of this file.
1
//===-- SBWatchpointOptions.h -----------------------------------*- C++ -*-===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#ifndef LLDB_API_SBWATCHPOINTOPTIONS_H
10
#define LLDB_API_SBWATCHPOINTOPTIONS_H
11
12
#include "
lldb/API/SBDefines.h
"
13
14
class
WatchpointOptionsImpl
;
15
16
namespace
lldb
{
17
18
class
LLDB_API
SBWatchpointOptions
{
19
public
:
20
SBWatchpointOptions
();
21
22
SBWatchpointOptions
(
const
lldb::SBWatchpointOptions
&rhs);
23
24
~SBWatchpointOptions
();
25
26
const
SBWatchpointOptions
&operator=(
const
lldb::SBWatchpointOptions
&rhs);
27
28
/// Stop when the watched memory region is read.
29
void
SetWatchpointTypeRead(
bool
read);
30
bool
GetWatchpointTypeRead()
const
;
31
32
/// Stop when the watched memory region is written to/modified
33
void
SetWatchpointTypeWrite(
lldb::WatchpointWriteType
write_type);
34
lldb::WatchpointWriteType
GetWatchpointTypeWrite()
const
;
35
36
private
:
37
// This auto_pointer is made in the constructor and is always valid.
38
mutable
std::unique_ptr<WatchpointOptionsImpl>
m_opaque_up
;
39
};
40
41
}
// namespace lldb
42
43
#endif
// LLDB_API_SBWATCHPOINTOPTIONS_H
SBDefines.h
LLDB_API
#define LLDB_API
Definition:
SBDefines.h:28
WatchpointOptionsImpl
Definition:
SBWatchpointOptions.cpp:18
lldb::SBWatchpointOptions
Definition:
SBWatchpointOptions.h:18
lldb::SBWatchpointOptions::m_opaque_up
std::unique_ptr< WatchpointOptionsImpl > m_opaque_up
Definition:
SBWatchpointOptions.h:38
lldb::SBWatchpointOptions::~SBWatchpointOptions
~SBWatchpointOptions()
lldb
Definition:
SBAddress.h:15
lldb::WatchpointWriteType
WatchpointWriteType
Definition:
lldb-enumerations.h:437
Generated on Mon Feb 17 2025 20:30:20 for LLDB by
1.9.6