Flutter Engine
The Flutter Engine
Public Member Functions | List of all members
utils.LinuxCoreDumpEnabler Class Reference
Inheritance diagram for utils.LinuxCoreDumpEnabler:
utils.PosixCoreDumpEnabler

Public Member Functions

def __enter__ (self)
 
def __exit__ (self, *args)
 
- Public Member Functions inherited from utils.PosixCoreDumpEnabler
def __init__ (self)
 
def __enter__ (self)
 
def __exit__ (self, *_)
 

Detailed Description

Definition at line 569 of file utils.py.

Member Function Documentation

◆ __enter__()

def utils.LinuxCoreDumpEnabler.__enter__ (   self)

Reimplemented from utils.PosixCoreDumpEnabler.

Definition at line 571 of file utils.py.

571 def __enter__(self):
572 # Bump core limits to unlimited if core_pattern is correctly configured.
573 if CheckLinuxCoreDumpPattern(fatal=False):
574 super(LinuxCoreDumpEnabler, self).__enter__()
575
def CheckLinuxCoreDumpPattern(fatal=False)
Definition: utils.py:511

◆ __exit__()

def utils.LinuxCoreDumpEnabler.__exit__ (   self,
args 
)

Reimplemented from utils.PosixCoreDumpEnabler.

Definition at line 576 of file utils.py.

576 def __exit__(self, *args):
577 CheckLinuxCoreDumpPattern(fatal=False)
578 super(LinuxCoreDumpEnabler, self).__exit__(*args)
579
580

The documentation for this class was generated from the following file: