Home
last modified time | relevance | path

Searched full:log_file (Results 1 – 19 of 19) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/public/headers_parser/
Druntime_collections.py35 "log_file": os.path.join(LIB_GEN_FOLDER, "./gen/logs/unreachable.txt"),
39 "log_file": os.path.join(LIB_GEN_FOLDER, "./gen/logs/skip.txt"),
43 "log_file": os.path.join(LIB_GEN_FOLDER, "./gen/logs/generated_yamls.txt"),
93 …with os.fdopen(os.open(value.get("log_file"), os.O_WRONLY | os.O_CREAT, mode=511), "w", encoding="…
/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/reporters/
Dstring_logger.rb41 def initialize(log_file) argument
42 @file = File.new(log_file, 'w')
/arkcompiler/runtime_core/tests/cts-generator/runner/reporters/
Dstring_logger.rb41 def initialize(log_file) argument
42 @file = File.new(log_file, 'w')
/arkcompiler/runtime_core/assembler/
Dpandasm.cpp63 … const panda::PandArg<std::string> &output_file, const panda::PandArg<std::string> &log_file, in PrepareArgs() argument
84 if (log_file.GetValue().empty()) { in PrepareArgs()
93 …panda::Logger::InitializeFileLogging(log_file.GetValue(), panda::Logger::Level::DEBUG, component_m… in PrepareArgs()
210 panda::PandArg<std::string> log_file("log-file", "", "(--log-file FILENAME) Set log file name"); in main() local
224 pa_parser.Add(&log_file); in main()
235 …if (!panda::pandasm::PrepareArgs(pa_parser, input_file, output_file, log_file, help, verbose, vers… in main()
Dpandasm.h28 … const panda::PandArg<std::string> &output_file, const panda::PandArg<std::string> &log_file,
/arkcompiler/jsvm/src/
Djsvm_log.h78 #define LOG_FILE(filename) jsvm::LogFile(filename) macro
/arkcompiler/ets_frontend/test/scripts/sdk_test/
Dpreparation.py68 output_log_file = options.configs.get('log_file')
Doptions.py146 parser.add_argument('--logFile', type=str, dest='log_file', default='',
240 utils.init_logger(arguments.log_level, arguments.log_file)
Dutils.py49 def init_logger(log_level, log_file): argument
50 logging.basicConfig(filename=log_file,
Dresult.py625 log_file = logger.handlers[0].baseFilename
627 output_log_file = options.configs.get('log_file')
628 os.rename(log_file, output_log_file)
Dconfig.yaml29 log_file: ./sdk_test_log.txt
/arkcompiler/runtime_core/static_core/scripts/
Dgc_phase_time_stats.py117 with open(gc_log_file, 'r') as log_file:
118 for log_line in log_file.readlines():
Dgc_pause_stats.py230 with open(gc_log_path, 'r') as log_file:
231 for f_line in log_file.readlines():
/arkcompiler/runtime_core/scripts/
Dgc_pause_stats.py152 with open(gc_log_path, 'r') as log_file:
153 for f_line in log_file.readlines():
/arkcompiler/ets_frontend/es2panda/test/benchmark/
Dutils.py22 … config import BUILD_HERMES_CMDS, HERMES_BUILD_LOG_PATH, HERMES_CLONE_PATH, REPORT_DIR, LOG_FILE, \
30 write_log_file(os.path.join(REPORT_DIR, LOG_FILE), log_str)
Dconfig.py49 LOG_FILE = "test_result.txt" variable
/arkcompiler/runtime_core/libpandabase/utils/
Dlogger.cpp185 void Logger::InitializeFileLogging(const std::string &log_file, Level level, const ComponentMask &c… in InitializeFileLogging() argument
198 auto path = os::GetAbsolutePath(log_file); in InitializeFileLogging()
217log_file.c_str(), os::Error(errno).ToString().c_str()); in InitializeFileLogging()
Dlogger.h148 …static void InitializeFileLogging(const std::string &log_file, Level level, const ComponentMask &c…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/
Drich_logging.py75 _LOG_FILE_NAME: Final[str] = "log_file"