HomeSort by relevance Sort by last modified time
    Searched refs:logs (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/logs/
test_layer1.py 29 self.logs = boto.connect_logs()
32 logs = self.logs
34 response = logs.describe_log_groups(log_group_name_prefix='test')
42 response = logs.test_metric_filter(mfilter, sample)
test_cert_verification.py 30 import boto.logs namespace
34 regions = boto.logs.regions()
  /external/chromium-trace/catapult/dashboard/dashboard/
quick_logger_test.py 19 logs = quick_logger.Get('a_namespace', 'a_log_name')
20 self.assertEqual(len(logs), 1)
21 self.assertEqual(logs[0].message, 'Hello world!')
28 logs = quick_logger.Get('a_namespace', 'a_log_name')
29 self.assertEqual(len(logs), quick_logger._MAX_NUM_RECORD)
36 logs = quick_logger.Get('a_namespace', 'a_log_name')
37 self.assertEqual(len(logs), quick_logger._MAX_NUM_RECORD)
39 self.assertEqual(logs[0].message, str(quick_logger._MAX_NUM_RECORD + 9))
52 logs = quick_logger.Get('a_namespace', 'a_log_name')
53 self.assertEqual(3, len(logs))
    [all...]
get_logs.py 16 """Handles retrieving logs from quick_logger."""
23 """Retrieves logs.
28 log_filter: Regex string to filter logs.
29 log_size: Number of logs to get.
30 after_timestamp: Get the logs after this timestamp.
41 logs = quick_logger.Get(log_namespace, log_name)
42 if logs is None:
49 logs = [l for l in logs if re.match(log_filter, l.message)]
52 logs = [l for l in logs i
    [all...]
bad_bisect_test.py 63 logs = quick_logger.Get('bad_bisect', 'report')
64 self.assertEqual(1, len(logs))
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
TestLogHandler.java 28 private final List<String> logs = new ArrayList<>(); field in class:TestLogHandler
31 logs.add(logRecord.getLevel() + ": " + logRecord.getMessage());
42 while (logs.isEmpty()) {
45 return logs.remove(0);
  /external/parameter-framework/upstream/test/functional-tests/include/
StoreLogger.hpp 63 using Logs = std::vector<Log>;
67 logs.push_back({Log::Level::warning, strLog});
69 void info(const std::string &strLog) override { logs.push_back({Log::Level::info, strLog}); }
71 const Logs &getLogs() const { return logs; }
73 const Logs filter(Log::Level level) const
78 Logs match(const std::string &pattern) const
86 Logs filter(Predicate predicate) const
88 Logs filtered;
89 std::copy_if(logs.begin(), logs.end(), std::back_inserter(filtered), predicate)
93 Logs logs; variable
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/logs/
__init__.py 28 Get all available regions for the CloudWatch Logs service.
33 from boto.logs.layer1 import CloudWatchLogsConnection
34 return get_regions('logs', connection_cls=CloudWatchLogsConnection)
  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
MonkeyTest.java 40 String logs = mDevice.executeAdbCommand( local
43 Scanner s = new Scanner(logs);
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostTest.java 25 * Test to check the APK logs to Logcat.
66 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S"); local
69 Scanner in = new Scanner(logs);
  /external/autotest/client/site_tests/platform_CheckErrorsInLog/
platform_CheckErrorsInLog.py 17 Check system logs for errors.
45 logs = ['kern.log', 'syslog', 'dmesg']
47 for log in logs:
55 raise error.TestFail('%d failures found in logs' % errors)
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
SecurityLogMonitor.java 37 * A class managing access to the security logs. It maintains an internal buffer of pending
38 * logs to be retrieved by the device owner. The logs are retrieved from the logd daemon via
39 * JNI binding, and kept until device owner has retrieved to prevent loss of logs. Access to
40 * the logs from the device owner is rate-limited, and device owner is notified when the logs
62 * The maximum number of entries we should store before dropping earlier logs, to limit the
71 * Internally how often should the monitor poll the security logs from logd.
123 * Returns the new batch of logs since the last call to this method. Returns null if
148 ArrayList<SecurityEvent> logs = new ArrayList<SecurityEvent>() local
    [all...]
  /external/apache-http/src/org/apache/commons/logging/
LogSource.java 66 static protected Hashtable logs = new Hashtable(); field in class:LogSource
200 Log log = (Log) (logs.get(name));
203 logs.put(name, log);
259 * all logs known to me.
262 return (String[]) (logs.keySet().toArray(new String[logs.size()]));
  /external/autotest/client/site_tests/graphics_dEQP/
process_logs.py 56 logs = []
60 # DEBUG logs have more information than INFO logs, especially for hasty.
61 name = os.path.join('logs', job_id + '_graphics_dEQP.DEBUG')
62 logs.append(Logfile(job_id, name, gs_path))
63 for log in logs:
65 return logs
69 logs = []
70 for name in glob.glob(os.path.join('logs', '*_graphics_dEQP.INFO')):
72 logs.append(Logfile(job_id, name, name)
254 logs = get_logs_from_gs(gs_path) variable
257 logs = get_local_logs() variable
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/logs/
test_layer1.py 3 from boto.logs.layer1 import CloudWatchLogsConnection
  /external/webrtc/webrtc/test/
test_suite.cc 21 DEFINE_bool(logs, false, "print logs to stderr");
  /cts/hostsidetests/abioverride/src/android/abioverride/cts/
AbiOverrideTest.java 92 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S"); local
95 Scanner in = new Scanner(logs);
103 // Verify that TEST_STRING is actually found in logs.
104 assertTrue("No result found in logs", testString.startsWith(TEST_STRING));
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
SecurityLoggingTest.java 41 * Test: retrieving security logs can only be done if there's one user on the device.
53 * Test: retrieving previous security logs can only be done if there's one user on the device.
75 * Test: retrieving security logs should be rate limited - subsequent attempts should return
79 List<SecurityEvent> logs = mDevicePolicyManager.retrieveSecurityLogs(getWho()); local
80 // if logs is null it means that that attempt was rate limited => test PASS
81 if (logs != null) {
  /cts/hostsidetests/sustainedperf/src/android/SustainedPerformance/cts/
SustainedPerformanceHostTest.java 109 public void analyzeResults(String logs, boolean mode) {
115 Scanner in = new Scanner(logs);
175 String logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", TEST_CLASS + ":I", "*:S"); local
177 Scanner in = new Scanner(logs);
210 logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S");
211 analyzeResults(logs, false);
232 logs = device.executeAdbCommand("logcat", "-v", "brief", "-d", CLASS + ":I", "*:S");
233 analyzeResults(logs, true);
  /cts/hostsidetests/trustedvoice/src/android/trustedvoice/cts/
TrustedVoiceHostTest.java 26 * Test to check the APK logs to Logcat.
103 String logs = getDevice().executeAdbCommand( local
106 in = new Scanner(logs);
  /external/parameter-framework/upstream/parameter/log/include/log/
LogWrapper.h 99 * @param[in] logs list of information to log
101 LogWrapper &operator<<(const std::list<std::string> &logs)
104 std::string formatedLogs = utility::asString(logs, separator);
  /external/autotest/site_utils/
clear.sh 37 sudo rm -rf ${AUTOTEST_DIR}/logs/*
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLog.java 13 private static List<LogItem> logs = new ArrayList<LogItem>(); field in class:ShadowLog
91 logs.add(new LogItem(level, tag, msg, throwable));
113 return logs;
117 logs.clear();
  /cts/hostsidetests/systemui/src/android/host/systemui/
BaseTileServiceTest.java 38 // Time between checks for logs we expect.
118 String logs = getDevice().executeAdbCommand("logcat", "-v", "brief", "-d", mService + ":I", local
120 return logs.contains(str);
  /external/autotest/contrib/
run-stable-update 9 LOGDIR=logs/stable-version

Completed in 1426 milliseconds

1 2 3 4 5 6