HomeSort by relevance Sort by last modified time
    Searched defs:_log (Results 1 - 25 of 62) sorted by null

1 2 3

  /development/tools/axl/
log.py 38 def _log(self, *logstrs): member in class:Log
45 self._log("D", *logstrs)
47 self._log("I", *logstrs)
49 self._log("W", *logstrs)
51 self._log("E", *logstrs)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_dir_util.py 17 def _log(self, msg, *args): member in class:DirUtilTestCase
31 log.info = self._log
test_file_util.py 13 def _log(self, msg, *args): member in class:FileUtilTestCase
23 log.info = self._log
support.py 27 self._old_log = log.Log._log
28 log.Log._log = self._log
33 log.Log._log = self._old_log
36 def _log(self, level, msg, args): member in class:LoggingSilencer
  /external/python/cpython3/Lib/distutils/tests/
test_file_util.py 15 def _log(self, msg, *args): member in class:FileUtilTestCase
25 log.info = self._log
test_dir_util.py 19 def _log(self, msg, *args): member in class:DirUtilTestCase
33 log.info = self._log
support.py 23 self._old_log = log.Log._log
24 log.Log._log = self._log
29 log.Log._log = self._old_log
32 def _log(self, level, msg, args): member in class:LoggingSilencer
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_file_util.py 13 def _log(self, msg, *args): member in class:FileUtilTestCase
23 log.info = self._log
test_dir_util.py 17 def _log(self, msg, *args): member in class:DirUtilTestCase
31 log.info = self._log
support.py 32 self._old_log = log.Log._log
33 log.Log._log = self._log
38 log.Log._log = self._old_log
41 def _log(self, level, msg, args): member in class:LoggingSilencer
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_file_util.py 13 def _log(self, msg, *args): member in class:FileUtilTestCase
23 log.info = self._log
test_dir_util.py 17 def _log(self, msg, *args): member in class:DirUtilTestCase
31 log.info = self._log
support.py 32 self._old_log = log.Log._log
33 log.Log._log = self._log
38 log.Log._log = self._old_log
41 def _log(self, level, msg, args): member in class:LoggingSilencer
  /external/python/cpython2/Lib/distutils/tests/
test_dir_util.py 17 def _log(self, msg, *args): member in class:DirUtilTestCase
31 log.info = self._log
test_file_util.py 18 def _log(self, msg, *args): member in class:FileUtilTestCase
28 log.info = self._log
support.py 32 self._old_log = log.Log._log
33 log.Log._log = self._log
38 log.Log._log = self._old_log
41 def _log(self, level, msg, args): member in class:LoggingSilencer
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
log.py 19 def _log(self, level, msg, args): member in class:Log
34 self._log(level, msg, args)
37 self._log(DEBUG, msg, args)
40 self._log(INFO, msg, args)
43 self._log(WARN, msg, args)
46 self._log(ERROR, msg, args)
49 self._log(FATAL, msg, args)
  /external/python/cpython2/Lib/distutils/
log.py 19 def _log(self, level, msg, args): member in class:Log
34 self._log(level, msg, args)
37 self._log(DEBUG, msg, args)
40 self._log(INFO, msg, args)
43 self._log(WARN, msg, args)
46 self._log(ERROR, msg, args)
49 self._log(FATAL, msg, args)
  /external/python/cpython3/Lib/distutils/
log.py 19 def _log(self, level, msg, args): member in class:Log
38 self._log(level, msg, args)
41 self._log(DEBUG, msg, args)
44 self._log(INFO, msg, args)
47 self._log(WARN, msg, args)
50 self._log(ERROR, msg, args)
53 self._log(FATAL, msg, args)
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
log.py 19 def _log(self, level, msg, args): member in class:Log
34 self._log(level, msg, args)
37 self._log(DEBUG, msg, args)
40 self._log(INFO, msg, args)
43 self._log(WARN, msg, args)
46 self._log(ERROR, msg, args)
49 self._log(FATAL, msg, args)
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
log.py 19 def _log(self, level, msg, args): member in class:Log
34 self._log(level, msg, args)
37 self._log(DEBUG, msg, args)
40 self._log(INFO, msg, args)
43 self._log(WARN, msg, args)
46 self._log(ERROR, msg, args)
49 self._log(FATAL, msg, args)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
log.py 19 def _log(self, level, msg, args): member in class:Log
34 self._log(level, msg, args)
37 self._log(DEBUG, msg, args)
40 self._log(INFO, msg, args)
43 self._log(WARN, msg, args)
46 self._log(ERROR, msg, args)
49 self._log(FATAL, msg, args)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
log.py 19 def _log(self, level, msg, args): member in class:Log
34 self._log(level, msg, args)
37 self._log(DEBUG, msg, args)
40 self._log(INFO, msg, args)
43 self._log(WARN, msg, args)
46 self._log(ERROR, msg, args)
49 self._log(FATAL, msg, args)
  /external/slf4j/slf4j-android/src/main/java/org/slf4j/impl/
AndroidLoggerAdapter.java 533 _log(priority, ft.getMessage(), ft.getThrowable()); method
539 _log(priority, message, throwable); method
547 private void _log(int priority, String message, Throwable throwable) { method in class:AndroidLoggerAdapter
  /packages/services/Car/tools/emulator/
vhal_emulator_test.py 48 _log = 0 # Logger module variable in class:VhalTest
100 self._log.error("generateTestValue: valType=0x%X is not handled", valType)
108 self._log.error("getValueFromMsg: Received invalid value")
129 self._log.error("getValueFromMsg: valType=0x%X is not handled", valType)
132 self._log.error("getValueFromMsg: Received malformed message: %s", str(rxMsg))
147 self._log.error("getVmsMessageTypeFromMsg: Received invalid message")
158 self._log.error("rxMsg Type expected: 0x%X, received: 0x%X", expectedType, rxMsg.msg_type)
161 self._log.error("rxMsg Status expected: 0x%X, received: 0x%X", expectedStatus, rxMsg.status)
168 self._log.info("Starting testGetConfig...")
170 self._log.debug(" Getting config for propId=0x%X", cfg.prop
    [all...]

Completed in 507 milliseconds

1 2 3