HomeSort by relevance Sort by last modified time
    Searched refs:ftp (Results 1 - 25 of 57) sorted by null

1 2 3

  /bionic/libc/tools/zoneinfo/
update-tzdata.py 75 def FtpRetrieveFile(ftp, filename):
76 ftp.retrbinary('RETR %s' % filename, open(filename, 'wb').write)
79 def FtpRetrieveFileAndSignature(ftp, data_filename):
80 """Downloads and repackages the given data from the given FTP server."""
82 FtpRetrieveFile(ftp, data_filename)
86 FtpRetrieveFile(ftp, signature_filename)
200 # The FTP server lets you download intermediate releases, and also lets you
205 ftp = ftplib.FTP('ftp.iana.org'
    [all...]
  /external/chromium_org/chrome/browser/translate/
translate_service_unittest.cc 36 std::string ftp = std::string(url::kFtpScheme) + "://google.com/pub"; local
37 GURL ftp_url = GURL(ftp);
  /external/valgrind/main/drd/scripts/
download-and-build-gcc 10 FSF_MIRROR=ftp://ftp.easynet.be/gnu
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/
buildAll.bat 23 REM FTP user/password, required for Windows to ftp. Without it, no push.
42 if x%1==x-ftp set ftpUser=-DftpUser=%2 && set ftpPassword=-DftpPassword=%3 && shift && shift && shift && goto processcmdlineargs
52 echo "usage: buildAll [-mapVersionTag HEAD|<branch name>] [-vm <url to java executable to run build>] [-bc <bootclasspath>] [-target <buildall target to execute>] [-buildID <buildID, e.g. 2.1.2>] [-ftp <userid> <password>] I|M"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ftplib.py 3 # Modified by Giampaolo Rodola' to test FTP class, IPv6 and TLS
406 self.client = ftplib.FTP(timeout=10)
559 self.client = ftplib.FTP()
676 ftplib.FTP.port = self.port
708 ftp = ftplib.FTP("localhost")
711 self.assertEqual(ftp.sock.gettimeout(), 30)
713 ftp.close()
720 ftp = ftplib.FTP("localhost", timeout=None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ftplib.py 3 # Modified by Giampaolo Rodola' to test FTP class, IPv6 and TLS
406 self.client = ftplib.FTP(timeout=10)
559 self.client = ftplib.FTP()
676 ftplib.FTP.port = self.port
708 ftp = ftplib.FTP("localhost")
711 self.assertEqual(ftp.sock.gettimeout(), 30)
713 ftp.close()
720 ftp = ftplib.FTP("localhost", timeout=None
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-commons-net.jar 
  /external/bison/build-aux/
gnupload 43 <http://www.gnu.org/prep/maintain/html_node/Automated-FTP-Uploads.html>
72 ftp.gnu.org:DIRECTORY
73 build directive files and upload files by FTP
74 download.gnu.org.ua:{alpha|ftp}/DIRECTORY
84 1. Upload foobar-1.0.tar.gz to ftp.gnu.org:
85 gnupload --to ftp.gnu.org:foobar foobar-1.0.tar.gz
87 2. Upload foobar-1.0.tar.gz and foobar-1.0.tar.xz to ftp.gnu.org:
88 gnupload --to ftp.gnu.org:foobar foobar-1.0.tar.gz foobar-1.0.tar.xz
91 gnupload --to ftp.gnu.org:foobar \\
97 --to sources.redhat.com:~ftp/pub/foobar \
    [all...]
  /external/chromium_org/third_party/binutils/
build-all.sh 26 wget -c http://ftp.gnu.org/gnu/binutils/binutils-$VERSION.tar.bz2
29 wget -c -q http://ftp.gnu.org/gnu/binutils/binutils-$VERSION.tar.bz2.sig
  /external/chromium_org/third_party/icu/source/test/intltest/
tfsmalls.cpp 167 Formattable* ftp = new Formattable(); local
168 if (!ftp || !(ftp->getType() == Formattable::kLong) || !(ftp->getLong() == 0)) {
171 delete ftp;
  /external/icu/icu4c/source/test/intltest/
tfsmalls.cpp 167 Formattable* ftp = new Formattable(); local
168 if (!ftp || !(ftp->getType() == Formattable::kLong) || !(ftp->getLong() == 0)) {
171 delete ftp;
  /external/chromium_org/third_party/skia/src/core/
SkBitmapFilter.h 65 SkFixed *ftp = fFilterTable;
71 *ftp++ = SkFloatToFixed(filter_value);
  /external/skia/src/core/
SkBitmapFilter.h 65 SkFixed *ftp = fFilterTable;
71 *ftp++ = SkFloatToFixed(filter_value);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ftplib.py 1 """An FTP client class and some helper functions.
3 Based on RFC 959: File Transfer Protocol (FTP), by J. Postel and J. Reynolds
7 >>> from ftplib import FTP
8 >>> ftp = FTP('ftp.python.org') # connect to host, default port
9 >>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@
11 >>> ftp.retrlines('LIST') # list directory contents
17 d-wxrwxr-x 2 ftp wheel 1024 Sep 5 13:43 incoming
23 >>> ftp.quit(
    [all...]
urlparse.py 37 uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'imap',
41 uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet',
45 uses_params = ['ftp', 'hdl', 'prospero', 'http', 'imap',
55 uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news',
urllib.py 45 MAXFTPCACHE = 10 # Trim the ftp cache beyond this size
148 # ftp cache by assigning to the .ftpcache member;
457 """Use local file or FTP depending on form of URL."""
503 """Use FTP protocol."""
505 raise IOError, ('ftp error', 'proxy support for ftp protocol currently not implemented')
512 if not host: raise IOError, ('ftp error', 'no host given')
553 mtype = mimetypes.guess_type("ftp:" + url)[0]
560 return addinfourl(fp, headers, "ftp:" + url)
562 raise IOError, ('ftp error', msg), sys.exc_info()[2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ftplib.py 1 """An FTP client class and some helper functions.
3 Based on RFC 959: File Transfer Protocol (FTP), by J. Postel and J. Reynolds
7 >>> from ftplib import FTP
8 >>> ftp = FTP('ftp.python.org') # connect to host, default port
9 >>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@
11 >>> ftp.retrlines('LIST') # list directory contents
17 d-wxrwxr-x 2 ftp wheel 1024 Sep 5 13:43 incoming
23 >>> ftp.quit(
    [all...]
urlparse.py 37 uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'imap',
41 uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet',
45 uses_params = ['ftp', 'hdl', 'prospero', 'http', 'imap',
55 uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news',
urllib.py 45 MAXFTPCACHE = 10 # Trim the ftp cache beyond this size
148 # ftp cache by assigning to the .ftpcache member;
457 """Use local file or FTP depending on form of URL."""
503 """Use FTP protocol."""
505 raise IOError, ('ftp error', 'proxy support for ftp protocol currently not implemented')
512 if not host: raise IOError, ('ftp error', 'no host given')
553 mtype = mimetypes.guess_type("ftp:" + url)[0]
560 return addinfourl(fp, headers, "ftp:" + url)
562 raise IOError, ('ftp error', msg), sys.exc_info()[2
    [all...]
  /external/chromium_org/net/
net.target.darwin-arm.mk 232 net/ftp/ftp_auth_cache.cc \
233 net/ftp/ftp_ctrl_response_buffer.cc \
234 net/ftp/ftp_directory_listing_parser.cc \
235 net/ftp/ftp_directory_listing_parser_ls.cc \
236 net/ftp/ftp_directory_listing_parser_netware.cc \
237 net/ftp/ftp_directory_listing_parser_os2.cc \
238 net/ftp/ftp_directory_listing_parser_vms.cc \
239 net/ftp/ftp_directory_listing_parser_windows.cc \
240 net/ftp/ftp_network_layer.cc \
241 net/ftp/ftp_network_session.cc
    [all...]
net.target.darwin-arm64.mk 232 net/ftp/ftp_auth_cache.cc \
233 net/ftp/ftp_ctrl_response_buffer.cc \
234 net/ftp/ftp_directory_listing_parser.cc \
235 net/ftp/ftp_directory_listing_parser_ls.cc \
236 net/ftp/ftp_directory_listing_parser_netware.cc \
237 net/ftp/ftp_directory_listing_parser_os2.cc \
238 net/ftp/ftp_directory_listing_parser_vms.cc \
239 net/ftp/ftp_directory_listing_parser_windows.cc \
240 net/ftp/ftp_network_layer.cc \
241 net/ftp/ftp_network_session.cc
    [all...]
net.target.darwin-mips.mk 232 net/ftp/ftp_auth_cache.cc \
233 net/ftp/ftp_ctrl_response_buffer.cc \
234 net/ftp/ftp_directory_listing_parser.cc \
235 net/ftp/ftp_directory_listing_parser_ls.cc \
236 net/ftp/ftp_directory_listing_parser_netware.cc \
237 net/ftp/ftp_directory_listing_parser_os2.cc \
238 net/ftp/ftp_directory_listing_parser_vms.cc \
239 net/ftp/ftp_directory_listing_parser_windows.cc \
240 net/ftp/ftp_network_layer.cc \
241 net/ftp/ftp_network_session.cc
    [all...]
net.target.darwin-mips64.mk 232 net/ftp/ftp_auth_cache.cc \
233 net/ftp/ftp_ctrl_response_buffer.cc \
234 net/ftp/ftp_directory_listing_parser.cc \
235 net/ftp/ftp_directory_listing_parser_ls.cc \
236 net/ftp/ftp_directory_listing_parser_netware.cc \
237 net/ftp/ftp_directory_listing_parser_os2.cc \
238 net/ftp/ftp_directory_listing_parser_vms.cc \
239 net/ftp/ftp_directory_listing_parser_windows.cc \
240 net/ftp/ftp_network_layer.cc \
241 net/ftp/ftp_network_session.cc
    [all...]
net.target.darwin-x86.mk 232 net/ftp/ftp_auth_cache.cc \
233 net/ftp/ftp_ctrl_response_buffer.cc \
234 net/ftp/ftp_directory_listing_parser.cc \
235 net/ftp/ftp_directory_listing_parser_ls.cc \
236 net/ftp/ftp_directory_listing_parser_netware.cc \
237 net/ftp/ftp_directory_listing_parser_os2.cc \
238 net/ftp/ftp_directory_listing_parser_vms.cc \
239 net/ftp/ftp_directory_listing_parser_windows.cc \
240 net/ftp/ftp_network_layer.cc \
241 net/ftp/ftp_network_session.cc
    [all...]
net.target.darwin-x86_64.mk 232 net/ftp/ftp_auth_cache.cc \
233 net/ftp/ftp_ctrl_response_buffer.cc \
234 net/ftp/ftp_directory_listing_parser.cc \
235 net/ftp/ftp_directory_listing_parser_ls.cc \
236 net/ftp/ftp_directory_listing_parser_netware.cc \
237 net/ftp/ftp_directory_listing_parser_os2.cc \
238 net/ftp/ftp_directory_listing_parser_vms.cc \
239 net/ftp/ftp_directory_listing_parser_windows.cc \
240 net/ftp/ftp_network_layer.cc \
241 net/ftp/ftp_network_session.cc
    [all...]

Completed in 3557 milliseconds

1 2 3