Home | History | Annotate | Download | only in store

Lines Matching refs:sensitive

271      * @param sensitive If true, the command will not be logged
274 String sendCommand(String command, boolean sensitive)
276 LogUtils.d(Logging.LOG_TAG, "sendCommand %s", (sensitive ? IMAP_REDACTED_LOG : command));
278 return sendCommandInternal(command, sensitive);
281 String sendCommandInternal(String command, boolean sensitive)
288 mTransport.writeLine(commandToSend, sensitive ? IMAP_REDACTED_LOG : null);
289 mDiscourse.addSentCommand(sensitive ? IMAP_REDACTED_LOG : commandToSend);
301 String sendComplexCommand(List<String> commands, boolean sensitive) throws MessagingException,
321 mDiscourse.addSentCommand(sensitive ? IMAP_REDACTED_LOG : commandToSend);
367 * @param sensitive whether the command should be redacted in logs (used for login)
372 List<ImapResponse> executeSimpleCommand(String command, boolean sensitive)
376 sendCommand(command, sensitive);
385 * @param sensitive whether the command should be redacted in logs (used for login)
390 List<ImapResponse> executeComplexCommand(List<String> commands, boolean sensitive)
392 sendComplexCommand(commands, sensitive);