/frameworks/base/services/tests/mockingservicestests/src/com/android/server/utils/ |
D | SlogfTest.java | 23 import android.util.Slog; 46 .mockStatic(Slog.class) in setup() 64 verify(()-> Slog.v(TAG, "msg")); in testV_msg() 71 verify(()-> Slog.v(TAG, "msg", mThrowable)); in testV_msgAndThrowable() 78 verify(()-> Slog.v(TAG, "msg in a bottle")); in testV_msgFormatted() 85 verify(()-> Slog.v(TAG, "msg in a bottle", mThrowable)); in testV_msgFormattedWithThrowable() 92 verify(()-> Slog.d(TAG, "msg")); in testD_msg() 99 verify(()-> Slog.d(TAG, "msg", mThrowable)); in testD_msgAndThrowable() 106 verify(()-> Slog.d(TAG, "msg in a bottle")); in testD_msgFormatted() 113 verify(()-> Slog.d(TAG, "msg in a bottle", mThrowable)); in testD_msgFormattedWithThrowable() [all …]
|
/frameworks/base/core/tests/utiltests/src/android/util/ |
D | SlogTest.java | 32 Slog.v(TAG, MSG); in testSimple() 33 Slog.d(TAG, MSG); in testSimple() 34 Slog.i(TAG, MSG); in testSimple() 35 Slog.w(TAG, MSG); in testSimple() 36 Slog.e(TAG, MSG); in testSimple() 41 Slog.v(TAG, MSG, THROWABLE); in testThrowable() 42 Slog.d(TAG, MSG, THROWABLE); in testThrowable() 43 Slog.i(TAG, MSG, THROWABLE); in testThrowable() 44 Slog.w(TAG, MSG, THROWABLE); in testThrowable() 45 Slog.e(TAG, MSG, THROWABLE); in testThrowable() [all …]
|
/frameworks/base/services/backup/java/com/android/server/backup/keyvalue/ |
D | KeyValueBackupReporter.java | 27 import android.util.Slog; 62 Slog.d(TAG, "Spinning thread " + threadName); in onNewThread() 91 Slog.d(TAG, "Skipping backup since one is already in progress"); in onSkipBackup() 96 Slog.w(TAG, "Backup begun with an empty queue, nothing to do"); in onEmptyQueueAtStart() 101 Slog.v(TAG, "Beginning backup of " + queue.size() + " targets"); in onQueueReady() 110 Slog.i(TAG, "Initializing transport and resetting backup state"); in onInitializeTransport() 118 Slog.e(TAG, "Transport error in initializeDevice()"); in onTransportInitialized() 123 Slog.e(TAG, "Error during initialization", e); in onInitializeTransportError() 127 Slog.d(TAG, "Skipping backup of PM metadata"); in onSkipPm() 131 Slog.e(TAG, "Error during PM metadata backup", e); in onExtractPmAgentDataError() [all …]
|
/frameworks/base/services/core/java/com/android/server/tv/ |
D | TvRemoteServiceInput.java | 25 import android.util.Slog; 49 Slog.d(TAG, "openInputBridge(), token: " + token in openInputBridge() 57 Slog.d(TAG, "InputBridge already exists"); in openInputBridge() 71 Slog.e(TAG, "Cannot create device for " + name); in openInputBridge() 74 Slog.e(TAG, "Token is already dead"); in openInputBridge() 86 Slog.e(TAG, "Failed remote call to onInputBridgeConnected"); in openInputBridge() 93 Slog.d(TAG, String.format("openGamepadBridge(), token: %s, name: %s", token, name)); in openGamepadBridge() 99 Slog.d(TAG, "InputBridge already exists"); in openGamepadBridge() 112 Slog.e(TAG, "Cannot create device for " + name); in openGamepadBridge() 115 Slog.e(TAG, "Token is already dead"); in openGamepadBridge() [all …]
|
/frameworks/base/services/core/java/com/android/server/policy/keyguard/ |
D | KeyguardServiceWrapper.java | 25 import android.util.Slog; 56 Slog.w(TAG , "Remote Exception", e); in verifyUnlock() 65 Slog.w(TAG , "Remote Exception", e); in setOccluded() 74 Slog.w(TAG , "Remote Exception", e); in addStateMonitorCallback() 83 Slog.w(TAG , "Remote Exception", e); in dismiss() 92 Slog.w(TAG , "Remote Exception", e); in onDreamingStarted() 101 Slog.w(TAG , "Remote Exception", e); in onDreamingStopped() 110 Slog.w(TAG , "Remote Exception", e); in onStartedGoingToSleep() 120 Slog.w(TAG , "Remote Exception", e); in onFinishedGoingToSleep() 130 Slog.w(TAG , "Remote Exception", e); in onStartedWakingUp() [all …]
|
/frameworks/base/services/core/java/com/android/server/ |
D | ExplicitHealthCheckController.java | 41 import android.util.Slog; 98 Slog.i(TAG, "Explicit health checks " + (enabled ? "enabled." : "disabled.")); in setEnabled() 114 Slog.wtf(TAG, "Resetting health check controller callbacks"); in setCallbacks() 144 Slog.i(TAG, "Health checks disabled, no supported packages"); in syncRequests() 173 Slog.i(TAG, "No more health check requests, unbinding..."); in syncRequests() 204 Slog.i(TAG, "Requesting health check for package " + packageName); in request() 208 Slog.w(TAG, "Failed to request health check for package " + packageName, e); in request() 224 Slog.i(TAG, "Cancelling health check for package " + packageName); in cancel() 230 Slog.w(TAG, "Failed to cancel health check for package " + packageName, e); in cancel() 245 Slog.d(TAG, "Getting health check supported packages"); in getSupportedPackages() [all …]
|
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/aidl/ |
D | TestHal.java | 29 import android.util.Slog; 49 Slog.w(TAG, "getSensorProps"); in getSensorProps() 55 Slog.w(TAG, "createSession, sensorId: " + sensorId + " userId: " + userId); in createSession() 70 Slog.w(TAG, "generateChallenge"); in createSession() 76 Slog.w(TAG, "revokeChallenge: " + challenge); in createSession() 82 Slog.w(TAG, "enroll"); in createSession() 101 Slog.w(TAG, "authenticate"); in createSession() 120 Slog.w(TAG, "detectInteraction"); in createSession() 139 Slog.w(TAG, "enumerateEnrollments"); in createSession() 145 Slog.w(TAG, "removeEnrollments"); in createSession() [all …]
|
/frameworks/base/core/java/com/android/internal/content/ |
D | F2fsUtils.java | 25 import android.util.Slog; 57 Slog.d(TAG, "f2fs compression DISABLED; feature not part of the kernel"); in Slog.d() 63 Slog.d(TAG, "f2fs compression DISABLED; feature not enabled on filesystem"); in Slog.d() 99 Slog.d(TAG, "SKIP; release compress blocks not enabled"); in releaseCompressedBlocks() 105 Slog.d(TAG, "SKIP; compression not allowed"); in releaseCompressedBlocks() 112 Slog.d(TAG, "SKIP; no files to compress"); in releaseCompressedBlocks() 119 Slog.d(TAG, "RELEASED " + releasedBlocks + " blocks" in releaseCompressedBlocks() 139 Slog.d(TAG, "f2fs compression DISABLED; could not determine path"); in isCompressionAllowed() 145 Slog.d(TAG, "f2fs compression DISABLED; file on incremental fs"); in isCompressionAllowed() 151 Slog.d(TAG, "f2fs compression DISABLED; file not on /data"); in isCompressionAllowed() [all …]
|
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/ |
D | VisualQueryDetectorSession.java | 45 import android.util.Slog; 103 Slog.v(TAG, "informRestartProcessLocked"); in informRestartProcessLocked() 108 Slog.w(TAG, "Failed to communicate #onProcessRestarted", e); in informRestartProcessLocked() 121 Slog.d(TAG, "startPerceivingLocked"); in startPerceivingLocked() 129 Slog.v(TAG, "BinderCallback#onAttentionGained"); in startPerceivingLocked() 138 Slog.e(TAG, "Error delivering attention gained event.", e); in startPerceivingLocked() 145 Slog.v(TAG, "Fail to call onVisualQueryDetectionServiceFailure"); in startPerceivingLocked() 153 Slog.v(TAG, "BinderCallback#onAttentionLost"); in startPerceivingLocked() 162 Slog.e(TAG, "Error delivering attention lost event.", e); in startPerceivingLocked() 169 Slog.v(TAG, "Fail to call onVisualQueryDetectionServiceFailure"); in startPerceivingLocked() [all …]
|
D | VoiceInteractionManagerServiceImpl.java | 78 import android.util.Slog; 158 Slog.d(TAG, "onServiceConnected to " + name + " for user(" + mUser + ")"); 172 Slog.d(TAG, "onServiceDisconnected to " + name); 182 Slog.d(TAG, "onBindingDied to " + name); 228 Slog.w(TAG, "Voice interaction service not found: " + service, e); in VoiceInteractionManagerServiceImpl() 239 Slog.w(TAG, "Bad voice interaction service: " + mInfo.getParseError()); in VoiceInteractionManagerServiceImpl() 287 Slog.w(TAG, "RemoteException while calling prepareToShowSession", e); in showSessionLocked() 303 Slog.w(TAG, "RemoteException while calling showSessionFailed", e); in showSessionLocked() 332 Slog.w(TAG, "Not bound to voice interaction service " + mComponent); in getActiveServiceSupportedActions() 342 Slog.w(TAG, "RemoteException while calling getActiveServiceSupportedActions", e); in getActiveServiceSupportedActions() [all …]
|
/frameworks/base/core/java/android/service/voice/ |
D | VisualQueryDetector.java | 37 import android.util.Slog; 124 Slog.i(TAG, "#startRecognition"); in startRecognition() 134 Slog.e(TAG, "startRecognition failed: " + e); in startRecognition() 151 Slog.i(TAG, "#stopRecognition"); in stopRecognition() 173 Slog.i(TAG, "#destroy"); in destroy() 190 Slog.d(TAG, "Fetching accessibility setting"); in isAccessibilityDetectionEnabled() 217 Slog.d(TAG, "Registering Accessibility settings listener."); in setAccessibilityDetectionEnabledListener() 221 Slog.e(TAG, "Fail to register accessibility setting listener: " in setAccessibilityDetectionEnabledListener() 250 Slog.d(TAG, "Unregistering Accessibility settings listener."); in clearAccessibilityDetectionEnabledListener() 254 Slog.e(TAG, "Not able to remove the listener: listener does not exist."); in clearAccessibilityDetectionEnabledListener() [all …]
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | NativeCrashListener.java | 30 import android.util.Slog; 90 if (DEBUG) Slog.v(TAG, "Calling handleApplicationCrash()"); in run() 94 if (DEBUG) Slog.v(TAG, "<-- handleApplicationCrash() returned"); in run() 96 Slog.e(TAG, "Unable to report native crash", e); in run() 113 if (DEBUG) Slog.i(TAG, "Starting up"); in run() 136 if (MORE_DEBUG) Slog.v(TAG, "Waiting for debuggerd connection"); in run() 138 if (MORE_DEBUG) Slog.v(TAG, "Got debuggerd socket " + peerFd); in run() 145 Slog.w(TAG, "Error handling connection", e); in run() 155 Slog.d(TAG, "Exception writing ack: " + e.getMessage()); in run() 162 Slog.d(TAG, "Exception closing socket: " + e.getMessage()); in run() [all …]
|
D | StackTracesDumpHelper.java | 31 import android.util.Slog; 130 Slog.i(TAG, "dumpStackTraces pids=" + lastPids); in dumpStackTraces() 151 Slog.w(TAG, "Exception creating ANR dump file:", e); in dumpStackTraces() 196 Slog.i(TAG, "Dumping to " + tracesFile); in dumpStackTraces() 223 Slog.e(TAG, "Aborting stack trace dump (currently copying primary pid" + primaryPid in dumpStackTraces() 248 Slog.i(TAG, "Collecting stacks for pid " + pid); in dumpStackTraces() 253 Slog.e(TAG, "Aborting stack trace dump (current firstPid=" + pid in dumpStackTraces() 267 Slog.d(TAG, "Done with pid " + firstPids.get(i) + " in " + timeTaken + "ms"); in dumpStackTraces() 278 Slog.i(TAG, "dumpStackTraces nativepids=" + nativePids); in dumpStackTraces() 285 Slog.i(TAG, "Collecting stacks for native pid " + pid); in dumpStackTraces() [all …]
|
/frameworks/base/services/core/java/com/android/server/oemlock/ |
D | VendorLockHidl.java | 25 import android.util.Slog; 41 Slog.i(TAG, "OemLock Hidl HAL not present on device"); in getOemLockHalService() 66 Slog.e(TAG, "Failed to get name from HAL", e); in getLockName() 76 Slog.e(TAG, "Failed to get OEM lock name."); in getLockName() 80 Slog.e(TAG, "Unknown return value indicates code is out of sync with HAL"); in getLockName() 91 Slog.i(TAG, "Updated carrier allows OEM lock state to: " + allowed); in setOemUnlockAllowedByCarrier() 102 Slog.e(TAG, "Unknown return value indicates code is out of sync with HAL"); in setOemUnlockAllowedByCarrier() 108 Slog.e(TAG, "Failed to set carrier state with HAL", e); in setOemUnlockAllowedByCarrier() 124 Slog.e(TAG, "Failed to get carrier state from HAL"); in isOemUnlockAllowedByCarrier() 134 Slog.e(TAG, "Unknown return value indicates code is out of sync with HAL"); in isOemUnlockAllowedByCarrier() [all …]
|
/frameworks/base/services/core/java/com/android/server/locksettings/ |
D | RebootEscrowProviderHalImpl.java | 24 import android.util.Slog; 47 Slog.i(TAG, "Device doesn't implement RebootEscrow HAL"); in getRebootEscrow() 76 Slog.w(TAG, "Had reboot escrow data for users, but RebootEscrow HAL is unavailable"); in getAndClearRebootEscrowKey() 83 Slog.w(TAG, "Had reboot escrow data for users, but could not retrieve key"); in getAndClearRebootEscrowKey() 86 Slog.e(TAG, "IRebootEscrow returned key of incorrect size " in getAndClearRebootEscrowKey() 97 Slog.w(TAG, "IRebootEscrow returned an all-zeroes key"); in getAndClearRebootEscrowKey() 106 Slog.w(TAG, "Could not retrieve escrow data"); in getAndClearRebootEscrowKey() 109 Slog.w(TAG, "Got service-specific exception: " + e.errorCode); in getAndClearRebootEscrowKey() 124 Slog.w(TAG, "Could not call RebootEscrow HAL to shred key"); in clearRebootEscrowKey() 133 Slog.w(TAG, "Escrow marked as ready, but RebootEscrow HAL is unavailable"); in storeRebootEscrowKey() [all …]
|
D | RebootEscrowProviderServerBasedImpl.java | 23 import android.util.Slog; 61 Slog.e(TAG, "Failed to resolve resume on reboot server service."); in Injector() 111 Slog.w(TAG, "Had reboot escrow data for users, but resume on reboot server" in unwrapServerBlob() 119 Slog.w(TAG, "Decrypted server blob should not be null"); in unwrapServerBlob() 141 Slog.w(TAG, "Failed to read reboot escrow server blob from storage"); in getAndClearRebootEscrowKey() 145 Slog.w(TAG, "Failed to decrypt the escrow key; decryption key from keystore is" in getAndClearRebootEscrowKey() 150 Slog.i(TAG, "Loaded reboot escrow server blob from storage"); in getAndClearRebootEscrowKey() 154 Slog.w(TAG, "Decrypted reboot escrow key bytes should not be null"); in getAndClearRebootEscrowKey() 157 Slog.e(TAG, "Decrypted reboot escrow key has incorrect size " in getAndClearRebootEscrowKey() 164 Slog.w(TAG, "Failed to decrypt the server blob ", e); in getAndClearRebootEscrowKey() [all …]
|
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/face/aidl/ |
D | TestHal.java | 31 import android.util.Slog; 51 Slog.w(TAG, "getSensorProps"); in getSensorProps() 57 Slog.w(TAG, "createSession, sensorId: " + sensorId + " userId: " + userId); in createSession() 72 Slog.w(TAG, "generateChallenge"); in createSession() 78 Slog.w(TAG, "revokeChallenge: " + challenge); in createSession() 90 Slog.w(TAG, "enroll"); in createSession() 109 Slog.w(TAG, "authenticate"); in createSession() 128 Slog.w(TAG, "detectInteraction"); in createSession() 147 Slog.w(TAG, "enumerateEnrollments"); in createSession() 153 Slog.w(TAG, "removeEnrollments"); in createSession() [all …]
|
/frameworks/base/services/core/java/com/android/server/ambientcontext/ |
D | AmbientContextManagerPerUserService.java | 46 import android.util.Slog; 143 Slog.d(TAG, "Query event status of " + Arrays.toString(eventTypes) in onQueryServiceStatus() 147 Slog.w(TAG, "Detection service is not available at this moment."); in onQueryServiceStatus() 177 Slog.d(TAG, "Opening consent activity of " + Arrays.toString(eventTypes) in onStartConsentActivity() 188 Slog.e(TAG, "Failed to query recent tasks!"); in onStartConsentActivity() 193 Slog.e(TAG, "Recent task list is empty!"); in onStartConsentActivity() 199 Slog.e(TAG, "Recent task package name: " + task.topActivityInfo.packageName in onStartConsentActivity() 207 Slog.e(TAG, "Consent component not found!"); in onStartConsentActivity() 211 Slog.d(TAG, "Starting consent activity for " + callingPackage); in onStartConsentActivity() 226 Slog.d(TAG, "Missing packageNameExtraKey for consent activity"); in onStartConsentActivity() [all …]
|
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/ |
D | BiometricScheduler.java | 34 import android.util.Slog; 158 Slog.d(TAG, "[Client finished] " + clientMonitor + ", success: " + success); in onClientFinished() 164 Slog.w(TAG, "StopUserClient failed(), is the HAL stuck? " in onClientFinished() 174 Slog.w(TAG, "operation is already null or different (reset?): " in onClientFinished() 188 Slog.d(TAG, "[Started] " + clientMonitor); 195 Slog.e(TAG, "[Finishing] " + clientMonitor 202 Slog.e(TAG, "[Ignoring Finish] " + clientMonitor + " does not match" 207 Slog.d(TAG, "[Finishing] " + clientMonitor + ", success: " + success); 307 Slog.v(TAG, "Not idle, current operation: " + mCurrentOperation); in checkCurrentUserAndStartNextOperation() 311 Slog.d(TAG, "No operations, returning to idle"); in checkCurrentUserAndStartNextOperation() [all …]
|
D | AuthenticationStateListeners.java | 30 import android.util.Slog; 58 Slog.e(TAG, "Failed to link to death", e); in registerAuthenticationStateListener() 80 Slog.e(TAG, "Remote exception in notifying listener that authentication " in onAuthenticationAcquired() 95 Slog.e(TAG, "Remote exception in notifying listener of unrecoverable" in onAuthenticationError() 110 Slog.e(TAG, "Remote exception in notifying listener that authentication " in onAuthenticationFailed() 125 Slog.e(TAG, "Remote exception in notifying listener of recoverable" in onAuthenticationHelp() 140 Slog.e(TAG, "Remote exception in notifying listener that authentication " in onAuthenticationStarted() 155 Slog.e(TAG, "Remote exception in notifying listener that authentication " in onAuthenticationStopped() 170 Slog.e(TAG, "Remote exception in notifying listener that authentication " in onAuthenticationSucceeded() 183 Slog.w(TAG, "Callback binder died: " + who); in binderDied() [all …]
|
/frameworks/base/services/core/java/com/android/server/locales/ |
D | LocaleManagerBackupHelper.java | 43 import android.util.Slog; 149 Slog.d(TAG, "getBackupPayload invoked for user id " + userId); in getBackupPayload() 167 Slog.d(TAG, "Add package=" + appInfo.packageName + " locales=" in getBackupPayload() 181 Slog.e(TAG, "Exception when getting locales for package: " + appInfo.packageName, in getBackupPayload() 188 Slog.d(TAG, "Final payload=null"); in getBackupPayload() 198 Slog.e(TAG, "Could not write to xml for backup ", e); in getBackupPayload() 204 Slog.d(TAG, "Final payload=" + out.toString("UTF-8")); in getBackupPayload() 206 Slog.w(TAG, "Could not encode payload to UTF-8", e); in getBackupPayload() 225 Slog.d(TAG, "stageAndApplyRestoredPayload user=" + userId + " payload=" in stageAndApplyRestoredPayload() 229 Slog.e(TAG, "stageAndApplyRestoredPayload: no payload to restore for user " + userId); in stageAndApplyRestoredPayload() [all …]
|
/frameworks/base/services/core/java/com/android/server/biometrics/ |
D | AuthSession.java | 60 import android.util.Slog; 203 Slog.d(TAG, "Creating AuthSession with: " + preAuthInfo); in AuthSession() 234 Slog.w(TAG, "Unable to link to death"); in AuthSession() 242 Slog.e(TAG, "Binder died, session: " + this); in binderDied() 261 Slog.v(TAG, "set to unknown state sensor: " + sensor.id); in setSensorsToStateUnknown() 273 Slog.d(TAG, "Skip retry because sensor: " + sensor.id + " is: " + state); in setSensorsToStateWaitingForCookie() 283 Slog.v(TAG, "waiting for cooking for sensor: " + sensor.id); in setSensorsToStateWaitingForCookie() 323 Slog.w(TAG, "Received cookie but already cancelled (ignoring): " + cookie); in onCookieReceived() 327 Slog.d(TAG, "onCookieReceived after successful auth"); in onCookieReceived() 364 Slog.e(TAG, "Remote exception", e); in onCookieReceived() [all …]
|
/frameworks/base/services/backup/java/com/android/server/backup/ |
D | PackageManagerBackupAgent.java | 32 import android.util.Slog; 186 Slog.w(TAG, "getRestoredMetadata() before metadata read!"); in getRestoredMetadata() 195 Slog.w(TAG, "getRestoredPackages() before metadata read!"); in getRestoredPackages() 210 if (DEBUG) Slog.v(TAG, "onBackup()"); in onBackup() 223 Slog.i( in onBackup() 243 Slog.v( in onBackup() 252 Slog.v( in onBackup() 261 if (DEBUG) Slog.v(TAG, "Ancestral record version has not changed"); in onBackup() 276 if (DEBUG) Slog.v(TAG, "Storing global metadata key"); in onBackup() 281 if (DEBUG) Slog.v(TAG, "Global metadata key already stored"); in onBackup() [all …]
|
/frameworks/base/services/usb/java/com/android/server/usb/ |
D | UsbAlsaManager.java | 33 import android.util.Slog; 174 Slog.d(TAG, "selectAlsaDevice() " + alsaDevice); in selectAlsaDevice() 191 Slog.d(TAG, "selectAlsaDevice() - done."); in selectAlsaDevice() 197 Slog.d(TAG, "deselectAlsaDevice() selectedDevice " + selectedDevice); in deselectAlsaDevice() 213 Slog.i(TAG, "Ignore caching device as the type is NONE, device=" + device); in addDeviceToAttachedDevicesMap() 255 Slog.d(TAG, "selectDefaultDevice():" + deviceType); in selectDefaultDevice() 263 Slog.d(TAG, "select default device:" + alsaDevice); in selectDefaultDevice() 274 Slog.d(TAG, "deselectCurrentDevice():" + deviceType); in deselectCurrentDevice() 285 Slog.d(TAG, "deselect current device:" + alsaDevice); in deselectCurrentDevice() 296 Slog.d(TAG, "usbDeviceAdded(): " + usbDevice.getManufacturerName() in usbDeviceAdded() [all …]
|
/frameworks/base/services/core/java/com/android/server/signedconfig/ |
D | SignatureVerifier.java | 20 import android.util.Slog; 67 Slog.e(TAG, "Failed to base64 decode public key", e); in createKey() 74 Slog.e(TAG, "Failed to construct public key", e); in createKey() 102 Slog.e(TAG, "Failed to base64 decode signature"); in verifySignature() 106 if (DBG) Slog.i(TAG, "Data: " + Base64.getEncoder().encodeToString(data)); in verifySignature() 110 if (DBG) Slog.w(TAG, "Trying to verify signature using debug key"); in verifySignature() 112 Slog.i(TAG, "Verified config using debug key"); in verifySignature() 117 if (DBG) Slog.i(TAG, "Config verification failed using debug key"); in verifySignature() 120 Slog.w(TAG, "Debuggable build, but have no debug key"); in verifySignature() 124 Slog.e(TAG, "No prod key; construction failed?"); in verifySignature() [all …]
|