Sign in
android
/
toolchain
/
rustc
/
54272acac043c1dedfb7db7420545b31ec1ac51f
/
.
/
src
/
llvm-project
/
lldb
/
test
/
Shell
/
Commands
/
Inputs
/
stop_hook.py
blob: e319ca9ec5bc890c95f998f4a27ef754a7aa18e2 [
file
] [
log
] [
blame
]
import
lldb
class
stop_handler
:
def
__init__
(
self
,
target
,
extra_args
,
dict
):
self
.
extra_args
=
extra_args
self
.
target
=
target
def
handle_stop
(
self
,
exe_ctx
,
stream
):
stream
.
Print
(
"I did indeed run\n"
)
return
True