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

1 2

  /external/chromium_org/tools/deep_memory_profiler/
dmprof.py 17 LOGGER = logging.getLogger('dmprof')
64 LOGGER.setLevel(logging.DEBUG)
69 LOGGER.addHandler(handler)
accumulate.py 26 LOGGER = logging.getLogger('dmprof-accumulate')
218 LOGGER.error('A template \'%s\' is not found.' % template_label)
249 LOGGER.setLevel(logging.DEBUG)
254 LOGGER.addHandler(handler)
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
buckets.py 11 LOGGER = logging.getLogger('dmprof')
expand.py 13 LOGGER = logging.getLogger('dmprof')
74 LOGGER.info('total: %d\n' % total)
pprof.py 13 LOGGER = logging.getLogger('dmprof')
upload.py 15 LOGGER = logging.getLogger('dmprof')
74 LOGGER.info("Running: %s", command)
79 LOGGER.error('Error to run gsutil: %s', e)
map.py 14 LOGGER = logging.getLogger('dmprof')
cat.py 15 LOGGER = logging.getLogger('dmprof')
70 LOGGER.error('Inconsistent heap profile dumps.')
75 LOGGER.info('Sorting a dump %s...' % dump.path)
124 LOGGER.info(' Sorting with %s:%s.' % (sorter.world, sorter.name))
176 LOGGER.error('Unrecognized mapping status: %s' % region[0])
policies.py 16 LOGGER = logging.getLogger('dmprof')
78 LOGGER.info(' %s' % dump.path)
81 LOGGER.info(' shared with...')
99 LOGGER.info(' %s (time difference = %f)' %
103 LOGGER.info(' (no match with pid:%d)' % pid)
116 LOGGER.warn('%25s: %12d != %d (%d)' % (
133 LOGGER.warn(' Assuming tc-unused=0 as it is negative: %d (bytes)' %
275 LOGGER.error('Unrecognized mapping status: %s' % value[0])
301 LOGGER.info('Applying a policy %s to...' % label)
346 LOGGER.info('Applying a policy %s to...' % label
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
MetadataManager.java 32 import java.util.logging.Logger;
45 private static final Logger LOGGER = Logger.getLogger(MetadataManager.class.getName());
69 LOGGER.log(Level.WARNING, e.toString());
86 LOGGER.log(Level.WARNING, e.toString());
116 LOGGER.log(Level.WARNING, e.toString());
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
PrefixFileReader.java 27 import java.util.logging.Logger;
35 private static final Logger LOGGER = Logger.getLogger(PrefixFileReader.class.getName());
59 LOGGER.log(Level.WARNING, e.toString());
87 LOGGER.log(Level.WARNING, e.toString());
98 LOGGER.log(Level.WARNING, e.toString());
PhonePrefixMap.java 30 import java.util.logging.Logger;
40 private static final Logger LOGGER = Logger.getLogger(PhonePrefixMap.class.getName());
99 LOGGER.severe(e.getMessage());
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/prefixmapper/
MappingFileProviderTest.java 32 import java.util.logging.Logger;
41 private static final Logger LOGGER = Logger.getLogger(MappingFileProviderTest.class.getName());
71 LOGGER.log(Level.SEVERE, e.getMessage());
  /external/chromium_org/tools/find_runtime_symbols/
prepare_symbol_info.py 26 LOGGER = logging.getLogger('prepare_symbol_info')
45 if LOGGER.getEffectiveLevel() <= logging.DEBUG:
48 LOGGER.debug(line.rstrip())
112 LOGGER.info('Data for profiling will be collected in "%s".' % output_dir_path)
115 LOGGER.warn('Using an empty existing directory "%s".' % output_dir_path)
117 LOGGER.warn('A file or a directory exists at "%s".' % output_dir_path)
119 LOGGER.warn('Using the existing directory "%s".' % output_dir_path)
125 LOGGER.warn('Using a temporary directory "%s".' % output_dir_path)
127 LOGGER.warn('The directory "%s" is not available.' % output_dir_path)
130 LOGGER.info('Creating a new directory "%s".' % output_dir_path
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/lib/
bucket.py 11 LOGGER = logging.getLogger('dmprof')
126 LOGGER.info('Loading bucket files.')
138 LOGGER.info(' %s' % path)
pageframe.py 11 LOGGER = logging.getLogger('dmprof')
106 LOGGER.info('%s%s' % (log_header, path))
146 LOGGER.error('Broken page frame number: %s.' % encoded_pfn)
subcommand.py 17 LOGGER = logging.getLogger('dmprof')
44 LOGGER.info('Assuming %s on device as %s on host' % (device, host))
symbol.py 23 LOGGER = logging.getLogger('dmprof')
60 LOGGER.info('Preparing symbol mapping...')
69 LOGGER.info(' Prepared symbol mapping.')
71 LOGGER.warn(' Using a temporary directory for symbol mapping.')
72 LOGGER.warn(' Delete it by yourself.')
73 LOGGER.warn(' Or, move the directory by yourself to use it later.')
76 LOGGER.warn(' Failed to prepare symbol mapping.')
88 LOGGER.info('Loading symbol mapping...')
157 LOGGER.info('No need to resolve any more addresses.')
161 LOGGER.info('Loading %d unresolved addresses.'
    [all...]
policy.py 11 LOGGER = logging.getLogger('dmprof')
401 LOGGER.info('Loading policy files.')
404 LOGGER.info(' %s: %s' % (label, directory[label]['file']))
dump.py 20 LOGGER = logging.getLogger('dmprof')
168 LOGGER.info('%s%s ...ignored an empty dump.' % (log_header, self._path))
170 LOGGER.error('%s%s ...error %s' % (log_header, self._path, e))
173 LOGGER.info('%s%s (version:%s)' % (log_header, self._path, self._version))
sorter.py 14 LOGGER = logging.getLogger('dmprof')
156 LOGGER.error('The unit id=%s already exists.' % str(unit.unit_id))
341 LOGGER.error('Unknown sorter world type')
363 LOGGER.error('Unknown sorter world type')
448 LOGGER.info('Loading sorters.')
450 LOGGER.info(' Loading a sorter "%s".' % filename)
  /packages/apps/Exchange/src/com/android/exchange/utility/
FileLogger.java 27 private static FileLogger LOGGER = null;
33 LOGGER = new FileLogger();
34 return LOGGER;
67 if (LOGGER == null) {
68 LOGGER = new FileLogger();
69 log("Logger", "\r\n\r\n --- New Log ---");
106 LOGGER = new FileLogger();
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
ExampleNumbersTest.java 30 import java.util.logging.Logger;
37 private static final Logger LOGGER = Logger.getLogger(ExampleNumbersTest.class.getName());
57 LOGGER.log(Level.SEVERE, "Failed validation for " + exampleNumber.toString());
63 LOGGER.log(Level.SEVERE, "Wrong type for " +
66 LOGGER.log(Level.WARNING, "Expected types: ");
68 LOGGER.log(Level.WARNING, type.toString());
151 LOGGER.log(Level.SEVERE, e.toString());
155 LOGGER.log(Level.SEVERE, "Number " + exampleNumber.toString(
    [all...]
  /external/smack/asmack-master/lib/
jstun.jar 
  /packages/apps/ContactsCommon/libs/
geocoder-2.9.jar 

Completed in 3870 milliseconds

1 2