HomeSort by relevance Sort by last modified time
    Searched defs:ftp (Results 1 - 21 of 21) sorted by null

  /libcore/ojluni/src/main/java/sun/net/ftp/
FtpDirParser.java 26 package sun.net.ftp;
31 * drwxr-xr-x 1 user01 ftp 512 Jan 29 23:32 prog
43 * @param line a <code>String</code>, a line sent by the FTP server as a
FtpLoginException.java 26 package sun.net.ftp;
32 * FTP login operation.
FtpProtocolException.java 25 package sun.net.ftp;
28 * Thrown to indicate that the FTP server reported an error.
FtpClientProvider.java 25 package sun.net.ftp;
151 provider = new sun.net.ftp.impl.DefaultFtpClientProvider();
FtpDirEntry.java 25 package sun.net.ftp;
31 * A {@code FtpDirEntry} is a class agregating all the information that the FTP client
35 * due to specific FTP server limitations.
37 * @see sun.net.ftp.FtpDirParser
89 * Returns the user name of the owner of the file as returned by the FTP
113 * Returns the group name of the file as returned by the FTP
137 * Returns the size of the remote file as it was returned by the FTP
159 * Returns the type of the remote file as it was returned by the FTP
188 * by the FTP server, if provided, {@code null} otherwise.
FtpClient.java 25 package sun.net.ftp;
34 * A class that implements the FTP protocol according to
41 * Which includes support for FTP over SSL/TLS (aka ftps).
43 * {@code FtpClient} provides all the functionalities of a typical FTP
50 * cl.connect("ftp.gnu.org").login("anonymous", "john.doe@mydomain.com".toCharArray())).changeDirectory("pub/gnu");
60 * can occur during an FTP session. The first kind are the network related issues
64 * {@link IOException}. The second kind are the errors reported by the FTP server,
70 * too much sense, due to the very sequential nature of FTP, to provide a
85 * Returns the default FTP port number.
131 * specified host on the default FTP port
    [all...]
FtpReplyCode.java 25 package sun.net.ftp;
28 * This class describes a FTP protocol reply code and associates a meaning
  /libcore/ojluni/src/main/java/sun/net/ftp/impl/
DefaultFtpClientProvider.java 25 package sun.net.ftp.impl;
29 * Uses sun.net.ftp.FtpCLient.
31 public class DefaultFtpClientProvider extends sun.net.ftp.FtpClientProvider {
34 public sun.net.ftp.FtpClient createFtpClient() {
35 return sun.net.ftp.impl.FtpClient.create();
FtpClient.java 25 package sun.net.ftp.impl;
47 import sun.net.ftp.*;
51 public class FtpClient extends sun.net.ftp.FtpClient {
56 PlatformLogger.getLogger("sun.net.ftp.FtpClient");
66 /** remember the ftp server name because we may need it */
75 /** The last reply code from the ftp daemon. */
91 // drwxr-xr-x 1 user01 ftp 512 Jan 29 23:32 prog
93 // drwxr-xr-x 1 user01 ftp 512 Jan 29 1997 prog
190 * drwxr-xr-x 1 user01 ftp 512 Jan 29 23:32 prog
191 * drwxr-xr-x 1 user01 ftp 512 Jan 29 1997 pro
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
FtpURLConnection.java 28 * FTP stream opener.
31 package sun.net.www.protocol.ftp;
55 import sun.net.ftp.FtpClient;
56 import sun.net.ftp.FtpProtocolException;
64 * This class Opens an FTP input (or output) stream given a URL.
65 * It works as a one shot FTP transfer :
74 * <code>URL url = new URL("ftp://ftp.sun.com/pub/test.txt");<p>
80 * @see sun.net.ftp.FtpClient
84 // Android-changed: Removed support for proxying FTP over HTTP
95 FtpClient ftp = null; field in class:FtpURLConnection
125 FtpClient ftp; field in class:FtpURLConnection.FtpInputStream
148 FtpClient ftp; field in class:FtpURLConnection.FtpOutputStream
    [all...]
Handler.java 27 * FTP stream opener
30 package sun.net.www.protocol.ftp;
36 /** open an ftp connection given a URL */
  /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/syslinux/gpxe/src/config/
config.c 119 REQUIRE_OBJECT ( ftp ); variable
  /external/syslinux/gpxe/src/net/tcp/
ftp.c 15 #include <gpxe/ftp.h>
23 FEATURE ( FEATURE_PROTOCOL, "FTP", DHCP_EB_FEATURE_FTP, 1 );
26 * FTP states
28 * These @b must be sequential, i.e. a successful FTP session must
44 * An FTP request
55 /** FTP control channel interface */
57 /** FTP data channel interface */
66 /** FTP status code, as text */
73 * Free FTP request
78 struct ftp_request *ftp local
179 struct ftp_request *ftp = local
310 struct ftp_request *ftp = local
386 struct ftp_request *ftp = local
411 struct ftp_request *ftp = local
447 struct ftp_request *ftp = local
480 struct ftp_request *ftp; local
    [all...]
  /external/mksh/src/
exec.c 701 struct tbl *ftp; local
713 !(ftp = findfunc(cp, hash(cp), false)) ||
714 !(ftp->flag & ISSET)) {
716 if ((ftp = findcom(cp, FC_BI)) &&
717 (ftp->type == CSHELL) &&
718 (ftp->flag & LOW_BI)) {
719 tp = ftp;
732 tp = ftp;
    [all...]
  /external/bison/
maint.mk 129 # Use ftp.gnu.org for stable releases.
132 gnu_ftp_host-stable = ftp.gnu.org
135 url_dir_list ?= $(if $(call _equal,$(gnu_rel_host),ftp.gnu.org), \
137 ftp://$(gnu_rel_host)/gnu/$(PACKAGE))
    [all...]
  /external/curl/lib/
ftp.c 59 #include "ftp.h"
163 * FTP protocol handler.
167 "FTP", /* scheme */
217 * HTTP-proxyed FTP protocol handler.
221 "FTP", /* scheme */
279 * NOTE: back in the old days, we added code in the FTP code that made NOBODY
499 struct FTP *ftp = data->req.protop; local
512 *(ftp->bytecountp)=0;
523 SECONDARYSOCKET, ftp->bytecountp)
850 struct FTP *ftp = conn->data->req.protop; local
1405 struct FTP *ftp = conn->data->req.protop; local
1448 struct FTP *ftp = conn->data->req.protop; local
1469 struct FTP *ftp = conn->data->req.protop; local
1577 struct FTP *ftp = conn->data->req.protop; local
1634 struct FTP *ftp = conn->data->req.protop; local
1732 struct FTP *ftp = data->req.protop; local
2089 struct FTP *ftp = data->req.protop; local
2223 struct FTP *ftp = data->req.protop; local
2417 struct FTP *ftp = data->req.protop; local
2574 struct FTP *ftp = data->req.protop; local
3173 struct FTP *ftp = data->req.protop; local
3578 struct FTP *ftp = data->req.protop; local
3744 struct FTP *ftp = conn->data->req.protop; local
4176 struct FTP *ftp = data->req.protop; local
4365 struct FTP *ftp = conn->data->req.protop; local
4461 struct FTP *ftp; local
    [all...]
  /external/ltp/testcases/kernel/fs/fsstress/
fsstress.c 560 flist_t *ftp; local
562 ftp = &flist[ft];
563 if (ftp->nfiles == ftp->nslots) {
564 ftp->nslots += FLIST_SLOT_INCR;
565 ftp->fents = realloc(ftp->fents, ftp->nslots * sizeof(fent_t));
567 fep = &ftp->fents[ftp->nfiles++]
719 flist_t *ftp; local
    [all...]
  /external/e2fsprogs/contrib/
fsstress.c 587 flist_t *ftp; local
589 ftp = &flist[ft];
590 if (ftp->nfiles == ftp->nslots) {
591 ftp->nslots += FLIST_SLOT_INCR;
592 ftp->fents = realloc(ftp->fents, ftp->nslots * sizeof(fent_t));
594 fep = &ftp->fents[ftp->nfiles++]
746 flist_t *ftp; local
    [all...]
  /external/libvncserver/webclients/java-applet/ssl/
SignedUltraViewerSSL.jar 
UltraViewerSSL.jar 

Completed in 786 milliseconds