OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:securityType
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupOutgoingFragment.java
315
int
securityType
= (Integer)((SpinnerOption)mSecurityTypeView.getSelectedItem()).value;
316
int port = (
securityType
& HostAuth.FLAG_SSL) != 0 ? SMTP_PORT_SSL : SMTP_PORT_NORMAL;
368
int
securityType
= (Integer)((SpinnerOption)mSecurityTypeView.getSelectedItem()).value;
369
sendAuth.setConnection(mBaseScheme, serverAddress, serverPort,
securityType
);
AccountSetupIncomingFragment.java
396
int
securityType
= (Integer)((SpinnerOption)mSecurityTypeView.getSelectedItem()).value;
397
boolean useSsl = ((
securityType
& HostAuth.FLAG_SSL) != 0);
469
int
securityType
= (Integer) ((SpinnerOption) mSecurityTypeView.getSelectedItem()).value;
470
recvAuth.setConnection(mBaseScheme, serverAddress, serverPort,
securityType
);
Completed in 113 milliseconds