/developers/samples/android/security/keystore/BasicAndroidKeyStore/Application/src/main/java/com/example/android/basicandroidkeystore/ |
D | BasicAndroidKeyStoreFragment.java | 93 Log.w(TAG, "RSA not supported", e); in onOptionsItemSelected() 95 Log.w(TAG, "No such provider: AndroidKeyStore"); in onOptionsItemSelected() 97 Log.w(TAG, "Invalid Algorithm Parameter Exception", e); in onOptionsItemSelected() 104 Log.w(TAG, "KeyStore not Initialized", e); in onOptionsItemSelected() 106 Log.w(TAG, "KeyPair not recovered", e); in onOptionsItemSelected() 108 Log.w(TAG, "RSA not supported", e); in onOptionsItemSelected() 110 Log.w(TAG, "Invalid Key", e); in onOptionsItemSelected() 112 Log.w(TAG, "Invalid Signature", e); in onOptionsItemSelected() 114 Log.w(TAG, "IO Exception", e); in onOptionsItemSelected() 116 Log.w(TAG, "Error occurred while loading certificates", e); in onOptionsItemSelected() [all …]
|
/developers/samples/android/ui/window/MultiWindowPlayground/Application/src/main/java/com/example/android/common/logger/ |
D | Log.java | 159 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 169 public static void w(String tag, String msg) { in w() method in Log 170 w(tag, msg, null); in w() 180 public static void w(String tag, Throwable tr) { in w() method in Log 181 w(tag, null, tr); in w()
|
/developers/samples/android/common/src/java/com/example/android/common/logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/developers/samples/android/ui/window/DragAndDropAcrossApps/DropTarget/src/main/java/com/example/android/common/logger/ |
D | Log.java | 157 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 167 public static void w(String tag, String msg) { in w() method in Log 168 w(tag, msg, null); in w() 178 public static void w(String tag, Throwable tr) { in w() method in Log 179 w(tag, null, tr); in w()
|
/developers/samples/android/ui/window/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/common/logger/ |
D | Log.java | 165 public static void w(String tag, String msg, Throwable tr) { in w() method in Log 175 public static void w(String tag, String msg) { in w() method in Log 176 w(tag, msg, null); in w() 186 public static void w(String tag, Throwable tr) { in w() method in Log 187 w(tag, null, tr); in w()
|
/developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/ |
D | BluetoothLeService.java | 97 Log.w(TAG, "onServicesDiscovered received: " + status); 214 Log.w(TAG, "BluetoothAdapter not initialized or unspecified address."); in connect() 232 Log.w(TAG, "Device not found. Unable to connect."); in connect() 252 Log.w(TAG, "BluetoothAdapter not initialized"); in disconnect() 279 Log.w(TAG, "BluetoothAdapter not initialized"); in readCharacteristic() 294 Log.w(TAG, "BluetoothAdapter not initialized"); in setCharacteristicNotification()
|
/developers/samples/android/connectivity/nfc/BeamLargeFiles/Application/src/main/java/com/example/android/beamlargefiles/ |
D | BeamLargeFilesFragment.java | 71 Log.w(TAG, "NFC available. Setting Beam Push URI callback"); in onCreate() 74 Log.w(TAG, "NFC is not available"); in onCreate()
|
/developers/samples/android/ui/accessibility/BasicAccessibility/Application/src/main/java/com/example/android/basicaccessibility/ |
D | DialView.java | 176 protected void onSizeChanged(int w, int h, int oldw, int oldh) { in onSizeChanged() argument 182 mWidth = w; in onSizeChanged() 184 mWidthPadded = w - xPadding; in onSizeChanged()
|
/developers/samples/android/ui/views/FloatingActionButton/FloatingActionButtonBasic/Application/src/main/java/com/example/android/floatingactionbuttonbasic/ |
D | FloatingActionButton.java | 144 protected void onSizeChanged(int w, int h, int oldw, int oldh) { in onSizeChanged() argument 145 super.onSizeChanged(w, h, oldw, oldh); in onSizeChanged()
|
/developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/ |
D | PackageVerifier.kt | 41 Log.w(TAG, "Error getting hash for $packageName: $e") in <lambda>() 92 Log.w(TAG, "hash mismatch for " + packageName + ": expected " + existingHash in <lambda>()
|
/developers/samples/android/renderScript/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/ |
D | ThumbnailRadioButton.java | 107 float w = paint.measureText(getText(), 0, getText().length()); in setThumbnail() local 108 setPadding(getPaddingLeft() + (int) ((bitmap.getWidth() - w) / 2.f + .5f), in setThumbnail()
|
/developers/samples/android/common/src/java/com/example/android/common/media/ |
D | CameraHelper.java | 51 List<Camera.Size> previewSizes, int w, int h) { in getOptimalVideoSize() argument 54 double targetRatio = (double) w / h; in getOptimalVideoSize()
|
/developers/samples/android/wearable/wear/WearSpeakerSample/wear/src/main/java/com/example/android/wearable/speaker/ |
D | SoundRecorder.java | 79 Log.w(TAG, "Requesting to start recording while state was not IDLE"); in startRecording() 105 Log.w(TAG, "Requesting to play while state was not IDLE"); in startPlay() 310 Log.w(TAG, "Requesting to stop recording while state was not RECORDING"); in onCancelled()
|
/developers/samples/android/system/RuntimePermissionsBasic/kotlinApp/Application/src/main/java/com/example/android/basicpermissions/camera/ |
D | CameraPreview.kt | 76 override fun surfaceChanged(holder: SurfaceHolder, format: Int, w: Int, h: Int) { in surfaceChanged()
|
/developers/samples/android/ui/views/RecyclerView/kotlinApp/app/src/main/java/com/example/android/common/logger/ |
D | Log.kt | 102 fun w(tag: String, msg: String? = null, tr: Throwable? = null) { in w() method
|
/developers/samples/android/system/RuntimePermissions/kotlinApp/app/src/main/java/com/example/android/system/runtimepermissions/camera/ |
D | CameraPreview.kt | 79 override fun surfaceChanged(holder: SurfaceHolder, format: Int, w: Int, h: Int) { in surfaceChanged()
|
/developers/samples/android/sensors/AccelerometerPlay/app/src/main/java/com/example/android/accelerometerplay/ |
D | AccelerometerPlayActivity.java | 349 protected void onSizeChanged(int w, int h, int oldw, int oldh) { in onSizeChanged() argument 352 mXOrigin = (w - mDstWidth) * 0.5f; in onSizeChanged() 354 mHorizontalBound = ((w / mMetersToPixelsX - sBallDiameter) * 0.5f); in onSizeChanged()
|
/developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/commoncases/ |
D | CreditCardDatePickerActivity.java | 75 Log.w(TAG, "showDatePickerDialog() called on invalid view: " + v); in showDatePickerDialog()
|
/developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/ |
D | CustomVirtualView.java | 106 Log.w(TAG, "No item for id " + id); in autofill() 129 Log.w(TAG, "Unsupported type: " + value); in autofill()
|
/developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/ |
D | AlarmStorage.java | 49 Log.w(TAG, "Failed to migrate shared preferences."); in AlarmStorage()
|
/developers/samples/android/deprecated/wearable/wear/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/ |
D | QuizReportActionService.java | 81 Log.w(TAG, "No node capable of resetting quiz was found"); in sendResetMessage()
|
/developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/model/ |
D | FilledAutofillFieldCollection.kt | 92 else -> Log.w(TAG, "Invalid autofill type - " + autofillType) in <lambda>()
|
/developers/samples/android/system/RuntimePermissions/Application/src/main/java/com/example/android/system/runtimepermissions/camera/ |
D | CameraPreview.java | 118 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { in surfaceChanged() argument
|
/developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/provider/ |
D | IncrementingNumberComplicationProviderService.java | 112 Log.w(TAG, "Unexpected complication type " + dataType); in onComplicationUpdate()
|
/developers/samples/android/content/documentsUi/DirectorySelection/Application/src/main/java/com/example/android/directoryselection/ |
D | DirectorySelectionFragment.java | 208 Log.w(TAG, "IOException", e); in createDirectory() 217 Log.w(TAG, String.format("Failed to create a directory : %s, Uri %s", directoryName, in createDirectory()
|