Home
last modified time | relevance | path

Searched refs:Log (Results 1 – 14 of 14) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dlog.cpp66 Level Log::level_ = Level::ERROR;
67 ComponentMark Log::components_ = Component::ALL;
69 Level Log::ConvertFromRuntime(LOG_LEVEL level) in ConvertFromRuntime()
99 std::string Log::LevelToString(Level level) in LevelToString()
124 void Log::SetLogLevelFromString(const std::string& level) in SetLogLevelFromString()
146 void Log::SetLogComponentFromString(const std::vector<std::string>& components) in SetLogComponentFromString()
185 int32_t Log::PrintLogger(int32_t, int32_t level, const char *, const char *, const char *message) in PrintLogger()
213 void Log::Initialize(const JSRuntimeOptions &options) in Initialize()
241 Logger::SetMobileLogPrintEntryPointByPtr(reinterpret_cast<void *>(Log::PrintLogger)); in Initialize()
Dlog.h69 class PUBLIC_API Log {
120 std::string str = Log::GetComponentStr(component); in HiLog()
177 std::string str = Log::GetComponentStr(component); in StdLog()
206 #define ARK_LOG(level, component) panda::ecmascript::Log::LogIsLoggable(level, component) && \
212 #define ARK_LOG(level, component) ((level >= INFO) || panda::ecmascript::Log::LogIsLoggable(level, …
215 #define ARK_LOG(level, component) panda::ecmascript::Log::LogIsLoggable(level, component) && \
Druntime_call_id.h479 V(Math, Log) \
/arkcompiler/ets_runtime/
Dlibark_jsruntime.map65 panda::ecmascript::Log::*;
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_math.h79 static JSTaggedValue Log(EcmaRuntimeCallInfo *argv);
Dbuiltins_math.cpp425 JSTaggedValue BuiltinsMath::Log(EcmaRuntimeCallInfo *argv) in Log() function in panda::ecmascript::builtins::BuiltinsMath
428 BUILTINS_API_TRACE(argv->GetThread(), Math, Log); in Log()
Dbuiltins.cpp1678 SetFunction(env, mathObject, "log", Math::Log, FunctionLength::ONE); in InitializeMath()
/arkcompiler/runtime_core/libpandabase/utils/
Dlogger.cpp140 Logger::Log(level_, component_, stream_.str()); in ~Message()
154 void Logger::Log(Level level, Component component, const std::string &str) in Log() function in panda::Logger
Dlogger.h209 static void Log(Level level, Component component, const std::string &str);
/arkcompiler/ets_runtime/ecmascript/tests/
Dread_only_space_test.cpp57 ecmascript::Log::Initialize(runtimeOptions); in InitializeLogger()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_compiler.cpp178 panda::ecmascript::Log::Initialize(runtimeOptions); in main()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp180 using ecmascript::Log;
308 runtimeOptions.SetLogLevel(Log::LevelToString(Log::ConvertFromRuntime(option.GetLogLevel()))); in CreateJSVM()
337 ecmascript::Log::Initialize(options); in CreateEcmaVM()
653 runtimeOptions.SetLogLevel(Log::LevelToString(Log::ConvertFromRuntime(option.GetLogLevel()))); in PostFork()
654 Log::Initialize(runtimeOptions); in PostFork()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_math_test.cpp2312 HWTEST_F_L0(BuiltinsMathTest, Log) in HWTEST_F_L0() argument
2320 JSTaggedValue result = BuiltinsMath::Log(ecmaRuntimeCallInfo); in HWTEST_F_L0()
2335 JSTaggedValue result = BuiltinsMath::Log(ecmaRuntimeCallInfo); in HWTEST_F_L0()
2350 JSTaggedValue result = BuiltinsMath::Log(ecmaRuntimeCallInfo); in HWTEST_F_L0()
2365 JSTaggedValue result = BuiltinsMath::Log(ecmaRuntimeCallInfo); in HWTEST_F_L0()
2381 JSTaggedValue result = BuiltinsMath::Log(ecmaRuntimeCallInfo); in HWTEST_F_L0()
2396 JSTaggedValue result = BuiltinsMath::Log(ecmaRuntimeCallInfo); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp579 reinterpret_cast<uintptr_t>(Math::Log),