Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
dart::DisableNativeProfileScope Class Reference
Inheritance diagram for dart::DisableNativeProfileScope:
dart::ValueObject

Public Member Functions

 DisableNativeProfileScope ()
 
 ~DisableNativeProfileScope ()
 
- Public Member Functions inherited from dart::ValueObject
 ValueObject ()
 
 ~ValueObject ()
 

Detailed Description

Definition at line 32 of file profiler_test.cc.

Constructor & Destructor Documentation

◆ DisableNativeProfileScope()

dart::DisableNativeProfileScope::DisableNativeProfileScope ( )
inline

Definition at line 34 of file profiler_test.cc.

35 : FLAG_profile_vm_(FLAG_profile_vm),
36 FLAG_profile_vm_allocation_(FLAG_profile_vm_allocation) {
37 FLAG_profile_vm = false;
38 FLAG_profile_vm_allocation = false;
39 }

◆ ~DisableNativeProfileScope()

dart::DisableNativeProfileScope::~DisableNativeProfileScope ( )
inline

Definition at line 41 of file profiler_test.cc.

41 {
42 FLAG_profile_vm = FLAG_profile_vm_;
43 FLAG_profile_vm_allocation = FLAG_profile_vm_allocation_;
44 }

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