/packages/apps/DeskClock/src/com/android/deskclock/ |
D | LogUtils.kt | 64 class Logger(val logTag: String) { constant in com.android.deskclock.LogUtils.Logger 66 get() = DEBUG || Log.isLoggable(logTag, Log.VERBOSE) 69 get() = DEBUG || Log.isLoggable(logTag, Log.DEBUG) 72 get() = DEBUG || Log.isLoggable(logTag, Log.INFO) 75 get() = DEBUG || Log.isLoggable(logTag, Log.WARN) 78 get() = DEBUG || Log.isLoggable(logTag, Log.ERROR) 81 get() = DEBUG || Log.isLoggable(logTag, Log.ASSERT) 85 Log.v(logTag, if (args.isEmpty() || args[0] == null) { in v() 95 Log.d(logTag, if (args.isEmpty() || args[0] == null) { in d() 105 Log.i(logTag, if (args.isEmpty() || args[0] == null) { in i() [all …]
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/database/ |
D | MoreDatabaseUtils.java | 84 public static final void dumpCursor(String logTag, String name, Cursor c) { in dumpCursor() argument 85 Log.d(logTag, "Dumping cursor " + name + " containing " + c.getCount() + " rows"); in dumpCursor() 93 Log.d(logTag, sb.toString()); in dumpCursor() 108 Log.d(logTag, sb.toString()); in dumpCursor()
|
/packages/modules/NeuralNetworks/runtime/test/fuzzing/ |
D | RandomGraphGeneratorUtils.h | 41 #define NN_FUZZER_LOG_WRITE_FATAL_TO_SYSLOG(logTag) \ argument 42 LoggerStream::writeAbortMessageToSystemLog(logTag) 106 static void writeAbortMessageToSystemLog(const std::string& logTag) { in writeAbortMessageToSystemLog() argument 108 LoggerStream::mLogTag = logTag; in writeAbortMessageToSystemLog()
|
/packages/modules/Connectivity/framework/src/android/net/ |
D | NetworkAgent.java | 417 public NetworkAgent(@NonNull Context context, @NonNull Looper looper, @NonNull String logTag, in NetworkAgent() argument 420 this(context, looper, logTag, nc, lp, in NetworkAgent() 436 public NetworkAgent(@NonNull Context context, @NonNull Looper looper, @NonNull String logTag, in NetworkAgent() argument 440 this(looper, context, logTag, nc, lp, score, config, in NetworkAgent() 465 private NetworkAgent(@NonNull Looper looper, @NonNull Context context, @NonNull String logTag, in NetworkAgent() argument 470 LOG_TAG = logTag; in NetworkAgent()
|
/packages/apps/Settings/tests/componenttests/src/com/android/settings/testutils/ |
D | AdbUtils.java | 31 public static boolean checkStringInAdbCommandOutput(String logTag, String command, in checkStringInAdbCommandOutput() argument 45 Log.d(logTag, line); in checkStringInAdbCommandOutput()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/aware/ |
D | WifiAwareDataPathStateManager.java | 1103 WifiAwareNetworkAgent(Looper looper, Context context, String logTag, in WifiAwareNetworkAgent() argument 1107 super(context, looper, logTag, nc, lp, score, config, provider); in WifiAwareNetworkAgent()
|
/packages/modules/Connectivity/tests/unit/java/com/android/server/ |
D | ConnectivityServiceTest.java | 1165 public MockNetworkFactory(Looper looper, Context context, String logTag, in MockNetworkFactory() argument 1167 super(looper, context, logTag, filter); in MockNetworkFactory()
|