HomeSort by relevance Sort by last modified time
    Searched refs:STARTTLS (Results 1 - 8 of 8) sorted by null

  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
ImapConstants.java 79 public static final String STARTTLS = "STARTTLS";
134 public static final String CAPABILITY_STARTTLS = "STARTTLS";
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapConstants.java 80 public static final String STARTTLS = "STARTTLS";
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapConnection.java 57 /** STARTTLS capability per RFC 3501 */
154 capabilities.contains(ImapConstants.STARTTLS);
235 if (capabilities.contains(ImapConstants.STARTTLS)) {
618 // STARTTLS
619 executeSimpleCommand(ImapConstants.STARTTLS);
  /prebuilts/go/darwin-x86/src/net/smtp/
smtp.go 9 // STARTTLS RFC 3207
150 // StartTLS sends the STARTTLS command and encrypts all further communication.
151 // Only servers that advertise the STARTTLS extension support this function.
152 func (c *Client) StartTLS(config *tls.Config) error {
156 _, _, err := c.cmd(220, "STARTTLS")
167 // The return values are their zero values if StartTLS did
315 if ok, _ := c.Extension("STARTTLS"); ok {
320 if err = c.StartTLS(config); err != nil {
smtp_test.go 378 err = c.StartTLS(nil)
447 "STARTTLS\n",
641 if err := c.StartTLS(cfg); err != nil {
642 t.Errorf("StartTLS: %v", err)
686 send("250-STARTTLS")
688 case "STARTTLS":
  /prebuilts/go/linux-x86/src/net/smtp/
smtp.go 9 // STARTTLS RFC 3207
150 // StartTLS sends the STARTTLS command and encrypts all further communication.
151 // Only servers that advertise the STARTTLS extension support this function.
152 func (c *Client) StartTLS(config *tls.Config) error {
156 _, _, err := c.cmd(220, "STARTTLS")
167 // The return values are their zero values if StartTLS did
315 if ok, _ := c.Extension("STARTTLS"); ok {
320 if err = c.StartTLS(config); err != nil {
smtp_test.go 378 err = c.StartTLS(nil)
447 "STARTTLS\n",
641 if err := c.StartTLS(cfg); err != nil {
642 t.Errorf("StartTLS: %v", err)
686 send("250-STARTTLS")
688 case "STARTTLS":
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
ImapConnection.java 170 // STARTTLS is required in the OMTP standard but not every implementation support it.
173 executeSimpleCommand(ImapConstants.STARTTLS);

Completed in 592 milliseconds