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
l
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
source
Commands
CommandOptionsProcessLaunch.h
Go to the documentation of this file.
1
//===-- CommandOptionsProcessLaunch.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_SOURCE_COMMANDS_COMMANDOPTIONSPROCESSLAUNCH_H
10
#define LLDB_SOURCE_COMMANDS_COMMANDOPTIONSPROCESSLAUNCH_H
11
12
#include "
lldb/Host/ProcessLaunchInfo.h
"
13
#include "
lldb/Interpreter/Options.h
"
14
15
namespace
lldb_private
{
16
17
// CommandOptionsProcessLaunch
18
19
class
CommandOptionsProcessLaunch
:
public
lldb_private::OptionGroup
{
20
public
:
21
CommandOptionsProcessLaunch
() {
22
// Keep default values of all options in one place: OptionParsingStarting
23
// ()
24
OptionParsingStarting
(
nullptr
);
25
}
26
27
~CommandOptionsProcessLaunch
()
override
=
default
;
28
29
lldb_private::Status
30
SetOptionValue
(uint32_t option_idx, llvm::StringRef option_arg,
31
lldb_private::ExecutionContext
*execution_context)
override
;
32
33
void
OptionParsingStarting
(
34
lldb_private::ExecutionContext
*execution_context)
override
{
35
launch_info
.
Clear
();
36
disable_aslr
=
lldb_private::eLazyBoolCalculate
;
37
}
38
39
llvm::ArrayRef<lldb_private::OptionDefinition>
GetDefinitions
()
override
;
40
41
// Instance variables to hold the values for command options.
42
43
lldb_private::ProcessLaunchInfo
launch_info
;
44
lldb_private::LazyBool
disable_aslr
;
45
};
// CommandOptionsProcessLaunch
46
47
}
// namespace lldb_private
48
49
#endif
// LLDB_SOURCE_COMMANDS_COMMANDOPTIONSPROCESSLAUNCH_H
Options.h
ProcessLaunchInfo.h
lldb_private::CommandOptionsProcessLaunch
Definition:
CommandOptionsProcessLaunch.h:19
lldb_private::CommandOptionsProcessLaunch::CommandOptionsProcessLaunch
CommandOptionsProcessLaunch()
Definition:
CommandOptionsProcessLaunch.h:21
lldb_private::CommandOptionsProcessLaunch::OptionParsingStarting
void OptionParsingStarting(lldb_private::ExecutionContext *execution_context) override
Definition:
CommandOptionsProcessLaunch.h:33
lldb_private::CommandOptionsProcessLaunch::~CommandOptionsProcessLaunch
~CommandOptionsProcessLaunch() override=default
lldb_private::CommandOptionsProcessLaunch::disable_aslr
lldb_private::LazyBool disable_aslr
Definition:
CommandOptionsProcessLaunch.h:44
lldb_private::CommandOptionsProcessLaunch::launch_info
lldb_private::ProcessLaunchInfo launch_info
Definition:
CommandOptionsProcessLaunch.h:43
lldb_private::CommandOptionsProcessLaunch::SetOptionValue
lldb_private::Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, lldb_private::ExecutionContext *execution_context) override
Definition:
CommandOptionsProcessLaunch.cpp:31
lldb_private::CommandOptionsProcessLaunch::GetDefinitions
llvm::ArrayRef< lldb_private::OptionDefinition > GetDefinitions() override
Definition:
CommandOptionsProcessLaunch.cpp:148
lldb_private::ExecutionContext
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
Definition:
ExecutionContext.h:292
lldb_private::OptionGroup
Definition:
Options.h:234
lldb_private::ProcessLaunchInfo
Definition:
ProcessLaunchInfo.h:30
lldb_private::ProcessLaunchInfo::Clear
void Clear()
Definition:
ProcessLaunchInfo.cpp:162
lldb_private::Status
An error handling class.
Definition:
Status.h:118
lldb_private
A class that represents a running process on the host machine.
Definition:
SBAddressRange.h:14
lldb_private::LazyBool
LazyBool
Definition:
lldb-private-enumerations.h:123
lldb_private::eLazyBoolCalculate
@ eLazyBoolCalculate
Definition:
lldb-private-enumerations.h:123
Generated on Thu Apr 17 2025 10:28:29 for LLDB by
1.9.6