/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
poplib.py | 40 (e.g.: retr(1) and retr('1') both work equally well. 47 RETR msg retr(msg) 219 def retr(self, which): member in class:POP3 224 return self._longcmd('RETR %s' % which) 412 (header, msg, octets) = a.retr(i)
|
ftplib.py | 92 To download a file, use ftp.retrlines('RETR ' + filename), 398 cmd: A RETR command. 422 cmd: A RETR, LIST, NLST, or MLSD command. 436 if self.debugging > 2: print '*retr*', repr(line) 714 if self.debugging > 2: print '*retr*', repr(line) 772 '''Parse the '150' response for a RETR request. 874 # So: STOR before RETR, because here the target is a "user". 877 sreply = source.sendcmd('RETR ' + sourcename) [all...] |
urllib.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
poplib.py | 40 (e.g.: retr(1) and retr('1') both work equally well. 47 RETR msg retr(msg) 219 def retr(self, which): member in class:POP3 224 return self._longcmd('RETR %s' % which) 412 (header, msg, octets) = a.retr(i)
|
ftplib.py | 92 To download a file, use ftp.retrlines('RETR ' + filename), 398 cmd: A RETR command. 422 cmd: A RETR, LIST, NLST, or MLSD command. 436 if self.debugging > 2: print '*retr*', repr(line) 714 if self.debugging > 2: print '*retr*', repr(line) 772 '''Parse the '150' response for a RETR request. 874 # So: STOR before RETR, because here the target is a "user". 877 sreply = source.sendcmd('RETR ' + sourcename) [all...] |
urllib.py | [all...] |
/external/libcap-ng/libcap-ng-0.7/utils/ |
netcap.c | 253 unsigned long rxq, txq, time_len, retr, inode; local 274 &state, &txq, &rxq, &timer_run, &time_len, &retr, 287 unsigned long rxq, txq, time_len, retr, inode; local 308 &state, &txq, &rxq, &timer_run, &time_len, &retr, 321 unsigned long rxq, txq, time_len, retr, inode; local 342 &state, &txq, &rxq, &timer_run, &time_len, &retr,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ftplib.py | 25 # RETR, LIST and NLST commands are issued 187 self.push('125 retr ok') 488 self.client.retrbinary('retr', received.append) 494 self.client.retrbinary('retr', received.append, rest=rest) 502 self.client.retrlines('retr', received.append) 580 def retr(): function in function:TestIPv6Environment.test_transfer 582 self.client.retrbinary('retr', received.append) 585 retr() 587 retr()
|
test_poplib.py | 20 # the dummy data returned by server when LIST and RETR commands are issued 199 self.assertEqual(self.client.retr('foo'), expected)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ftplib.py | 25 # RETR, LIST and NLST commands are issued 187 self.push('125 retr ok') 488 self.client.retrbinary('retr', received.append) 494 self.client.retrbinary('retr', received.append, rest=rest) 502 self.client.retrlines('retr', received.append) 580 def retr(): function in function:TestIPv6Environment.test_transfer 582 self.client.retrbinary('retr', received.append) 585 retr() 587 retr()
|
test_poplib.py | 20 # the dummy data returned by server when LIST and RETR commands are issued 199 self.assertEqual(self.client.retr('foo'), expected)
|
/packages/apps/Email/src/com/android/email/mail/store/ |
Pop3Store.java | 552 * is fetched. This is implemented with RETR for lines = -1 or TOP 554 * emulated with RETR and extra lines are thrown away. 566 response = executeSimpleCommand(String.format(Locale.US, "RETR %d", messageId)); 568 // Fetch partial message. Try "TOP", and fall back to slower "RETR" if necessary 575 String.format(Locale.US, "RETR %d", messageId));
|
/external/chromium/net/ftp/ |
ftp_network_transaction.cc | 958 // RETR command 960 std::string command = "RETR " + GetRequestPathForFtpCommand(false); 989 // It's possible that RETR failed because the path is a directory. 1003 // an infinite loop (RETR can later send CWD, and CWD can later send RETR). [all...] |
ftp_network_transaction_unittest.cc | 340 return Verify("RETR /file\r\n", data, PRE_QUIT, "200 OK\r\n"); 366 return Verify("RETR /file\r\n", data, PRE_QUIT, "200 OK\r\n"); 392 return Verify("RETR /file\r\n", data, PRE_QUIT, 480 return Verify("RETR ANONYMOUS_ROOT:[000000]file\r\n", data, PRE_QUIT, 507 return Verify("RETR / !\"#$%y\200\201\r\n", data, PRE_QUIT, 529 return Verify("RETR /file\r\n", data, PRE_QUIT, [all...] |
/bionic/libc/tools/zoneinfo/ |
update-tzdata.py | 69 ftp.retrbinary('RETR %s' % filename, open(filename, 'wb').write)
|
/external/chromium_org/net/ftp/ |
ftp_network_transaction.cc | 1021 // RETR command 1023 std::string command = "RETR " + GetRequestPathForFtpCommand(false); [all...] |
ftp_network_transaction_unittest.cc | 359 return Verify("RETR /file\r\n", data, PRE_QUIT, "200 OK\r\n"); 386 return Verify("RETR /file\r\n", data, PRE_QUIT, "200 OK\r\n"); 414 return Verify("RETR /file\r\n", data, PRE_QUIT, 523 return Verify("RETR ANONYMOUS_ROOT:[000000]file\r\n", data, PRE_QUIT, 551 return Verify("RETR / !\"#$%y\200\201\r\n", data, PRE_QUIT, 573 return Verify("RETR /file\r\n", data, PRE_QUIT, [all...] |
/libcore/luni/src/main/java/libcore/net/url/ |
FtpURLConnection.java | 273 write("RETR " + file + "\r\n"); 276 write("RETR " + file.substring(1) + "\r\n");
|
/external/kernel-headers/original/linux/sunrpc/ |
xprt.h | 221 void xprt_set_timeout(struct rpc_timeout *to, unsigned int retr, unsigned long incr);
|
/packages/apps/Email/tests/src/com/android/email/mail/store/ |
Pop3StoreUnitTests.java | [all...] |
/external/chromium_org/third_party/libxml/src/ |
nanoftp.c | [all...] |
/external/libxml2/ |
nanoftp.c | [all...] |
/external/chromium_org/net/spdy/ |
spdy_protocol.h | 152 0x00, 0x00, 0x00, 0x0b, 0x72, 0x65, 0x74, 0x72, // ....retr
|
/external/chromium_org/chrome/app/resources/terms/ |
terms_sv.html | [all...] |
/external/chromium_org/chrome/app/policy/ |
policy_templates_sv.xtb | [all...] |