/external/chromium_org/third_party/pyftpdlib/ |
D | README.chromium | 1 Name: Python FTP server library 10 Python FTP server library provides an high-level portable interface to easily 11 write asynchronous FTP servers with Python. Based on asyncore framework 12 pyftpdlib is currently the most complete RFC-959 FTP server implementation
|
/external/apache-harmony/luni/src/test/resources/net.resources/ |
D | README.txt | 12 FTP 14 The FTP folder contains a single text file (nettest.txt) which should be placed 15 in the root or home directory of an FTP account with id "jcltest" with password 55 As with the FTP resource, please do not modify these files in any way as the 65 1. Install the FTP and HTTP documents to their respective server locations as 68 3. Start the HTTP and FTP servers. 78 FTP and SOCKS servers and so on. Isolating these values in a properties file 88 that contains suitable property values if the HTTP, FTP and SOCKS servers were 115 points to the network location of the FTP resources.
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CheckSecuritySyntaxOnly.cpp | 593 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); in checkCall_rand() local 594 if (!FTP) in checkCall_rand() 597 if (FTP->getNumParams() == 1) { in checkCall_rand() 600 const PointerType *PT = FTP->getParamType(0)->getAs<PointerType>(); in checkCall_rand() 606 } else if (FTP->getNumParams() != 0) in checkCall_rand() 636 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); in checkCall_random() local 637 if (!FTP) in checkCall_random() 641 if (FTP->getNumParams() != 0) in checkCall_random() 711 const FunctionProtoType *FTP = FD->getType()->getAs<FunctionProtoType>(); in checkUncheckedReturnValue() local 712 if (!FTP) in checkUncheckedReturnValue() [all …]
|
/external/clang/lib/CodeGen/ |
D | CodeGenABITypes.cpp | 58 const FunctionProtoType *FTP) { in arrangeCXXMethodType() argument 59 return CGM->getTypes().arrangeCXXMethodType(RD, FTP); in arrangeCXXMethodType()
|
D | CGCall.cpp | 93 CanQual<FunctionProtoType> FTP, in arrangeLLVMFunctionInfo() argument 95 RequiredArgs required = RequiredArgs::forPrototypePlus(FTP, prefix.size()); in arrangeLLVMFunctionInfo() 97 for (unsigned i = 0, e = FTP->getNumParams(); i != e; ++i) in arrangeLLVMFunctionInfo() 98 prefix.push_back(FTP->getParamType(i)); in arrangeLLVMFunctionInfo() 99 CanQualType resultType = FTP->getReturnType().getUnqualifiedType(); in arrangeLLVMFunctionInfo() 108 CanQual<FunctionProtoType> FTP) { in arrangeFreeFunctionType() argument 109 return arrangeLLVMFunctionInfo(CGT, false, prefix, FTP, FTP->getExtInfo()); in arrangeFreeFunctionType() 116 CanQual<FunctionProtoType> FTP) { in arrangeCXXMethodType() argument 117 FunctionType::ExtInfo extInfo = FTP->getExtInfo(); in arrangeCXXMethodType() 118 return arrangeLLVMFunctionInfo(CGT, true, prefix, FTP, extInfo); in arrangeCXXMethodType() [all …]
|
D | CodeGenTypes.h | 214 const FunctionProtoType *FTP);
|
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/ |
D | README | 6 resource and test servers for HTTP and FTP. Tests that depend
|
/external/clang/include/clang/CodeGen/ |
D | CodeGenABITypes.h | 64 const FunctionProtoType *FTP);
|
/external/iptables/extensions/ |
D | libxt_ipvs.man | 24 VIP port of the controlling connection to match, e.g. 21 for FTP
|
D | libxt_conntrack.man | 57 existing connection, such as an FTP data transfer, or an ICMP error.
|
D | libxt_rateest.man | 75 FTP server over two lines based on the available bandwidth at the time the data
|
/external/chromium_org/third_party/libxslt/ |
D | INSTALL | 7 either the GNOME FTP or the xmlsoft.org server:
|
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
D | readme.txt | 74 the FTP site given above. Either manually download or use wget: 89 4. Obtain the current version of tzcodeYYYY.tar.gz from the FTP site to
|
/external/icu/icu4c/source/tools/tzcode/ |
D | readme.txt | 74 the FTP site given above. Either manually download or use wget: 89 4. Obtain the current version of tzcodeYYYY.tar.gz from the FTP site to
|
/external/chromium_org/third_party/libxml/src/ |
D | libxml2.spec | 20 available, with existing HTTP and FTP modules and combined to an 39 available, with existing HTTP and FTP modules and combined to an
|
D | libxml.spec.in | 20 available, with existing HTTP and FTP modules and combined to an 39 available, with existing HTTP and FTP modules and combined to an
|
/external/chromium_org/chrome/browser/ |
D | shell_integration_mac.mm | 102 // to open HTML files in a text editor and FTP links with an FTP client.)
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/ |
D | buildAll.bat | 23 REM FTP user/password, required for Windows to ftp. Without it, no push.
|
/external/smack/src/org/xbill/DNS/ |
D | WKSRecord.java | 257 public static final int FTP = 21; field in WKSRecord.Service 484 services.add(FTP, "ftp"); in services.add() argument
|
/external/clang/lib/Rewrite/Frontend/ |
D | RewriteObjC.cpp | 3737 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); in convertFunctionTypeOfBlocks() local 3744 if (FTP) { in convertFunctionTypeOfBlocks() 3745 for (auto &I : FTP->param_types()) { in convertFunctionTypeOfBlocks() 3800 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); in SynthesizeBlockCall() local 3813 if (FTP) { in SynthesizeBlockCall() 3814 for (auto &I : FTP->param_types()) { in SynthesizeBlockCall() 4006 const FunctionProtoType *FTP; in PointerTypeTakesAnyBlockArguments() local 4009 FTP = PT->getPointeeType()->getAs<FunctionProtoType>(); in PointerTypeTakesAnyBlockArguments() 4013 FTP = BPT->getPointeeType()->getAs<FunctionProtoType>(); in PointerTypeTakesAnyBlockArguments() 4015 if (FTP) { in PointerTypeTakesAnyBlockArguments() [all …]
|
D | RewriteModernObjC.cpp | 4655 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); in convertFunctionTypeOfBlocks() local 4662 if (FTP) { in convertFunctionTypeOfBlocks() 4663 for (auto &I : FTP->param_types()) { in convertFunctionTypeOfBlocks() 4716 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); in SynthesizeBlockCall() local 4729 if (FTP) { in SynthesizeBlockCall() 4730 for (auto &I : FTP->param_types()) { in SynthesizeBlockCall() 4939 const FunctionProtoType *FTP; in PointerTypeTakesAnyBlockArguments() local 4942 FTP = PT->getPointeeType()->getAs<FunctionProtoType>(); in PointerTypeTakesAnyBlockArguments() 4946 FTP = BPT->getPointeeType()->getAs<FunctionProtoType>(); in PointerTypeTakesAnyBlockArguments() 4948 if (FTP) { in PointerTypeTakesAnyBlockArguments() [all …]
|
/external/lldb/test/pexpect-2.4/examples/ |
D | README | 24 This demonstrates an FTP "bookmark".
|
/external/zlib/src/as400/ |
D | readme.txt | 64 FTP in text mode, for example) according to the following table:
|
/external/qemu/distrib/jpeg-6b/ |
D | coderules.doc | 14 Brader). This document is available in the IJG FTP archive (see
|
/external/chromium_org/third_party/libxml/src/include/libxml/ |
D | xmlversion.h.in | 166 * Whether the FTP support is configured in
|