Home
last modified time | relevance | path

Searched refs:log_function (Results 1 – 5 of 5) sorted by relevance

/external/oss-fuzz/projects/avahi/
Davahi_packet_consume_record_fuzzer.cc10 void log_function(AvahiLogLevel level, const char *txt) {} in log_function() function
14 avahi_set_log_function(log_function); in AvahiState()
Davahi_packet_consume_key_fuzzer.cc10 void log_function(AvahiLogLevel level, const char *txt) {} in log_function() function
14 avahi_set_log_function(log_function); in AvahiState()
/external/libchrome/third_party/jinja2/
Denvironment.py639 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')
/external/python/jinja/src/jinja2/
Denvironment.py677 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")
/external/python/jinja/tests/
Dtest_loader.py192 self.reg_env.compile_templates(self.archive, zip=zip, log_function=log.append)