/external/curl/tests/data/ |
test803 | 7 UIDVALIDITY 24 IMAP SELECT UIDVALIDITY Failure 27 'imap://%HOSTIP:%IMAPPORT/803;UIDVALIDITY=12345/;UID=123' -u user:secret 34 # CURLE_REMOTE_FILE_NOT_FOUND - UIDVALIDITY mismatch
|
test802 | 7 UIDVALIDITY 29 IMAP SELECT UIDVALIDITY Success 32 'imap://%HOSTIP:%IMAPPORT/802;UIDVALIDITY=3857529045/;UID=123/;SECTION=TEXT' -u user:secret
|
test808 | 18 * OK [UIDVALIDITY 3857529045] UIDs valid
|
/external/curl/lib/ |
imap.h | 59 char *uidvalidity; /* UIDVALIDITY to check in select */ member in struct:IMAP 82 char *mailbox_uidvalidity; /* UIDVALIDITY parsed from select response */
|
imap.c | 1058 /* See if this is an UIDVALIDITY response */ 1059 if(sscanf(line + 2, "OK [UIDVALIDITY %19[0123456789]]", tmp) == 1) { 1065 /* Check if the UIDVALIDITY has been specified and matches */ 1066 if(imap->uidvalidity && imapc->mailbox_uidvalidity && 1067 strcmp(imap->uidvalidity, imapc->mailbox_uidvalidity)) { 1068 failf(conn->data, "Mailbox UIDVALIDITY has changed"); [all...] |
/packages/apps/Email/provider_src/com/android/email/mail/store/imap/ |
ImapConstants.java | 93 public static final String UIDVALIDITY = "UIDVALIDITY";
|
/packages/services/Telephony/src/com/android/phone/common/mail/store/imap/ |
ImapConstants.java | 93 public static final String UIDVALIDITY = "UIDVALIDITY";
|
/external/curl/docs/ |
FEATURES | 171 - select a mailbox with support for verifying the UIDVALIDITY
|
/external/curl/docs/libcurl/opts/ |
CURLOPT_URL.3 | 177 in 7.30.0) or select, but can also be used to check the UIDVALIDITY of the 190 imap://user:password@mail.example.com/INBOX;UIDVALIDITY=50/;UID=2 - Selects 191 the user's inbox, checks the UIDVALIDITY of the mailbox is 50 and fetches
|
/packages/apps/Email/provider_src/com/android/email/mail/store/ |
ImapFolder.java | 131 // * OK [UIDVALIDITY 1125022061] UIDs valid 199 ImapConstants.STATUS + " \"%s\" (" + ImapConstants.UIDVALIDITY + ")", [all...] |
ImapStore.java | 68 * TODO Need to start keeping track of UIDVALIDITY
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
imaplib.py | 640 Mandated responses are ('FLAGS', 'EXISTS', 'RECENT', 'UIDVALIDITY'), so [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
imaplib.py | 640 Mandated responses are ('FLAGS', 'EXISTS', 'RECENT', 'UIDVALIDITY'), so [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
imaplib.py | 640 Mandated responses are ('FLAGS', 'EXISTS', 'RECENT', 'UIDVALIDITY'), so [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
imaplib.py | 640 Mandated responses are ('FLAGS', 'EXISTS', 'RECENT', 'UIDVALIDITY'), so [all...] |
/packages/services/Telephony/src/com/android/phone/common/mail/store/ |
ImapFolder.java | 108 // * OK [UIDVALIDITY 1125022061] UIDs valid
|
/packages/apps/Email/tests/src/com/android/email/mail/store/ |
ImapStoreUnitTests.java | [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
EmailContent.java | [all...] |
/external/curl/tests/ |
ftpserver.pl | [all...] |