OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:testauth
(Results
1 - 11
of
11
) sorted by null
/packages/apps/Email/tests/src/com/android/email/mail/
StoreTests.java
60
HostAuth
testAuth
= new HostAuth();
61
testAccount.mHostAuthRecv =
testAuth
;
62
testAuth
.mAddress = "pop3.google.com";
63
testAuth
.mProtocol = "pop3";
73
testAuth
= new HostAuth();
74
testAccount.mHostAuthRecv =
testAuth
;
75
testAuth
.mAddress = "imap.google.com";
76
testAuth
.mProtocol = "imap";
85
testAuth
= new HostAuth();
86
testAuth
.mAddress = "unknown.google.com"
[
all
...]
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/tests/testauth/
TestauthConstants.java
17
package com.android.contacts.common.tests.
testauth
;
20
public static final String LOG_TAG = "
Testauth
";
TestAuthenticationService.java
17
package com.android.contacts.common.tests.
testauth
;
TestSyncService.java
16
package com.android.contacts.common.tests.
testauth
;
TestSyncAdapter.java
16
package com.android.contacts.common.tests.
testauth
;
TestAuthenticator.java
17
package com.android.contacts.common.tests.
testauth
;
/packages/apps/ContactsCommon/tests/
AndroidManifest.xml
24
<service android:name="com.android.contacts.common.tests.
testauth
.TestSyncService$Basic" android:exported="true">
/packages/apps/Email/tests/src/com/android/email/mail/transport/
SmtpSenderUnitTests.java
70
HostAuth
testAuth
= new HostAuth();
73
testAuth
.setLogin("user", "password");
74
testAuth
.setConnection("smtp", "server", 999);
75
testAccount.mHostAuthSend =
testAuth
;
/packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java
151
HostAuth
testAuth
= new HostAuth();
154
testAuth
.setLogin("user", "password");
155
testAuth
.setConnection("imap", "server", 999);
156
testAccount.mHostAuthRecv =
testAuth
;
344
HostAuth
testAuth
;
348
testAuth
= new HostAuth();
349
testAuth
.setLogin("user1", "password");
350
testAuth
.setConnection("imap", "server", 999);
352
testAccount.mHostAuthRecv =
testAuth
;
356
testAuth
= new HostAuth()
[
all
...]
Pop3StoreUnitTests.java
73
HostAuth
testAuth
= new HostAuth();
76
testAuth
.setLogin("user", "password");
77
testAuth
.setConnection("pop3", "server", 999);
78
testAccount.mHostAuthRecv =
testAuth
;
[
all
...]
/packages/apps/Contacts/tests/
AndroidManifest.xml
97
<service android:name=".
testauth
.TestAuthenticationService$Basic" android:exported="true">
Completed in 103 milliseconds