Searched refs:log_file (Results 1 - 12 of 12) sorted by relevance
/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/reporters/ |
H A D | string_logger.rb | 41 def initialize(log_file) 42 @file = File.new(log_file, 'w')
|
/arkcompiler/runtime_core/tests/cts-generator/runner/reporters/ |
H A D | string_logger.rb | 41 def initialize(log_file) 42 @file = File.new(log_file, 'w')
|
/arkcompiler/runtime_core/assembler/ |
H A D | pandasm.cpp | 63 const panda::PandArg<std::string> &output_file, const panda::PandArg<std::string> &log_file, in PrepareArgs() 84 if (log_file.GetValue().empty()) { in PrepareArgs() 93 panda::Logger::InitializeFileLogging(log_file.GetValue(), panda::Logger::Level::DEBUG, component_mask); in PrepareArgs() 210 panda::PandArg<std::string> log_file("log-file", "", "(--log-file FILENAME) Set log file name"); in main() 224 pa_parser.Add(&log_file); in main() 235 if (!panda::pandasm::PrepareArgs(pa_parser, input_file, output_file, log_file, help, verbose, version, inputfile, in main() 62 PrepareArgs(panda::PandArgParser &pa_parser, const panda::PandArg<std::string> &input_file, const panda::PandArg<std::string> &output_file, const panda::PandArg<std::string> &log_file, const panda::PandArg<bool> &help, const panda::PandArg<bool> &verbose, const panda::PandArg<bool> &version, std::ifstream &inputfile, int argc, const char **argv) PrepareArgs() argument
|
H A D | pandasm.h | 28 const panda::PandArg<std::string> &output_file, const panda::PandArg<std::string> &log_file,
|
/arkcompiler/runtime_core/scripts/ |
H A D | gc_pause_stats.py | 152 with open(gc_log_path, 'r') as log_file: 153 for f_line in log_file.readlines():
|
/arkcompiler/runtime_core/static_core/scripts/ |
H A D | gc_phase_time_stats.py | 117 with open(gc_log_file, 'r') as log_file: 118 for log_line in log_file.readlines():
|
H A D | gc_pause_stats.py | 230 with open(gc_log_path, 'r') as log_file: 231 for f_line in log_file.readlines():
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | logger.cpp | 194 void Logger::InitializeFileLogging(const std::string &log_file, Level level, const ComponentMask &component_mask, in InitializeFileLogging() argument 207 auto path = os::GetAbsolutePath(log_file); in InitializeFileLogging() 226 log_file.c_str(), os::Error(errno).ToString().c_str()); in InitializeFileLogging()
|
H A D | logger.h | 148 static void InitializeFileLogging(const std::string &log_file, Level level, const ComponentMask &component_mask,
|
/arkcompiler/ets_frontend/test/scripts/sdk_test/ |
H A D | utils.py | 49 def init_logger(log_level, log_file): 50 logging.basicConfig(filename=log_file,
|
H A D | result.py | 625 log_file = logger.handlers[0].baseFilename 627 output_log_file = options.configs.get('log_file') 628 os.rename(log_file, output_log_file)
|
H A D | options.py | 146 parser.add_argument('--logFile', type=str, dest='log_file', default='', 240 utils.init_logger(arguments.log_level, arguments.log_file)
|
Completed in 7 milliseconds