Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Namespaces | Variables
valgrind.py File Reference

Go to the source code of this file.

Namespaces

namespace  valgrind
 

Variables

list valgrind.VALGRIND_ARGUMENTS
 
list valgrind.command = VALGRIND_ARGUMENTS + sys.argv[1:]
 
 valgrind.process
 
 valgrind.code = process.wait()
 
 valgrind.output = process.stdout.readlines()
 
 valgrind.errors = process.stderr.readlines()
 
str valgrind.LEAK_RE = r"(?:definitely|indirectly) lost:"
 
 valgrind.LEAK_LINE_MATCHER = re.compile(LEAK_RE)
 
 valgrind.LEAK_OKAY_MATCHER = re.compile(r"lost: 0 bytes in 0 blocks")
 
list valgrind.leaks = []