HomeSort by relevance Sort by last modified time
    Searched refs:logging (Results 126 - 150 of 3267) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/autotest/client/site_tests/platform_KernelVersion/
platform_KernelVersion.py 5 import logging, utils
16 logging.debug(e)
  /external/autotest/client/site_tests/power_StatsCPUIdle/
power_StatsCPUIdle.py 5 import logging, time
22 logging.info('CPUIdle stats in the last %d seconds :\n %s',
  /external/autotest/frontend/
setup_django_environment.py 1 import logging
15 logging.info('Enabling autocommit for %s(%s)',
  /external/autotest/server/site_tests/autotest_SyncCount/
autotest_SyncCount.py 5 import logging
16 logging.info('Using host %s', machine)
  /external/autotest/server/site_tests/firmware_FAFTSetup/
firmware_FAFTSetup.py 5 import logging
38 logging.error("Cannot talk to EC console.")
39 logging.error("Please check there is no terminal opened on EC console.")
75 logging.info("Check EC console is available and test warm reboot")
79 logging.info("Check test image is on USB stick and run recovery boot")
86 logging.info("Check cold boot")
90 logging.info("Check keyboard simulation")
93 logging.info("Skip keyboard simulation on an embedded device")
  /external/autotest/server/site_tests/firmware_TPMKernelVersion/
firmware_TPMKernelVersion.py 5 import logging
24 logging.info('Original dev_boot_usb value: %s',
34 logging.info('Execute %s', command)
36 logging.info('Output %s', output)
44 logging.error("Caught exception: %s", str(e))
52 logging.info('Kernel version: %d', version)
54 logging.info('Kernel datakey version: %d', version)
69 logging.info('tpm_kernver=%s tpm_fwver=%s', kernver, fwver)
  /external/autotest/server/site_tests/firmware_UpdateKernelVersion/
firmware_UpdateKernelVersion.py 5 import logging
27 logging.info(
49 logging.info('Original Kernel Version of KERN-B is %s', actual_ver)
52 logging.info('KERN-B will update to version %s', self._update_version)
60 logging.info("Update Kernel Version.")
65 logging.info("Check kernel version and rollback.")
70 logging.info("Boot with rollback kernel and change boot priority.")
75 logging.info("Check rollback version.")
  /external/autotest/server/site_tests/provision_FactoryImage/
provision_FactoryImage.py 5 import logging
21 logging.info('Installing image from url %s', image_url)
  /external/autotest/server/site_tests/stress_EnrollmentRetainment/
stress_EnrollmentRetainment.py 5 import logging
28 logging.info('Starting loop #%d', i)
  /external/autotest/server/site_tests/telemetry_GpuTests/
telemetry_GpuTests.py 5 import logging
25 logging.debug('Telemetry completed with a status of: %s with output:'
  /external/autotest/server/site_tests/telemetry_ScrollingActionTests/
telemetry_ScrollingActionTests.py 5 import logging
23 logging.debug('Telemetry completed with a status of: %s with output:'
  /external/autotest/site_utils/sponge_lib/
autotest_dynamic_job.py 5 import logging
17 logging.info('Using ACTS task info for %s.', test.testname)
  /external/chromium-trace/catapult/common/py_utils/py_utils/
logging_util_unittest.py 4 import logging
15 logging.fatal('test')
17 # Only assert ends with, since the logging message by default has the date
  /external/libbrillo/brillo/
location_logging.h 10 #include <base/logging.h>
13 logging::LogMessage((from_here).file_name(), (from_here).line_number(), \
  /external/mesa3d/src/egl/main/
egllog.c 32 * Logging facility for debug/info messages.
63 } logging = { variable in typeref:struct:__anon33192
98 * Initialize the logging facility.
106 if (logging.initialized)
119 logging.level = (level >= 0) ? level : FALLBACK_LOG_LEVEL;
120 logging.initialized = EGL_TRUE;
145 if (!logging.initialized)
147 if (level > logging.level || level < 0)
150 mtx_lock(&logging.mutex);
160 mtx_unlock(&logging.mutex)
    [all...]
  /external/slf4j/log4j-over-slf4j/src/test/java/org/dummy/
ListHandler.java 29 import java.util.logging.Handler;
30 import java.util.logging.LogRecord;
  /external/tensorflow/tensorflow/python/platform/
logging_test.py 21 from tensorflow.python.platform import tf_logging as logging
27 # Just check that logging works without raising an exception.
28 logging.error("test log message")
  /external/autotest/client/common_lib/
barrier.py 1 import sys, socket, errno, logging
166 logging.info("tag=%s port=%d timeout=%r",
188 logging.error(error)
194 logging.info("seconds remaining: %d", timeout)
210 logging.warning("Ignoring invalid data from %s: %r",
216 logging.info("new client tag=%s, name=%s", tag, name)
224 logging.warning("client arriving for the wrong barrier: %s != %s",
231 logging.warning("duplicate client")
245 logging.warning("client handshake timeout: (%s:%d)",
250 logging.info("client now waiting: %s (%s:%d)"
    [all...]
smogcheck_util.py 7 import logging, subprocess, time
30 logging.debug('runInSubprocess args = %r; rc_list = %r', args, rc_list)
35 logging.error('runInSubprocess %s: out=%r, err=%r', args[0], out, err)
54 logging.info('i2c-dev disabled. Enabling it with modprobe')
59 logging.info('i2c-dev ready to go:\n%s', out)
74 logging.info('Elapsed time = %d usec', usec)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_logging.py 19 """Test harness for the logging module. Run all tests.
24 import logging
25 import logging.handlers
26 import logging.config
53 """Base class for logging tests."""
60 """Setup the default logging stream to an internal StringIO instance,
62 logger_dict = logging.getLogger().manager.loggerDict
63 logging._acquireLock()
65 self.saved_handlers = logging._handlers.copy()
66 self.saved_handler_list = logging._handlerList[:]
    [all...]
  /external/autotest/client/cros/image_comparison/
upload_on_fail_comparer.py 5 import logging
65 logging.debug('Using primary comparer..')
72 logging.debug('Primary comparison complete. Diff pixels = %d', diffpx)
78 logging.debug('Threshold diff pixels is %d', self.threshold)
79 logging.debug('Diff pxls > threshold. Using remote comparer.')
90 logging.debug('Secondary comparison complete. Diff pixels = %d',
  /external/autotest/client/profilers/screenshot/
screenshot.py 10 import logging
46 logging.info("screenshot thread starting")
59 logging.debug("Taking screenshot")
68 logging.info('screenshot failed. code: %d, error: %s ',
80 logging.info("Stopping screenshot thread")
89 logging.info("screenshot thread stopped")
  /external/autotest/client/site_tests/display_InternalDisplayRotation/
display_InternalDisplayRotation.py 5 import logging
27 logging.info("Setting standard rotation")
38 logging.info("Internal display ID is %s", self.internal_display_id)
41 logging.info("Rotation before test starts is %d",
44 logging.info("Rotation to be set %d", angle)
51 logging.info("Internal display rotation is set to %s", rotation)
  /external/autotest/client/site_tests/hardware_MemoryZRAMThroughput/
hardware_MemoryZRAMThroughput.py 5 import logging
25 logging.info("test output: %s", out)
52 logging.info("MemTotal: %.0f KB", mem_size)
53 logging.info("SwapTotal: %.0f KB", swap_size)
59 logging.debug('cmd: %s', cmd)
73 logging.debug('cmd: %s', cmd)
  /external/autotest/contrib/
db_optimize.py 14 import logging
64 logging.basicConfig(level=logging.INFO, format=LOGGING_FORMAT)
65 logging.info('Calling: %s', sys.argv)
76 logging.exception(message)
80 logging.info('db_optimize completed.')

Completed in 817 milliseconds

1 2 3 4 56 7 8 91011>>