Home
last modified time | relevance | path

Searched full:log (Results 1 – 25 of 33519) sorted by relevance

12345678910>>...1341

/aosp_15_r20/external/apache-xml/test/tests/exslt-gold/math/
H A Dmath10.out3log of $val =0<br/>log of $val =0.6931471805599453<br/>log of $val =1.0986122886681098<br/>log of …
/aosp_15_r20/tools/test/connectivity/acts_tests/acts_contrib/test_utils/tel/
Dtel_data_utils.py116 def wifi_tethering_cleanup(log, provider, client_list): argument
123 log: log object.
132 set_wifi_to_default(log, client)
134 if provider.droid.wifiIsApEnabled() and not stop_wifi_tethering(log, provider):
135 provider.log.error("Provider stop WiFi tethering failed.")
138 provider.log.error("Provider WiFi tethering is still enabled.")
143 def wifi_tethering_setup_teardown(log, argument
163 log: log object.
184 log.info("--->Start wifi_tethering_setup_teardown<---")
185 log.info("Provider: {}".format(provider.serial))
[all …]
Dtel_phone_setup_utils.py96 def phone_setup_iwlan(log, argument
111 log: Log object.
124 return phone_setup_iwlan_for_subscription(log, ad,
130 def phone_setup_iwlan_for_subscription(log, argument
147 log: Log object.
162 ad.log.error("WFC is not supported, abort test.")
167 log, ad, sub_id, nw_gen, voice_or_data=NETWORK_SERVICE_DATA,
169 ad.log.error("Failed to set to %s data.", nw_gen)
171 toggle_volte_for_subscription(log, ad, sub_id, True)
172 toggle_airplane_mode(log, ad, is_airplane_mode, strict_checking=False)
[all …]
Dtel_dsds_utils.py88 log: tracelogger.TraceLogger,
105 log: Logger object.
132 ads[0].log.info("test_slot: %d, dds_slot: %d", test_slot, dds_slot)
134 log=log,
154 log: tracelogger.TraceLogger,
179 log: Logger object.
213 ads[0].log.info("test_slot: %d, dds_slot: %d", test_slot, dds_slot)
215 log=log,
241 log: tracelogger.TraceLogger,
264 log: Logger object.
[all …]
Dtel_voice_utils.py170 def disconnect_call_by_id(log, ad, call_id): argument
195 ad.log.debug("call_info = %s", call_info)
212 ad.log.info("New call info = %s", sorted(call_info.items()))
216 ad.log.error("New call is not in sysdump telecom")
223 ad.log.info("EmergencyDialer is the current focus window")
229 ad.log.error("Unable to bring up EmergencyDialer")
231 ad.log.info("Make a phone call to %s", callee_number)
236 def get_current_voice_rat(log, ad): argument
243 log, ad, get_outgoing_voice_sub_id(ad))
246 def get_current_voice_rat_for_subscription(log, ad, sub_id): argument
[all …]
/aosp_15_r20/tools/test/connectivity/acts_tests/tests/google/tel/live/
DTelLiveVideoTest.py86 ad.log.error("Video calling is not supported")
106 tasks = [(phone_setup_video, (self.log, ads[0])), (phone_setup_video,
107 (self.log, ads[1]))]
108 if not multithread_func(self.log, tasks):
109 self.log.error("Phone Failed to Set Up Properly.")
113 self.log,
120 self.log.error("Failed to setup+teardown a call")
142 tasks = [(phone_setup_video, (self.log, ads[0])), (phone_setup_video,
143 (self.log, ads[1]))]
144 if not multithread_func(self.log, tasks):
[all …]
DTelLiveVoiceConfTest.py81 self.android_devices[0].log.error(
96 ensure_phones_idle(self.log, self.android_devices)
127 self.log.info("Step1: Call From PhoneA to PhoneB.")
129 self.log,
137 self.log.info("Step2: Call From PhoneC to PhoneA then decline.")
138 if not call_reject(self.log, ads[2], ads[0], reject):
141 if not verify_incall_state(self.log, [ads[0], ads[1]], True):
167 call_ab_id = _three_phone_call_mo_add_mo(self.log,
173 self.log.error("Failed to get call_ab_id")
177 ads[0].log.info("Calls in PhoneA %s", calls)
[all …]
DTelLiveVoiceTest.py130 return is_phone_in_call_not_iwlan(self.log, self.android_devices[0])
133 return is_phone_in_call_iwlan(self.log, self.android_devices[0])
153 if not phone_setup_voice_general(ad.log, ad):
154 ad.log.error("Phone Failed to Set Up Properly for Voice.")
158 ad.log.info("Attempt %d", iteration + 1)
159 if not initiate_call(ad.log, ad, self.call_server_number):
160 ad.log.error("Call Failed to Initiate")
164 ad.log.error("Waiting for Call in Active Failed")
167 if not is_phone_in_call(ad.log, ad):
168 ad.log.error("Call Dropped")
[all …]
/aosp_15_r20/trusty/user/base/tools/
Dtest_manifest_compiler.py25 log = manifest_compiler.Log()
27 data = manifest_compiler.get_string(config_data, "data", constants, log)
29 self.assertTrue(log.error_occurred())
35 log = manifest_compiler.Log()
38 data = manifest_compiler.get_string(config_data, "data", constants, log)
40 self.assertFalse(log.error_occurred())
46 log = manifest_compiler.Log()
48 data = manifest_compiler.get_string(config_data, "data", constants, log)
50 self.assertFalse(log.error_occurred())
56 log = manifest_compiler.Log()
[all …]
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/util/
H A DLogTest.java36 private static final String PROPERTY_TAG = "log.tag.LogTest";
41 Log.wtf(LOG_TAG, "Message"); in testWtf()
42 Log.wtf(LOG_TAG, "Message", new Throwable("Throwable")); in testWtf()
43 Log.wtf(LOG_TAG, new Throwable("Throwable")); in testWtf()
56 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE)); in testIsLoggable()
57 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.DEBUG)); in testIsLoggable()
58 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.INFO)); in testIsLoggable()
59 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.WARN)); in testIsLoggable()
60 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.ERROR)); in testIsLoggable()
61 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.ASSERT)); in testIsLoggable()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/libz-sys/src/zlib/examples/
Dgzlog.c30 Files (log name "foo"):
31 foo.gz -- gzip file with the complete log
36 foo.repairs -- log file for log file recovery operations (not compressed)
83 gain exclusive access to the log files, first a foo.lock file must be
223 - Log the repair with a date stamp in foo.repairs
287 /* internal structure for log information */
289 struct log { struct
292 char *path; /* allocated path, e.g. "/var/log/foo" or "foo" */ argument
348 local int log_lock(struct log *log) in log_lock() argument
353 strcpy(log->end, ".lock"); in log_lock()
[all …]
/aosp_15_r20/external/deqp/framework/qphelper/
H A DqpTestLog.c244 static void qpTestLog_flushFile(qpTestLog *log) in qpTestLog_flushFile() argument
246 DE_ASSERT(log && log->outputFile); in qpTestLog_flushFile()
247 fflush(log->outputFile); in qpTestLog_flushFile()
250 FlushFileBuffers((HANDLE)_get_osfhandle(_fileno(log->outputFile))); in qpTestLog_flushFile()
287 static bool endSession(qpTestLog *log) in endSession() argument
289 DE_ASSERT(log && log->isSessionOpen); in endSession()
292 qpXmlWriter_flush(log->writer); in endSession()
296 fprintf(log->outputFile, "\nRun took %.2f seconds\n", (float)duration / 1000000.0f); in endSession()
299 fprintf(log->outputFile, "\n#endSession\n"); in endSession()
300 qpTestLog_flushFile(log); in endSession()
[all …]
/aosp_15_r20/tools/test/connectivity/acts_tests/acts_contrib/test_utils/bt/
Dbt_carkit_lib.py61 log = None variable in E2eBtCarkitLib
64 def __init__(self, log, target_mac_address=None): argument
65 self.log = log
78 self.log.debug("Failed to connect hsp trying again...")
82 self.log.info("Failed to connect to bonded device...")
86 self.log.error("Failed to reconnect to HSP service...")
88 self.log.info("Connected to HSP service...")
92 outgoing_num = get_phone_number(self.log, callee)
93 if not initiate_call(self.log, caller0, outgoing_num):
94 self.log.error("Failed to initiate call")
[all …]
/aosp_15_r20/frameworks/base/core/java/android/util/
H A DSlog.java26 * API for sending log output to the {@link Log#LOG_ID_SYSTEM} buffer.
30 * @see Log
41 * Logs {@code msg} at {@link Log#VERBOSE} level.
43 * @param tag identifies the source of a log message. It usually represents system service,
45 * @param msg the message to log.
47 * @see Log#v(String, String)
51 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg); in v()
55 * Logs {@code msg} at {@link Log#VERBOSE} level, attaching stack trace of the {@code tr} to
56 * the end of the log statement.
58 * @param tag identifies the source of a log message. It usually represents system service,
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/log/SystemUILogLib/android_common/repackaged-jarjar/kotlinc/
DSystemUILogLib.jar ... .lang.String getTag () public final void log (com.android.systemui.log.core ...
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/log/SystemUILogLib/android_common/kotlin/
DSystemUILogLib.jar ... systemui.log final com.android.systemui.log.LogBuffer$log$2 extends kotlin.jvm
/aosp_15_r20/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/metrics/
DTelephonyMetricsTest.java150 private String convertProtoToBase64String(TelephonyLog log) throws Exception { in convertProtoToBase64String() argument
156 return (String) method.invoke(null, log); in convertProtoToBase64String()
165 TelephonyLog log = buildProto(); in testEventDropped() local
166 assertEquals(1000, log.events.length); in testEventDropped()
167 assertEquals(0, log.callSessions.length); in testEventDropped()
168 assertEquals(0, log.smsSessions.length); in testEventDropped()
169 assertTrue(log.eventsDropped); in testEventDropped()
170 assertEquals(1, log.events[0].dataStallAction); in testEventDropped()
178 TelephonyLog log = buildProto(); in testWriteDataStallEvent() local
180 assertEquals(1, log.events.length); in testWriteDataStallEvent()
[all …]
/aosp_15_r20/external/XNNPACK/src/math/
H A Dexpm1.sollya9 minus_ln2_hi = round(-log(2), single, RN);
10 minus_ln2_lo = round(-log(2) - minus_ln2_hi, single, RN);
11 print("-log(2):hi =", minus_ln2_hi);
12 print("-log(2):lo =", minus_ln2_lo);
15 minus_ln2_o8_hi = round(-log(2)/8, single, RN);
16 minus_ln2_o8_lo = round(-log(2)/8 - minus_ln2_o8_hi, single, RN);
17 print("-log(2):hi / 8 =", minus_ln2_o8_hi);
18 print("-log(2):lo / 8 =", minus_ln2_o8_lo);
20 lb = round(-log(2)/2, single, RN);
21 ub = round(log(2)/2, single, RN);
[all …]
/aosp_15_r20/external/angle/third_party/abseil-cpp/absl/log/
H A Dscoped_mock_log_test.cc16 #include "absl/log/scoped_mock_log.h"
26 #include "absl/log/globals.h"
27 #include "absl/log/internal/test_helpers.h"
28 #include "absl/log/internal/test_matchers.h"
29 #include "absl/log/log.h"
59 absl::ScopedMockLog log; in TEST()
60 log.StartCapturingLogs(); in TEST()
61 log.StartCapturingLogs(); in TEST()
69 absl::ScopedMockLog log; in TEST()
70 log.StopCapturingLogs(); in TEST()
[all …]
/aosp_15_r20/external/abseil-cpp/absl/log/
H A Dscoped_mock_log_test.cc16 #include "absl/log/scoped_mock_log.h"
26 #include "absl/log/globals.h"
27 #include "absl/log/internal/test_helpers.h"
28 #include "absl/log/internal/test_matchers.h"
29 #include "absl/log/log.h"
59 absl::ScopedMockLog log; in TEST()
60 log.StartCapturingLogs(); in TEST()
61 log.StartCapturingLogs(); in TEST()
69 absl::ScopedMockLog log; in TEST()
70 log.StopCapturingLogs(); in TEST()
[all …]
/aosp_15_r20/external/cronet/third_party/abseil-cpp/absl/log/
H A Dscoped_mock_log_test.cc16 #include "absl/log/scoped_mock_log.h"
26 #include "absl/log/globals.h"
27 #include "absl/log/internal/test_helpers.h"
28 #include "absl/log/internal/test_matchers.h"
29 #include "absl/log/log.h"
59 absl::ScopedMockLog log; in TEST()
60 log.StartCapturingLogs(); in TEST()
61 log.StartCapturingLogs(); in TEST()
69 absl::ScopedMockLog log; in TEST()
70 log.StopCapturingLogs(); in TEST()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/log/
Dscoped_mock_log_test.cc16 #include "absl/log/scoped_mock_log.h"
26 #include "absl/log/globals.h"
27 #include "absl/log/internal/test_helpers.h"
28 #include "absl/log/internal/test_matchers.h"
29 #include "absl/log/log.h"
59 absl::ScopedMockLog log; in TEST()
60 log.StartCapturingLogs(); in TEST()
61 log.StartCapturingLogs(); in TEST()
69 absl::ScopedMockLog log; in TEST()
70 log.StopCapturingLogs(); in TEST()
[all …]
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/log/
H A Dscoped_mock_log_test.cc16 #include "absl/log/scoped_mock_log.h"
26 #include "absl/log/globals.h"
27 #include "absl/log/internal/test_helpers.h"
28 #include "absl/log/internal/test_matchers.h"
29 #include "absl/log/log.h"
59 absl::ScopedMockLog log; in TEST()
60 log.StartCapturingLogs(); in TEST()
61 log.StartCapturingLogs(); in TEST()
69 absl::ScopedMockLog log; in TEST()
70 log.StopCapturingLogs(); in TEST()
[all …]
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/log/
H A Dscoped_mock_log_test.cc16 #include "absl/log/scoped_mock_log.h"
26 #include "absl/log/globals.h"
27 #include "absl/log/internal/test_helpers.h"
28 #include "absl/log/internal/test_matchers.h"
29 #include "absl/log/log.h"
59 absl::ScopedMockLog log; in TEST()
60 log.StartCapturingLogs(); in TEST()
61 log.StartCapturingLogs(); in TEST()
69 absl::ScopedMockLog log; in TEST()
70 log.StopCapturingLogs(); in TEST()
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/log/SystemUILogLib/android_common/kotlin_headers/
DSystemUILogLib.jar ... android/systemui/ com/android/systemui/log/ com/android/systemui/log/ConstantStringsLogger ...

12345678910>>...1341