/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/ |
H A D | options_quick.py | 30 "enable": self.enable, 34 @value(yaml_path="quick.enable", cli_name="quick", cast_to_type=_to_bool) 35 def enable(self) -> bool: member in QuickOptions 39 return '--quick' if self.enable else ''
|
H A D | options_ark_aot.py | 32 "enable": self.enable, 38 @value(yaml_path="ark_aot.enable", cli_name="aot", cast_to_type=_to_bool) 39 def enable(self) -> bool: member in ArkAotOptions 55 '--aot' if self.enable else '',
|
H A D | options_time_report.py | 32 "enable": self.enable, 37 @value(yaml_path="time-report.enable", cli_name="time_report", cast_to_type=_to_bool) 38 def enable(self) -> bool: member in TimeReportOptions 49 '--time-report' if self.enable else '',
|
H A D | options_verifier.py | 32 "enable": self.enable, 38 @value(yaml_path="verifier.enable", cli_name="enable_verifier", cast_to_type=_to_bool) 39 def enable(self) -> bool: member in VerifierOptions 54 '--disable-verifier' if not self.enable else '',
|
H A D | options_jit.py | 34 "enable": self.enable, 40 @value(yaml_path="ark.jit.enable", cli_name="jit", cast_to_type=_to_bool) 41 def enable(self) -> bool: member in JitOptions 67 options = '--jit' if self.enable else ''
|
/arkcompiler/runtime_core/scripts/ |
H A D | trace_enable.sh | 37 echo 1 > $TRACKING_PATH/events/sched/sched_switch/enable 38 echo 1 > $TRACKING_PATH/events/sched/sched_wakeup/enable 42 echo 0 > $TRACKING_PATH/events/sched/sched_switch/enable 43 echo 0 > $TRACKING_PATH/events/sched/sched_wakeup/enable
|
/arkcompiler/runtime_core/static_core/scripts/ |
H A D | trace_enable.sh | 37 echo 1 > $TRACKING_PATH/events/sched/sched_switch/enable 38 echo 1 > $TRACKING_PATH/events/sched/sched_wakeup/enable 42 echo 0 > $TRACKING_PATH/events/sched/sched_switch/enable 43 echo 0 > $TRACKING_PATH/events/sched/sched_wakeup/enable
|
H A D | install-deps-ubuntu | 221 CC=aarch64-linux-gnu-gcc-8 ./configure --host=aarch64-linux-gnu --prefix=/usr/aarch64-linux-gnu --includedir=/usr/aarch64-linux-gnu/include/libdwarf --disable-libelf --enable-shared --with-pic 227 CC=arm-linux-gnueabi-gcc-8 ./configure --host=arm-linux-gnueabi --prefix=/usr/arm-linux-gnueabi --includedir=/usr/arm-linux-gnueabi/include/libdwarf --disable-libelf --enable-shared --with-pic 233 CC=arm-linux-gnueabihf-gcc-8 ./configure --host=arm-linux-gnueabihf --prefix=/usr/arm-linux-gnueabihf --includedir=/usr/arm-linux-gnueabihf/include/libdwarf --disable-libelf --enable-shared --with-pic
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | pass_options.h | 47 options_.enable##NAME##_ = value; \ 52 enable##NAME##_{DEFAULT}; 55 bool Enable##NAME() const { return enable##NAME##_; } 58 void Set##NAME(bool value) { enable##NAME##_ = value; }
|
H A D | debug_info.cpp | 21 DebugInfo::DebugInfo(NativeAreaAllocator* allocator, bool enable) in DebugInfo() argument 25 enable_(enable) in DebugInfo()
|
/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/ |
H A D | mem_hooks.cpp | 23 volatile bool enable = false; member 58 if (!enable) { in PandaAllocHook() 95 enable = true; in Initialize() 109 enable = false; in Disable()
|
/arkcompiler/toolchain/test/autotest/aw/api/ |
H A D | runtime_api.py | 32 self.dispatch_table = {"enable": (self.enable, ProtocolType.send),
37 async def enable(self, message_id, connection, params):
member in RuntimeImpl 41 runtime.enable(), message_id)
|
H A D | debugger_api.py | 33 self.dispatch_table = {"enable": (self.enable, ProtocolType.send),
81 async def enable(self, message_id, connection, params):
member in DebuggerImpl 85 debugger.enable(), message_id)
|
/arkcompiler/ets_runtime/ecmascript/dfx/vmstat/ |
H A D | runtime_stat.h | 35 void SetRuntimeStatEnabled(bool enable) in SetRuntimeStatEnabled() argument 37 runtimeStatEnabled_ = enable; in SetRuntimeStatEnabled()
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
H A D | pgo_trace.h | 56 void SetEnable(bool enable) in SetEnable() argument 58 LOG_ECMA(DEBUG) << "PGO Trace enable: " << enable; in SetEnable() 59 enable_ = enable; in SetEnable()
|
/arkcompiler/toolchain/test/autotest/aw/cdp/ |
H A D | profiler.py | 28 def enable():
function 29 return {'method': 'Profiler.enable'}
|
H A D | heap_profiler.py | 28 def enable():
function 29 return {'method': 'HeapProfiler.enable'}
|
H A D | runtime.py | 33 def enable(): function 34 command = {'method': 'Runtime.enable'}
|
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/ |
H A D | an_file_data_manager.h | 64 void SetEnable(bool enable) in SetEnable() argument 66 anEnable_ = enable; in SetEnable()
|
/arkcompiler/runtime_core/libpandabase/events/ |
H A D | events.rb | 63 def enable? 64 @dscr.respond_to?('enable') ? @dscr['enable'] : true
|
/arkcompiler/runtime_core/static_core/libpandabase/events/ |
H A D | events.rb | 67 def enable? 68 @dscr.respond_to?('enable') ? @dscr['enable'] : true
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/ |
H A D | runner_base.py | 184 if config.ark_aot.enable: 193 if config.ark.jit.enable: 199 if config.quick.enable:
|
/arkcompiler/toolchain/tooling/test/ |
H A D | runtime_impl_test.cpp | 66 msg = std::string() + R"({"id":0,"method":"Rumtime.enable","params":{}})";
in HWTEST_F_L0() 85 std::string msg = std::string() + R"({"id":0,"method":"Rumtime.enable","params":{}})";
in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/hermes/ |
H A D | test_js_hermes.py | 52 if self.test_env.config.quick.enable:
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/test262/ |
H A D | test_js_test262.py | 63 if self.test_env.config.quick.enable:
|