Searched refs:imap (Results 1 – 25 of 161) sorted by relevance
1234567
/external/curl/lib/ |
D | imap.c | 249 struct IMAP *imap = conn->data->req.protop; in imap_endofresp() local 279 if((!imap->custom && !imap_matchresp(line, len, "LIST")) || in imap_endofresp() 280 (imap->custom && !imap_matchresp(line, len, imap->custom) && in imap_endofresp() 281 (!strcasecompare(imap->custom, "STORE") || in imap_endofresp() 283 !strcasecompare(imap->custom, "SELECT") && in imap_endofresp() 284 !strcasecompare(imap->custom, "EXAMINE") && in imap_endofresp() 285 !strcasecompare(imap->custom, "SEARCH") && in imap_endofresp() 286 !strcasecompare(imap->custom, "EXPUNGE") && in imap_endofresp() 287 !strcasecompare(imap->custom, "LSUB") && in imap_endofresp() 288 !strcasecompare(imap->custom, "UID") && in imap_endofresp() [all …]
|
/external/curl/docs/examples/ |
D | Makefile.inc | 32 imap-list imap-lsub imap-fetch imap-store imap-append imap-examine \ 33 imap-search imap-create imap-delete imap-copy imap-noop imap-ssl \ 34 imap-tls imap-multi url2file sftpget ftpsget postinmemory http2-download \ 38 urlapi imap-authzid pop3-authzid smtp-authzid http3 altsvc \
|
/external/curl/tests/data/ |
D | test1321 | 17 imap: sure hit me 44 imap 55 'imap://imap.1321:%IMAPPORT/1321/;MAILINDEX=1' -u user:secret -p -x %HOSTIP:%PROXYPORT 70 CONNECT imap.1321:%IMAPPORT HTTP/1.1 71 Host: imap.1321:%IMAPPORT
|
D | test804 | 25 imap 31 'imap://%HOSTIP:%IMAPPORT/804/;MAILINDEX=123/;SECTION=1' 'imap://%HOSTIP:%IMAPPORT/804/;MAILINDEX=4…
|
D | test815 | 24 imap 30 imap://%HOSTIP:%IMAPPORT/815 -X 'STORE 123 +Flags \Deleted' -u user:secret -: imap://%HOSTIP:%IMAPP…
|
D | test816 | 27 imap 33 imap://%HOSTIP:%IMAPPORT/816 -X 'STORE 123 +Flags \Deleted' -u user:secret -: imap://%HOSTIP:%IMAPP…
|
D | test836 | 33 imap 39 'imap://%HOSTIP:%IMAPPORT/836/;MAILINDEX=1' -u user.one:secret -: 'imap://%HOSTIP:%IMAPPORT/836/;UI…
|
D | test829 | 12 imap 18 imap://%HOSTIP:%IMAPPORT/%0d%0a/829
|
D | test660 | 12 imap 22 imap://%HOSTIP:%IMAPPORT/660
|
D | test896 | 20 imap 26 'imap://%HOSTIP:%IMAPPORT/895/;MAILINDEX=1' -u '"user:sec"ret{' --login-options 'AUTH=dummy'
|
D | test814 | 20 imap 26 imap://%HOSTIP:%IMAPPORT/814 -u user:secret -X 'CHECK'
|
D | test811 | 20 imap 26 imap://%HOSTIP:%IMAPPORT -u user:secret -X 'CREATE 811'
|
D | test812 | 20 imap 26 imap://%HOSTIP:%IMAPPORT -u user:secret -X 'DELETE 812'
|
D | test813 | 20 imap 26 imap://%HOSTIP:%IMAPPORT -u user:secret -X 'RENAME 666 813'
|
D | test817 | 20 imap 26 imap://%HOSTIP:%IMAPPORT -u user:secret -X 'COPY 123 817'
|
D | test803 | 21 imap 27 'imap://%HOSTIP:%IMAPPORT/803;UIDVALIDITY=12345/;MAILINDEX=123' -u user:secret
|
D | test810 | 22 imap 28 imap://%HOSTIP:%IMAPPORT/810?NEW -u user:secret
|
D | test806 | 24 imap 30 imap://%HOSTIP:%IMAPPORT/806 -u user:secret
|
D | test818 | 26 imap 32 imap://%HOSTIP:%IMAPPORT -X NOOP -u user:secret
|
D | test809 | 23 imap 29 imap://%HOSTIP:%IMAPPORT -u user:secret -X 'STATUS 809 (UIDNEXT MESSAGES)'
|
D | test802 | 26 imap 32 'imap://%HOSTIP:%IMAPPORT/802;UIDVALIDITY=3857529045/;MAILINDEX=123/;SECTION=TEXT' -u user:secret
|
/external/deqp/scripts/opengl/ |
D | gen_wrapper.py | 28 from itertools import imap 30 imap=map variable 46 defines = imap(commandAliasDefinition, iface.commands) 47 prototypes = imap(commandWrapperDeclaration, iface.commands)
|
/external/deqp/scripts/egl/ |
D | gtf_wrapper.py | 31 from itertools import imap 33 imap=map variable 97 defines = imap(commandAliasDefinition, defaultIface.commands) 98 prototypes = imap(commandWrapperDeclaration, defaultIface.commands)
|
/external/python/cpython3/Doc/includes/ |
D | mp_pool.py | 54 imap_it = pool.imap(calculatestar, TASKS) 98 print(list(pool.imap(f, list(range(10))))) 104 it = pool.imap(f, list(range(10))) 138 it = pool.imap(calculatestar, TASKS)
|
/external/python/cpython2/Doc/includes/ |
D | mp_pool.py | 69 imap_it = pool.imap(calculatestar, TASKS) 110 C = list(pool.imap(pow3, xrange(N), chunksize=N//8)) 132 C = list(pool.imap(noop, L, chunksize=len(L)//8)) 162 print list(pool.imap(f, range(10))) 168 it = pool.imap(f, range(10)) 202 it = pool.imap(calculatestar, TASKS)
|
1234567