Home
last modified time | relevance | path

Searched refs:enable (Results 1 - 25 of 46) sorted by relevance

12

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
H A Doptions_quick.py30 "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 Doptions_ark_aot.py32 "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 Doptions_time_report.py32 "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 Doptions_verifier.py32 "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 Doptions_jit.py34 "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 Dtrace_enable.sh37 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 Dtrace_enable.sh37 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 Dinstall-deps-ubuntu221 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 Dpass_options.h47 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 Ddebug_info.cpp21 DebugInfo::DebugInfo(NativeAreaAllocator* allocator, bool enable) in DebugInfo() argument
25 enable_(enable) in DebugInfo()
/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/
H A Dmem_hooks.cpp23 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 Druntime_api.py32 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 Ddebugger_api.py33 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 Druntime_stat.h35 void SetRuntimeStatEnabled(bool enable) in SetRuntimeStatEnabled() argument
37 runtimeStatEnabled_ = enable; in SetRuntimeStatEnabled()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H A Dpgo_trace.h56 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 Dprofiler.py28 def enable(): function
29 return {'method': 'Profiler.enable'}
H A Dheap_profiler.py28 def enable(): function
29 return {'method': 'HeapProfiler.enable'}
H A Druntime.py33 def enable(): function
34 command = {'method': 'Runtime.enable'}
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
H A Dan_file_data_manager.h64 void SetEnable(bool enable) in SetEnable() argument
66 anEnable_ = enable; in SetEnable()
/arkcompiler/runtime_core/libpandabase/events/
H A Devents.rb63 def enable?
64 @dscr.respond_to?('enable') ? @dscr['enable'] : true
/arkcompiler/runtime_core/static_core/libpandabase/events/
H A Devents.rb67 def enable?
68 @dscr.respond_to?('enable') ? @dscr['enable'] : true
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
H A Drunner_base.py184 if config.ark_aot.enable:
193 if config.ark.jit.enable:
199 if config.quick.enable:
/arkcompiler/toolchain/tooling/test/
H A Druntime_impl_test.cpp66 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 Dtest_js_hermes.py52 if self.test_env.config.quick.enable:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/test262/
H A Dtest_js_test262.py63 if self.test_env.config.quick.enable:

Completed in 7 milliseconds

12