HomeSort by relevance Sort by last modified time
    Searched defs:FTP (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 593 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>();
594 if (!FTP)
597 if (FTP->getNumParams() == 1) {
600 const PointerType *PT = FTP->getParamType(0)->getAs<PointerType>();
606 } else if (FTP->getNumParams() != 0)
636 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>();
637 if (!FTP)
641 if (FTP->getNumParams() != 0)
711 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>();
712 if (!FTP)
    [all...]
RetainCountChecker.cpp     [all...]
  /external/curl/lib/
ftp.h 40 * FTP unique setup
100 /* This FTP struct is used in the Curl_easy. All FTP data that is
104 struct FTP {
138 curl_ftpfile prevmethod; /* ftp method in previous transfer */
144 ftpstate state; /* always use ftp.c:state() to change state! */
  /external/python/cpython2/Lib/
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...]
  /external/python/cpython3/Lib/
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...]
  /prebuilts/gdb/darwin-x86/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...]
  /prebuilts/gdb/linux-x86/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...]
  /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...]
  /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...]
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
BtEnum.py 69 FTP = "0000000A-0000-1000-8000-00805F9B34FB"
  /external/clang/lib/CodeGen/
CGCall.cpp 142 CanQual<FunctionProtoType> FTP,
146 RequiredArgs::forPrototypePlus(FTP, prefix.size(), FD);
148 appendParameterTypes(CGT, prefix, paramInfos, FTP, FD);
149 CanQualType resultType = FTP->getReturnType().getUnqualifiedType();
153 FTP->getExtInfo(), paramInfos,
160 CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionProtoType> FTP,
164 FTP, FD);
213 const FunctionProtoType *FTP,
225 FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>(), MD);
280 CanQual<FunctionProtoType> FTP = GetFormalType(MD)
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
  /prebuilts/devtools/tools/lib/
sdklib.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0/
sdklib-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-alpha5/
sdklib-25.0.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-alpha7/
sdklib-25.0.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-alpha9/
sdklib-25.0.0-alpha9.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-beta2/
sdklib-25.0.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-beta5/
sdklib-25.0.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-beta6/
sdklib-25.0.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-beta7/
sdklib-25.0.0-beta7.jar 

Completed in 682 milliseconds

1 2 3 4 5 6 7