Searched refs:log_function (Results 1 – 9 of 9) sorted by relevance
/aosp_15_r20/system/libbase/ |
H A D | logging_splitters.h | 33 static void SplitByLines(const char* msg, const F& log_function, Args&&... args) { in SplitByLines() argument 36 log_function(msg, newline - msg, args...); in SplitByLines() 41 log_function(msg, -1, args...); in SplitByLines() 50 unsigned int line, const char* msg, const F& log_function) { in SplitByLogdChunks() argument 75 log_function(log_id, severity, tag, logd_chunk); in SplitByLogdChunks() 127 log_function(log_id, severity, tag, logd_chunk); in SplitByLogdChunks() 129 log_function(log_id, severity, tag, msg); in SplitByLogdChunks()
|
/aosp_15_r20/external/libchrome/third_party/jinja2/ |
H A D | environment.py | 639 zip='deflated', log_function=None, argument 665 if log_function is None: 666 log_function = lambda x: None function 699 log_function('Compiling into Zip archive "%s"' % target) 703 log_function('Compiling into folder "%s"' % target) 713 log_function('Could not compile "%s": %s' % (name, e)) 722 log_function('Byte-compiled "%s" as %s' % 726 log_function('Compiled "%s" as %s' % (name, filename)) 731 log_function('Finished compiling templates')
|
/aosp_15_r20/external/python/jinja/src/jinja2/ |
D | environment.py | 677 log_function=None, argument 699 if log_function is None: 701 def log_function(x): function 722 log_function(f"Compiling into Zip archive {target!r}") 726 log_function(f"Compiling into folder {target!r}") 736 log_function(f'Could not compile "{name}": {e}') 742 log_function(f'Compiled "{name}" as {filename}') 747 log_function("Finished compiling templates")
|
/aosp_15_r20/device/google/cuttlefish/common/libs/utils/ |
D | tee_logging.cpp | 155 static void SplitByLines(const char* msg, const F& log_function, Args&&... args) { in SplitByLines() argument 158 log_function(msg, newline - msg, args...); in SplitByLines() 163 log_function(msg, -1, args...); in SplitByLines()
|
/aosp_15_r20/trusty/user/base/lib/trusty-log/src/ |
D | lib.rs | 107 Some(log_function) => log_function(record), in log()
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/ |
H A D | jit_log.h | 62 TORCH_API std::string log_function(const std::shared_ptr<Graph>& graph); 98 ::torch::jit::log_function(G));
|
H A D | jit_log.cpp | 131 std::string log_function(const std::shared_ptr<torch::jit::Graph>& graph) { in log_function() function
|
/aosp_15_r20/tools/test/connectivity/acts/framework/acts/controllers/monsoon_lib/sampling/hvpm/ |
D | transformers.py | 223 log_function = logging.info if __debug__ else logging.warning 224 log_function('At %9f, total dropped count: %s' %
|
/aosp_15_r20/external/python/jinja/tests/ |
D | test_loader.py | 192 self.reg_env.compile_templates(self.archive, zip=zip, log_function=log.append)
|