HomeSort by relevance Sort by last modified time
    Searched refs:logs (Results 51 - 75 of 261) sorted by null

1 23 4 5 6 7 8 91011

  /packages/apps/Dialer/java/com/android/dialer/persistentlog/
PersistentLogFileHandler.java 47 * files exceeds {@code fileCountLimit} the oldest ones will be deleted. The logs are stored in the
49 * logs will be stored under /cache_dir/persistent_log/{@code subfolder}, so multiple independent
50 * logs can be created.
112 void writeLogs(List<byte[]> logs) throws IOException {
119 for (byte[] log : logs) {
173 List<byte[]> logs = new ArrayList<>(); local
177 logs.add(log);
181 LogUtil.e("PersistentLogFileHandler.getLogs", "logs corrupted, deleting", e);
185 return logs;
PersistentLogger.java 39 * Logs data that is persisted across app termination and device reboot. The logs are stored as
42 * delay before the logs are committed to disk to avoid excessive IO. If the app is terminated
43 * before the logs are committed it will be lost. {@link
47 * <p>{@link #logText(String, String)} should be used to log ad-hoc text logs. TODO(twyen): switch
159 List<byte[]> logs; local
161 logs = readLogs();
166 for (byte[] log : logs) {
  /cts/hostsidetests/os/src/android/os/cts/
ProcfsHostTests.java 164 String logs = local
168 Scanner in = new Scanner(logs);
181 "Test app PID not captured. results = \"" + results + "\"; logs = \"" + logs + "\"",
OsHostTests.java 112 String logs = mDevice.executeAdbCommand("logcat", "-v", "brief", "-d"); local
115 Scanner scanner = new Scanner(logs);
  /external/autotest/server/cros/chaos_lib/
chaos_analyzer.py 177 Logs the provided string to the output file.
219 Starts the analysis of the Chaos test logs and packet capture.
270 # By default the script parses all the logs places under the current
271 # directory and places the analyzed output for each set of logs in their own
273 parser = argparse.ArgumentParser(description='Analyze Chaos logs.')
275 help='analyze only failure logs.')
279 help='process the logs from directory.')
  /frameworks/base/services/core/java/com/android/server/updates/
CertificateTransparencyLogInstallReceiver.java 42 private static final String LOGDIR_PREFIX = "logs-";
53 * create a new directory with the logs and then do an atomic update of the current symlink
96 JSONArray logs = json.getJSONArray("logs"); local
97 for (int i = 0; i < logs.length(); i++) {
98 JSONObject log = logs.getJSONObject(i);
102 throw new IOException("Failed to parse logs", e);
  /external/tensorflow/tensorflow/contrib/summary/
summary_ops_test.py 124 logs = tempfile.mkdtemp()
126 logs, max_queue=2, flush_millis=999999,
128 get_total = lambda: len(summary_test_util.events_from_logdir(logs))
137 logs = tempfile.mkdtemp()
139 logs, max_queue=999999, flush_millis=999999,
141 get_total = lambda: len(summary_test_util.events_from_logdir(logs))
  /external/protobuf/jenkins/
pull_request_in_docker.sh 24 LOG_OUTPUT_DIR=$OUTPUT_DIR/logs
32 # $DIR/logs/1/cpp/stdout
33 # $DIR/logs/1/cpp/stderr
34 # $DIR/logs/1/csharp/stdout
35 # $DIR/logs/1/csharp/stderr
36 # $DIR/logs/1/java_jdk7/stdout
37 # $DIR/logs/1/java_jdk7/stderr
  /external/autotest/client/site_tests/firmware_TouchMTB/tools/
host_replay.sh 10 # and to generate new logs,
11 # (2) remove the old logs in tests/logs/ for every board on the host, and
12 # (3) scp the new logs from the machine into the proper board on the host.
78 # These new logs are supposed to be checked in to gerrit so that the
88 # Scp the new logs from the machine to the host.
106 boards=`find tests/logs/* -maxdepth 0 -type d`
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
CTLogStoreImpl.java 130 // If the updateable logs dont exist then use the fallback logs.
151 CTLogInfo[] logs = new CTLogInfo[KnownLogs.LOG_COUNT]; local
156 logs[i] = new CTLogInfo(key,
164 defaultFallbackLogs = logs;
165 return logs;
  /external/linux-kselftest/tools/testing/selftests/pstore/
common_tests 60 LOG_DIR=$TOP_DIR/logs/`date +%Y%m%d-%H%M%S`_${UUID}/
63 # Preparing logs
  /external/python/cpython2/Lib/distutils/tests/
support.py 34 self.logs = []
44 self.logs.append((level, msg, args))
52 in self.logs if level in levels]
55 self.logs = []
  /external/python/cpython3/Lib/distutils/tests/
support.py 25 self.logs = []
38 self.logs.append((level, msg, args))
44 in self.logs if level in levels]
47 self.logs = []
  /external/tensorflow/tensorflow/tools/ci_build/builds/
integration_tests.sh 45 LOGS_DIR=pip_test/integration_tests/logs
77 mkdir -p "${LOGS_DIR}" || die "Failed to create logs directory"
  /prebuilts/go/darwin-x86/src/log/syslog/
syslog.go 191 // Emerg logs a message with severity LOG_EMERG, ignoring the severity
198 // Alert logs a message with severity LOG_ALERT, ignoring the severity
205 // Crit logs a message with severity LOG_CRIT, ignoring the severity
212 // Err logs a message with severity LOG_ERR, ignoring the severity
219 // Warning logs a message with severity LOG_WARNING, ignoring the
226 // Notice logs a message with severity LOG_NOTICE, ignoring the
233 // Info logs a message with severity LOG_INFO, ignoring the severity
240 // Debug logs a message with severity LOG_DEBUG, ignoring the severity
  /prebuilts/go/linux-x86/src/log/syslog/
syslog.go 191 // Emerg logs a message with severity LOG_EMERG, ignoring the severity
198 // Alert logs a message with severity LOG_ALERT, ignoring the severity
205 // Crit logs a message with severity LOG_CRIT, ignoring the severity
212 // Err logs a message with severity LOG_ERR, ignoring the severity
219 // Warning logs a message with severity LOG_WARNING, ignoring the
226 // Notice logs a message with severity LOG_NOTICE, ignoring the
233 // Info logs a message with severity LOG_INFO, ignoring the severity
240 // Debug logs a message with severity LOG_DEBUG, ignoring the severity
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
support.py 34 self.logs = []
44 self.logs.append((level, msg, args))
52 in self.logs if level in levels]
55 self.logs = []
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
support.py 34 self.logs = []
44 self.logs.append((level, msg, args))
52 in self.logs if level in levels]
55 self.logs = []
  /prebuilts/sdk/tools/
jack-diagnose 37 JACK_LOGS_DIR="$JACK_HOME"/logs
  /tools/test/connectivity/acts/framework/acts/controllers/relay_lib/
sain_smart_8_channel_usb_relay_board.py 61 "logpath": "/tmp/logs",
  /external/okhttp/okhttp-logging-interceptor/src/test/java/com/squareup/okhttp/logging/
HttpLoggingInterceptorTest.java 584 private final List<String> logs = new ArrayList<>(); field in class:HttpLoggingInterceptorTest.LogRecorder
588 assertTrue("No more messages found", index < logs.size());
589 String actual = logs.get(index++);
595 assertTrue("No more messages found", index < logs.size());
596 String actual = logs.get(index++);
603 assertTrue("More messages remain: " + logs.subList(index, logs.size()), index == logs.size());
607 logs.add(message);
  /cts/hostsidetests/multiuser/src/android/host/multiuser/
CreateUsersNoAppCrashesTest.java 121 String logs = getDevice().executeAdbCommand("logcat", "-v", "brief", "-d", local
123 Scanner in = new Scanner(logs);
129 // Parse all logs in case crashes occur as a result of onUserChange callbacks
  /cts/hostsidetests/tv/src/com/android/cts/tv/
TvInputManagerHostTest.java 111 String logs = device.executeAdbCommand( local
113 Scanner in = new Scanner(logs);
  /external/autotest/site_utils/bootperf-bin/
bootperf 78 RUNDIR_ALL_RESULTS=logs
115 autotest logs are preserved with the test results.
172 error "and see $TMP_RESULTS for full test logs and output."
  /external/ltp/testcases/realtime/
run.sh 48 clean all logs deleted, make clean
115 rm -rf logs/*
152 # This will clobber logs, out files, .o's etc

Completed in 719 milliseconds

1 23 4 5 6 7 8 91011