/arkcompiler/ets_runtime/ecmascript/ |
D | log.cpp | 66 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()
|
D | log.h | 69 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) && \
|
D | runtime_call_id.h | 479 V(Math, Log) \
|
/arkcompiler/ets_runtime/ |
D | libark_jsruntime.map | 65 panda::ecmascript::Log::*;
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_math.h | 79 static JSTaggedValue Log(EcmaRuntimeCallInfo *argv);
|
D | builtins_math.cpp | 425 JSTaggedValue BuiltinsMath::Log(EcmaRuntimeCallInfo *argv) in Log() function in panda::ecmascript::builtins::BuiltinsMath 428 BUILTINS_API_TRACE(argv->GetThread(), Math, Log); in Log()
|
D | builtins.cpp | 1678 SetFunction(env, mathObject, "log", Math::Log, FunctionLength::ONE); in InitializeMath()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | logger.cpp | 140 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
|
D | logger.h | 209 static void Log(Level level, Component component, const std::string &str);
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | read_only_space_test.cpp | 57 ecmascript::Log::Initialize(runtimeOptions); in InitializeLogger()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | stub_compiler.cpp | 178 panda::ecmascript::Log::Initialize(runtimeOptions); in main()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
D | jsnapi.cpp | 180 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/ |
D | builtins_math_test.cpp | 2312 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/ |
D | snapshot_processor.cpp | 579 reinterpret_cast<uintptr_t>(Math::Log),
|