/aosp12/packages/services/Telephony/src/com/android/phone/vvm/ |
H A D | VvmLog.java | 35 public static void log(String tag, String log) { in log() method in VvmLog 46 public static int e(String tag, String log) { in e() 51 public static int e(String tag, String log, Throwable e) { in e() 56 public static int w(String tag, String log) { in w() 61 public static int w(String tag, String log, Throwable e) { in w() 66 public static int i(String tag, String log) { in i() 71 public static int i(String tag, String log, Throwable e) { in i() 76 public static int d(String tag, String log) { in d() 81 public static int d(String tag, String log, Throwable e) { in d() 86 public static int v(String tag, String log) { in v() [all …]
|
/aosp12/packages/apps/Dialer/java/com/android/voicemail/impl/ |
H A D | VvmLog.java | 35 public static void log(String tag, String log) { in log() argument 46 public static void e(String tag, String log) { in e() 56 public static void w(String tag, String log) { in w() 66 public static void i(String tag, String log) { in i() 76 public static void d(String tag, String log) { in d() 86 public static void v(String tag, String log) { in v() 96 public static void wtf(String tag, String log) { in wtf() 119 private final Deque<String> log; field in VvmLog.LocalLog 127 public void log(String msg) { in log() method in VvmLog.LocalLog 159 private final LocalLog log; field in VvmLog.LocalLog.ReadOnlyLocalLog [all …]
|
/aosp12/frameworks/base/core/tests/mockingcoretests/src/android/util/ |
H A D | TimingsTraceLogTest.java | 76 TimingsTraceLog log = new TimingsTraceLog(TAG, TRACE_TAG_APP); in testDifferentThreads() local 106 TimingsTraceLog log = new TimingsTraceLog("TEST", Trace.TRACE_TAG_APP); in testGetUnfinishedTracesForDebug() local 124 TimingsTraceLog log = new TimingsTraceLog(TAG, TRACE_TAG_APP, 10); in testLogDuration() local 131 TimingsTraceLog log = new TimingsTraceLog(TAG, TRACE_TAG_APP, 10); in testOneLevel() local 142 TimingsTraceLog log = new TimingsTraceLog(TAG, Trace.TRACE_TAG_APP, 10); in testMultipleLevels() local 158 TimingsTraceLog log = new TimingsTraceLog(TAG, Trace.TRACE_TAG_APP, 2); in testTooManyLevels() local 184 TimingsTraceLog log = new TimingsTraceLog(TAG, TRACE_TAG_APP); in testEndNoBegin() local
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/metrics/ |
H A D | TelephonyMetricsTest.java | 163 TelephonyLog log = buildProto(); in testEventDropped() local 176 TelephonyLog log = buildProto(); in testWriteDataStallEvent() local 190 TelephonyLog log = buildProto(); in testModemRestartEvent() local 221 TelephonyLog log = buildProto(); in testWriteCarrierIdMatchingEventWithInvalidMatchingScore() local 259 TelephonyLog log = buildProto(); in testWriteCarrierIdMatchingEvent() local 295 TelephonyLog log = buildProto(); in testWriteEmergencyNumberUpdateEvent() local 327 TelephonyLog log = buildProto(); in testWriteNetworkCapabilitiesChangedEvent() local 348 TelephonyLog log = buildProto(); in testWriteOnImsCallStart() local 371 TelephonyLog log = buildProto(); in testWriteOnImsCallReceive() local 392 TelephonyLog log = buildProto(); in testWriteImsCallState() local [all …]
|
/aosp12/system/core/debuggerd/libdebuggerd/ |
H A D | backtrace.cpp | 46 static void dump_process_header(log_t* log, pid_t pid, in dump_process_header() 56 static void dump_process_footer(log_t* log, pid_t pid) { in dump_process_footer() 62 log_t log; in dump_backtrace_thread() local 84 log_t log; in dump_backtrace() local 107 log_t log; in dump_backtrace_header() local 116 log_t log; in dump_backtrace_footer() local
|
H A D | tombstone.cpp | 78 static void dump_header_info(log_t* log) { in dump_header_info() 118 static void dump_probable_cause(log_t* log, const siginfo_t* si, unwindstack::Maps* maps, in dump_probable_cause() 153 static void dump_signal_info(log_t* log, const ThreadInfo& thread_info, in dump_signal_info() 181 static void dump_thread_info(log_t* log, const ThreadInfo& thread_info) { in dump_thread_info() 238 static void dump_all_maps(log_t* log, unwindstack::Unwinder* unwinder, uint64_t addr) { in dump_all_maps() 315 static void print_register_row(log_t* log, in print_register_row() 327 void dump_registers(log_t* log, unwindstack::Regs* regs) { in dump_registers() 366 void dump_memory_and_code(log_t* log, unwindstack::Maps* maps, unwindstack::Memory* memory, in dump_memory_and_code() 552 static void dump_logs(log_t* log, pid_t pid, unsigned int tail) { in dump_logs() 568 log_t log; in engrave_tombstone_ucontext() local [all …]
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/power/ |
H A D | WakeLockLogTest.java | 42 WakeLockLog log = new WakeLockLog(injectorSpy); in testAddTwoItems() local 66 WakeLockLog log = new WakeLockLog(injectorSpy); in testAddTwoItemsWithTimeReset() local 88 WakeLockLog log = new WakeLockLog(injectorSpy); in testAddTwoItemsWithTagOverwrite() local 110 WakeLockLog log = new WakeLockLog(injectorSpy); in testAddFourItemsWithRingBufferOverflow() local 138 WakeLockLog log = new WakeLockLog(injectorSpy); in testAddItemWithBadTag() local 156 WakeLockLog log = new WakeLockLog(injectorSpy); in testAddItemWithReducedTagName() local 175 WakeLockLog log = new WakeLockLog(injectorSpy); in testAddAcquireAndReleaseWithRepeatTagName() local 197 WakeLockLog log = new WakeLockLog(injectorSpy); in testAddAcquireAndReleaseWithTimeTravel() local 214 private String dumpLog(WakeLockLog log, boolean includeTagDb) { in dumpLog()
|
/aosp12/frameworks/base/core/tests/coretests/src/android/util/ |
H A D | LruCacheTest.java | 171 List<String> log = new ArrayList<String>(); in testEntryEvictedWhenFull() local 177 assertEquals(Collections.<String>emptyList(), log); in testEntryEvictedWhenFull() local 188 List<String> log = new ArrayList<String>(); in testPutCauseEviction() local 303 List<String> log = new ArrayList<String>(); in testEvictAll() local 356 List<String> log = new ArrayList<String>(); in testRemoveCallsEntryRemoved() local 364 List<String> log = new ArrayList<String>(); in testPutCallsEntryRemoved() local 405 final List<String> log = new ArrayList<String>(); in testCreateWithConcurrentPut() local 427 final List<String> log = new ArrayList<String>(); in testCreateWithConcurrentCreate() local
|
/aosp12/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/ |
H A D | TetheringDependencies.java | 55 public OffloadHardwareInterface getOffloadHardwareInterface(Handler h, SharedLog log) { in getOffloadHardwareInterface() 64 @NonNull SharedLog log, @NonNull OffloadController.Dependencies deps) { in getOffloadController() 76 SharedLog log, int what) { in getUpstreamNetworkMonitor() 84 ArrayList<IpServer> notifyList, SharedLog log) { in getIPv6TetheringCoordinator() 103 public EntitlementManager getEntitlementManager(Context ctx, Handler h, SharedLog log, in getEntitlementManager() 111 public TetheringConfiguration generateTetheringConfiguration(Context ctx, SharedLog log, in generateTetheringConfiguration()
|
/aosp12/frameworks/base/core/java/android/net/metrics/ |
H A D | IpConnectivityLog.java | 94 public boolean log(@NonNull ConnectivityMetricsEvent ev) { in log() method in IpConnectivityLog 117 public boolean log(long timestamp, @NonNull Event data) { in log() method in IpConnectivityLog 129 public boolean log(@NonNull String ifname, @NonNull Event data) { in log() method in IpConnectivityLog 143 public boolean log(@NonNull Network network, @NonNull int[] transports, @NonNull Event data) { in log() method in IpConnectivityLog 155 public boolean log(int netid, @NonNull int[] transports, @NonNull Event data) { in log() method in IpConnectivityLog 167 public boolean log(@NonNull Event data) { in log() method in IpConnectivityLog
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/connectivity/ |
H A D | CallbackHandler.java | 121 String log = new StringBuilder() in setWifiIndicators() local 135 String log = new StringBuilder() in setMobileDataIndicators() local 158 String log = new StringBuilder() in setConnectivityStatus() local 181 String log = new StringBuilder() in setCallIndicator() local 202 String log = new StringBuilder() in setSubs() local 228 String log = new StringBuilder() in setEthernetIndicators() local 245 String log = new StringBuilder() in setIsAirplaneMode() local
|
/aosp12/packages/modules/NeuralNetworks/runtime/test/generated/spec_V1_2/ |
H A D | log.example.cpp | 7 namespace generated_tests::log { namespace 54 namespace generated_tests::log { namespace 101 namespace generated_tests::log { namespace
|
/aosp12/frameworks/base/core/tests/coretests/src/android/metrics/ |
H A D | MetricsReaderTest.java | 80 LogMaker log = mReader.next(); in testNonBlockingRead() local 93 LogMaker log = mReader.next(); in testReset() local 100 LogMaker log = mReader.next(); in testPidUid() local 116 LogMaker log = mReader.next(); in testWriteCheckpoint() local
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/homepage/contextualcards/logging/ |
H A D | ContextualCardLogUtilsTest.java | 51 final String log = ContextualCardLogUtils.buildCardDismissLog(TEST_CARD); in parseCardDismissLog_isValid_returnCorrectData() local 65 final String log = ContextualCardLogUtils.buildCardClickLog(TEST_CARD, row, target, in parseCardClickLog_isValid_returnCorrectData() local 89 final String log = ContextualCardLogUtils.buildCardListLog(cardList); in parseCardClickList_isValid_returnCorrectData() local
|
/aosp12/frameworks/av/services/mediaresourcemanager/ |
H A D | ServiceLog.cpp | 33 void ServiceLog::add(const String8 &log) { in add() 44 for (const auto& log : mLogs) { in toString() local 55 void ServiceLog::addLine(const char *log, const char *prefix, String8 *result) const { in addLine() argument
|
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/rtt/ |
H A D | RttMetricsTest.java | 76 WifiMetricsProto.WifiRttLog log; in testRecordRequest() local 204 WifiMetricsProto.WifiRttLog log; in testRecordResult() local 319 WifiMetricsProto.WifiRttLog log; in testRecordMissingResults() local 370 WifiMetricsProto.WifiRttLog log; in testRecordNullArrayResults() local 400 WifiMetricsProto.WifiRttLog log; in testRecordResultsStatuses() local 480 WifiMetricsProto.WifiRttLog log; in testRecordOverallStatus() local 551 private void checkMainStats(String msgPrefix, WifiMetricsProto.WifiRttLog log, int numRequests, in checkMainStats() 566 private void checkPeerStats(String msgPrefix, WifiMetricsProto.WifiRttLog.RttToPeerLog log, in checkPeerStats()
|
/aosp12/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/ |
H A D | Main.java | 73 Log log = new Log(); in main() local 95 private static int createLayoutLib(String osDestJar, ArrayList<String> osJarPath, Log log) { in createLayoutLib() 200 private static int listDeps(ArrayList<String> osJarPath, Log log) { in listDeps() 223 private static boolean processArgs(Log log, String[] args, in processArgs()
|
/aosp12/hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/ |
H A D | loc_eng.cpp | 336 inline void LocEngGetZpp::log() const in log() function in LocEngGetZpp 363 inline virtual void log() const { in log() function 1038 virtual void log() const { in log() function 1303 virtual void log() const { in log() function 1370 inline virtual void log() const in log() function 1397 inline virtual void log() const in log() function 1421 inline virtual void log() const in log() function 1533 inline void LocEngUp::log() const { in log() function in LocEngUp 1554 virtual void log() const { in log() function 1623 virtual void log() const { in log() function [all …]
|
/aosp12/hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/ |
H A D | loc_eng.cpp | 336 inline void LocEngGetZpp::log() const in log() function in LocEngGetZpp 363 inline virtual void log() const { in log() function 1039 virtual void log() const { in log() function 1304 virtual void log() const { in log() function 1371 inline virtual void log() const in log() function 1398 inline virtual void log() const in log() function 1422 inline virtual void log() const in log() function 1534 inline void LocEngUp::log() const { in log() function in LocEngUp 1555 virtual void log() const { in log() function 1624 virtual void log() const { in log() function [all …]
|
/aosp12/hardware/qcom/sdm845/gps/msm8909/loc_api/libloc_api_50001/ |
H A D | loc_eng.cpp | 336 inline void LocEngGetZpp::log() const in log() function in LocEngGetZpp 363 inline virtual void log() const { in log() function 1039 virtual void log() const { in log() function 1304 virtual void log() const { in log() function 1371 inline virtual void log() const in log() function 1398 inline virtual void log() const in log() function 1422 inline virtual void log() const in log() function 1534 inline void LocEngUp::log() const { in log() function in LocEngUp 1555 virtual void log() const { in log() function 1624 virtual void log() const { in log() function [all …]
|
/aosp12/hardware/qcom/sdm845/gps/msm8996/loc_api/libloc_api_50001/ |
H A D | loc_eng.cpp | 336 inline void LocEngGetZpp::log() const in log() function in LocEngGetZpp 363 inline virtual void log() const { in log() function 1038 virtual void log() const { in log() function 1303 virtual void log() const { in log() function 1370 inline virtual void log() const in log() function 1397 inline virtual void log() const in log() function 1421 inline virtual void log() const in log() function 1533 inline void LocEngUp::log() const { in log() function in LocEngUp 1554 virtual void log() const { in log() function 1623 virtual void log() const { in log() function [all …]
|
/aosp12/hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/ |
H A D | loc_eng.cpp | 339 inline void LocEngGetZpp::log() const in log() function in LocEngGetZpp 366 inline virtual void log() const { in log() function 391 inline virtual void log() const { in log() function 1041 virtual void log() const { in log() function 1306 virtual void log() const { in log() function 1373 inline virtual void log() const in log() function 1396 inline virtual void log() const in log() function 1508 inline void LocEngUp::log() const { in log() function in LocEngUp 1529 virtual void log() const { in log() function 1598 virtual void log() const { in log() function [all …]
|
/aosp12/hardware/qcom/gps/loc_api/libloc_api_50001/ |
H A D | loc_eng.cpp | 339 inline void LocEngGetZpp::log() const in log() function in LocEngGetZpp 366 inline virtual void log() const { in log() function 391 inline virtual void log() const { in log() function 1040 virtual void log() const { in log() function 1305 virtual void log() const { in log() function 1372 inline virtual void log() const in log() function 1395 inline virtual void log() const in log() function 1507 inline void LocEngUp::log() const { in log() function in LocEngUp 1528 virtual void log() const { in log() function 1597 virtual void log() const { in log() function [all …]
|
/aosp12/hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/ |
H A D | loc_eng.cpp | 336 inline void LocEngGetZpp::log() const in log() function in LocEngGetZpp 385 inline virtual void log() const { in log() function 410 inline virtual void log() const { in log() function 1061 virtual void log() const { in log() function 1316 virtual void log() const { in log() function 1383 inline virtual void log() const in log() function 1406 inline virtual void log() const in log() function 1518 inline void LocEngUp::log() const { in log() function in LocEngUp 1539 virtual void log() const { in log() function 1608 virtual void log() const { in log() function [all …]
|
/aosp12/hardware/qcom/sdm845/gps/loc_api/libloc_api_50001/ |
H A D | loc_eng.cpp | 339 inline void LocEngGetZpp::log() const in log() function in LocEngGetZpp 366 inline virtual void log() const { in log() function 391 inline virtual void log() const { in log() function 1040 virtual void log() const { in log() function 1305 virtual void log() const { in log() function 1372 inline virtual void log() const in log() function 1395 inline virtual void log() const in log() function 1507 inline void LocEngUp::log() const { in log() function in LocEngUp 1528 virtual void log() const { in log() function 1597 virtual void log() const { in log() function [all …]
|