Home
last modified time | relevance | path

Searched refs:proxyUser (Results 1 – 4 of 4) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
DHTTPProxyData.java21 public final String proxyUser; field in HTTPProxyData
44 public HTTPProxyData(String proxyHost, int proxyPort, String proxyUser, String proxyPass) in HTTPProxyData() argument
46 this(proxyHost, proxyPort, proxyUser, proxyPass, null); in HTTPProxyData()
71 public HTTPProxyData(String proxyHost, int proxyPort, String proxyUser, String proxyPass, in HTTPProxyData() argument
82 this.proxyUser = proxyUser; in HTTPProxyData()
/external/libxml2/
Dnanoftp.c149 static char *proxyUser = NULL; /* user for proxy authentication */ variable
217 proxyUser = xmlMemStrdup(env); in xmlNanoFTPInit()
238 if (proxyUser != NULL) { in xmlNanoFTPCleanup()
239 xmlFree(proxyUser); in xmlNanoFTPCleanup()
240 proxyUser = NULL; in xmlNanoFTPCleanup()
273 if (proxyUser != NULL) { in xmlNanoFTPProxy()
274 xmlFree(proxyUser); in xmlNanoFTPProxy()
275 proxyUser = NULL; in xmlNanoFTPProxy()
284 proxyUser = xmlMemStrdup(user); in xmlNanoFTPProxy()
1020 if (proxyUser != NULL) { in xmlNanoFTPConnect()
[all …]
/external/chromium_org/third_party/libxml/src/
Dnanoftp.c148 static char *proxyUser = NULL; /* user for proxy authentication */ variable
216 proxyUser = xmlMemStrdup(env); in xmlNanoFTPInit()
237 if (proxyUser != NULL) { in xmlNanoFTPCleanup()
238 xmlFree(proxyUser); in xmlNanoFTPCleanup()
239 proxyUser = NULL; in xmlNanoFTPCleanup()
272 if (proxyUser != NULL) { in xmlNanoFTPProxy()
273 xmlFree(proxyUser); in xmlNanoFTPProxy()
274 proxyUser = NULL; in xmlNanoFTPProxy()
283 proxyUser = xmlMemStrdup(user); in xmlNanoFTPProxy()
1019 if (proxyUser != NULL) { in xmlNanoFTPConnect()
[all …]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
DTransportManager.java380 if ((pd.proxyUser != null) && (pd.proxyPass != null)) in establishConnection()
382 String credentials = pd.proxyUser + ":" + pd.proxyPass; in establishConnection()