HomeSort by relevance Sort by last modified time
    Searched refs:Log (Results 751 - 775 of 4565) sorted by null

<<31323334353637383940>>

  /cts/hostsidetests/devicepolicy/app/SimpleApp/src/com/android/cts/launcherapps/simpleapp/
SimpleRemoteReceiver.java 22 import android.util.Log;
27 //Log.i("xxx", "SimpleRemoteReceiver: " + intent);
  /cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsJobDurationTests.java 24 import android.util.Log;
62 Log.i(TAG, "Scheduling job");
64 Log.i(TAG, "Waiting for job to finish");
66 Log.e(TAG, String.format("Job didn't finish in %d ms", JOB_TIMEOUT_MS));
  /cts/hostsidetests/securitybulletin/test-apps/launchanywhere/src/com/android/security/cts/launchanywhere/
StartExploit.java 23 import android.util.Log;
43 Log.e(TAG, "Unable to load the class " + exploitName + "! " +
48 Log.e(TAG, "Unable to instantiate the exploit! " + exploitName);
52 Log.e(TAG,
  /cts/hostsidetests/statsd/apps/statsdapp/src/com/android/server/cts/device/statsd/
VideoPlayerActivity.java 24 import android.util.Log;
43 Log.e(TAG, "Intent was null.");
48 Log.i(TAG, "Starting " + action + " from foreground activity.");
59 Log.e(TAG, "Intent had invalid action " + action);
  /cts/suite/audio_quality/test/
AudioRecordPlayLocalTest.cpp 19 #include <Log.h>
  /cts/tests/autofillservice/src/android/autofillservice/cts/
PasswordOnlyActivity.java 19 import android.util.Log;
49 Log.v(TAG, welcomeMsg);
53 Log.v(TAG, "Setting autofill id to " + id);
72 Log.i(TAG, "Login as " + mUsername + "/" + password);
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
ScriptYuvToRgb.java 25 import android.util.Log;
33 private static final boolean VERBOSE = Log.isLoggable(TAG, Log.VERBOSE);
57 if (VERBOSE) { Log.v(TAG, "executeUnchecked - forEach done"); }
  /cts/tests/tests/assist/src/android/assist/cts/
FocusChangeTest.java 21 import android.util.Log;
45 Log.i(TAG, "Waiting for the underlying activity to gain focus before continuing.");
52 Log.i(TAG, "Waiting for the underlying activity to lose focus.");
61 Log.d(TAG, "Not running assist tests on low-RAM device.");
  /cts/tests/tests/opengl/src/android/opengl/cts/
NativeRendererOneColorBufferTest.java 33 import android.util.Log;
71 Log.i(TAG,"onDrawFrame start");
84 Log.i(TAG,"onSurfaceCreated start");
86 Log.i(TAG,"onSurfaceCreated finish");
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GlTextureCoordTest.java 22 import android.util.Log;
  /cts/tests/tests/uiautomation/src/android/app/uiautomation/cts/
UiAutomationLogRule.java 20 import android.util.Log;
35 * Improves UiAutomationTest logging, dumps log when a test case gets failed.
69 Log.e(mTestName, "TEST FAIL");
72 Log.e(mTestName, "Dump fail", t);
89 Log.e(mTestName, "==== dumpsys accessibility ====\n" + a11yDump);
  /cts/tests/tests/voicesettings/src/android/voicesettings/cts/
BatterySaverModeTest.java 26 import android.util.Log;
48 Log.i(TAG, "The device doesn't support feature: " + FEATURE_VOICE_RECOGNIZERS);
52 Log.e(TAG, "Voice intent for Battery Saver Mode NOT supported. existing the test");
57 Log.i(TAG, "Before testing, BATTERYSAVER_MODE is set to: " + modeIsOn);
  /developers/build/prebuilts/gradle/BasicImmersiveMode/Application/src/main/java/com/example/android/basicimmersivemode/
BasicImmersiveModeFragment.java 23 import com.example.android.common.logger.Log;
44 Log.i(TAG, "Current height: " + height);
71 Log.i(TAG, "Turning immersive mode mode off. ");
73 Log.i(TAG, "Turning immersive mode mode on.");
  /developers/build/prebuilts/gradle/ImmersiveMode/Application/src/main/java/com/example/android/immersivemode/
ImmersiveModeFragment.java 24 import com.example.android.common.logger.Log;
45 Log.i(TAG, "Current height: " + height);
73 Log.i(TAG, "Turning immersive mode mode off. ");
75 Log.i(TAG, "Turning immersive mode mode on.");
  /developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/synth/
SimpleAudioOutput.java 22 import android.util.Log;
60 Log.i(TAG, "AudioTrack.minBufferSize = " + minBufferSizeBytes
65 Log.i(TAG, "actual bufferSize = " + bufferSize + " bytes = "
72 Log.i(TAG, "created AudioTrack");
  /developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/synth/
SimpleAudioOutput.java 22 import android.util.Log;
60 Log.i(TAG, "AudioTrack.minBufferSize = " + minBufferSizeBytes
65 Log.i(TAG, "actual bufferSize = " + bufferSize + " bytes = "
72 Log.i(TAG, "created AudioTrack");
  /developers/build/prebuilts/gradle/MultiWindowPlayground/kotlinApp/Application/src/main/java/com/android/multiwindowplayground/logger/
Log.kt 24 * an instance of it can function as a drop-in replacement for [android.util.Log].
25 * Most of the methods in this class serve only to map a method call in Log to its equivalent
28 object Log {
33 private val DEBUG = android.util.Log.DEBUG
39 * Instructs the LogNode to print the log data provided. Other LogNodes can
42 * @param priority Log level of the data being logged. Verbose, Error, etc.
43 * @param tag Tag for for the log data. Can be used to organize log statements.
53 * @param tag Tag for for the log data. Can be used to organize log statements
    [all...]
  /developers/build/prebuilts/gradle/RecyclerView/kotlinApp/app/src/main/java/com/example/android/common/logger/
LogWrapper.kt 18 import android.util.Log
21 * Helper class which wraps Android's native Log utility in the Logger interface. This way
26 // For piping: The next node to receive Log data after this one has done its work.
30 * Prints data out to the console using Android's native log mechanism.
31 * @param priority Log level of the data being logged. Verbose, Error, etc.
32 * @param tag Tag for for the log data. Can be used to organize log statements.
39 // There actually are log methods that don't take a msg parameter. For now,
49 msg += "\n$Log.getStackTraceString(tr)"
52 // This is functionally identical to Log.x(tag, useMsg)
    [all...]
  /developers/build/prebuilts/gradle/RuntimePermissionsWear/Application/src/main/java/com/example/android/wearable/runtimepermissions/
PhonePermissionRequestActivity.java 26 import android.util.Log;
65 Log.d(TAG, "onClickApprovePermissionRequest()");
75 Log.d(TAG, "onClickDenyPermissionRequest()");
88 Log.d(TAG, "onRequestPermissionsResult(): " + permissionResult);
  /developers/build/prebuilts/gradle/WifiRttScan/Application/src/main/java/com/example/android/wifirttscan/
LocationPermissionRequestActivity.java 25 import android.util.Log;
56 Log.d(TAG, "onClickApprovePermissionRequest()");
66 Log.d(TAG, "onClickDenyPermissionRequest()");
84 Log.d(TAG, "onRequestPermissionsResult(): " + permissionResult);
  /developers/samples/android/common/src/java/com/example/android/common/midi/synth/
SimpleAudioOutput.java 22 import android.util.Log;
60 Log.i(TAG, "AudioTrack.minBufferSize = " + minBufferSizeBytes
65 Log.i(TAG, "actual bufferSize = " + bufferSize + " bytes = "
72 Log.i(TAG, "created AudioTrack");
  /developers/samples/android/connectivity/wifirtt/WifiRttScan/Application/src/main/java/com/example/android/wifirttscan/
LocationPermissionRequestActivity.java 25 import android.util.Log;
56 Log.d(TAG, "onClickApprovePermissionRequest()");
66 Log.d(TAG, "onClickDenyPermissionRequest()");
84 Log.d(TAG, "onRequestPermissionsResult(): " + permissionResult);
  /developers/samples/android/ui/views/RecyclerView/kotlinApp/app/src/main/java/com/example/android/common/logger/
LogWrapper.kt 18 import android.util.Log
21 * Helper class which wraps Android's native Log utility in the Logger interface. This way
26 // For piping: The next node to receive Log data after this one has done its work.
30 * Prints data out to the console using Android's native log mechanism.
31 * @param priority Log level of the data being logged. Verbose, Error, etc.
32 * @param tag Tag for for the log data. Can be used to organize log statements.
39 // There actually are log methods that don't take a msg parameter. For now,
49 msg += "\n$Log.getStackTraceString(tr)"
52 // This is functionally identical to Log.x(tag, useMsg)
    [all...]
  /developers/samples/android/ui/window/BasicImmersiveMode/Application/src/main/java/com/example/android/basicimmersivemode/
BasicImmersiveModeFragment.java 23 import com.example.android.common.logger.Log;
44 Log.i(TAG, "Current height: " + height);
71 Log.i(TAG, "Turning immersive mode mode off. ");
73 Log.i(TAG, "Turning immersive mode mode on.");
  /developers/samples/android/ui/window/ImmersiveMode/Application/src/main/java/com/example/android/immersivemode/
ImmersiveModeFragment.java 24 import com.example.android.common.logger.Log;
45 Log.i(TAG, "Current height: " + height);
73 Log.i(TAG, "Turning immersive mode mode off. ");
75 Log.i(TAG, "Turning immersive mode mode on.");

Completed in 2624 milliseconds

<<31323334353637383940>>