HomeSort by relevance Sort by last modified time
    Searched full:netrc (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/curl/tests/data/
test1304 5 netrc
19 netrc parsing unit tests
test130 7 netrc
37 FTP (optional .netrc; no user/pass) dir list PASV
40 --netrc-optional --netrc-file log/netrc130 ftp://%HOSTIP:%FTPPORT/
test131 7 netrc
38 FTP (optional .netrc; user/no pass) dir list PASV
41 --netrc-optional --netrc-file log/netrc131 ftp://user2@%HOSTIP:%FTPPORT/
test132 7 netrc
37 FTP (optional .netrc; user/passwd supplied) dir list PASV
40 --netrc-optional --netrc-file log/netrc132 ftp://mary:mark@%HOSTIP:%FTPPORT/
test134 7 netrc
37 FTP (optional .netrc; programmatic user/passwd) dir list PASV
40 --netrc-optional --netrc-file log/netrc134 -u romulus:rhemus ftp://mary:mark@%HOSTIP:%FTPPORT/
test2039 7 netrc
37 FTP (optional .netrc with 'default' override; no user/pass) dir list PASV
40 --netrc-optional --netrc-file log/netrc2039 ftp://%HOSTIP:%FTPPORT/
test133 7 netrc
37 FTP (compulsory .netrc; ignored user/passwd) dir list PASV
40 -n --netrc-file log/netrc133 ftp://mary:mark@%HOSTIP:%FTPPORT/
test257 9 netrc
71 HTTP Location: following with --netrc-optional
74 http://supersite.com/want/257 -L -x http://%HOSTIP:%HTTPPORT --netrc-optional --netrc-file log/netrc257
77 # netrc auth for two out of three sites:
  /external/curl/tests/unit/
unit1304.c 23 #include "netrc.h"
55 * Test a non existent host in our netrc file.
65 * Test a non existent login in our netrc file.
79 * Test a non existent login and host in our netrc file.
94 * netrc file.
109 * in our netrc file.
123 * Test for the first existing host in our netrc file
138 * Test for the first existing host in our netrc file
153 * Test for the second existing host in our netrc file
171 * Test for the second existing host in our netrc fil
    [all...]
  /external/curl/docs/libcurl/opts/
CURLOPT_NETRC_FILE.3 25 CURLOPT_NETRC_FILE \- file name to read .netrc info from
32 the full path name to the \fIfile\fP you want libcurl to use as .netrc
34 will attempt to find a .netrc file in the current user's home
CURLOPT_NETRC.3 25 CURLOPT_NETRC \- request that .netrc is used
32 user names and passwords from your \fI~/.netrc\fP file, relative to user names
48 The use of your \fI~/.netrc\fP file is optional, and information in the URL is
  /prebuilts/gdb/darwin-x86/lib/python2.7/
netrc.py 1 """An object-oriented interface to .netrc files."""
7 __all__ = ["netrc", "NetrcParseError"]
11 """Exception raised on syntax errors in the .netrc file."""
22 class netrc: class in inherits:
26 file = os.path.join(os.environ['HOME'], ".netrc")
28 raise IOError("Could not find .netrc: $HOME is not set")
106 """Dump the class data in the format of a .netrc file."""
122 print netrc()
  /prebuilts/gdb/linux-x86/lib/python2.7/
netrc.py 1 """An object-oriented interface to .netrc files."""
7 __all__ = ["netrc", "NetrcParseError"]
11 """Exception raised on syntax errors in the .netrc file."""
22 class netrc: class in inherits:
26 file = os.path.join(os.environ['HOME'], ".netrc")
28 raise IOError("Could not find .netrc: $HOME is not set")
106 """Dump the class data in the format of a .netrc file."""
122 print netrc()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
netrc.py 1 """An object-oriented interface to .netrc files."""
7 __all__ = ["netrc", "NetrcParseError"]
11 """Exception raised on syntax errors in the .netrc file."""
22 class netrc: class in inherits:
26 file = os.path.join(os.environ['HOME'], ".netrc")
28 raise IOError("Could not find .netrc: $HOME is not set")
106 """Dump the class data in the format of a .netrc file."""
122 print netrc()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
netrc.py 1 """An object-oriented interface to .netrc files."""
7 __all__ = ["netrc", "NetrcParseError"]
11 """Exception raised on syntax errors in the .netrc file."""
22 class netrc: class in inherits:
26 file = os.path.join(os.environ['HOME'], ".netrc")
28 raise IOError("Could not find .netrc: $HOME is not set")
106 """Dump the class data in the format of a .netrc file."""
122 print netrc()
  /external/curl/lib/
netrc.c 30 #include "netrc.h"
41 /* Get user and password from .netrc when given a machine name */
70 #define NETRC DOT_CHAR "netrc"
103 netrcfile = curl_maprintf("%s%s%s", home, DIR_CHAR, NETRC);
netrc.h 32 * section in the netrc.
Makefile.inc 42 ldap.c version.c getenv.c escape.c mprintf.c telnet.c netrc.c \
58 LIB_HFILES = arpa_telnet.h netrc.h file.h timeval.h hostip.h progress.h \
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_netrc.py 1 import netrc, os, unittest, sys, textwrap namespace
18 return netrc.netrc(temp_filename)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_netrc.py 1 import netrc, os, unittest, sys, textwrap namespace
18 return netrc.netrc(temp_filename)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_netrc.py 1 import netrc, os, unittest, sys, textwrap namespace
18 return netrc.netrc(temp_filename)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_netrc.py 1 import netrc, os, unittest, sys, textwrap namespace
18 return netrc.netrc(temp_filename)
  /external/ceres-solver/docs/source/
contributing.rst 68 5. Configure your Gerrit password with a ``.netrc`` (Mac and Linux)
83 * Copy the contents of the ``netrc`` into the clipboard.
85 - On Mac and Linux, paste the contents into ``~/.netrc``.
  /external/owasp/sanitizer/tools/
googlecode_upload.py 171 from netrc import netrc namespace
172 authenticators = netrc().authenticators("code.google.com")
  /bionic/tools/bionicbb/
README.md 39 `~/.netrc`. The HTTP password can be obtained from the [Gerrit HTTP password

Completed in 631 milliseconds

1 2 3