HomeSort by relevance Sort by last modified time
    Searched defs:pwd (Results 26 - 50 of 77) sorted by null

12 3 4

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 21 import pwd namespace
236 owner = pwd.getpwuid(0)[0]
258 @unittest.skipUnless(UID_GID_SUPPORT, "Requires grp and pwd support")
264 owner = pwd.getpwuid(0)[0]
test_sdist.py 20 import pwd namespace
327 @unittest.skipUnless(UID_GID_SUPPORT, "Requires grp and pwd support")
340 cmd.owner = pwd.getpwuid(0)[0]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
util.py 188 import pwd namespace
189 os.environ['HOME'] = pwd.getpwuid(os.getuid())[5]
  /system/core/sh/
cd.c 52 * The cd and pwd commands.
103 error("PWD not set");
263 setvar("PWD", curdir, VEXPORT);
265 unsetvar("PWD", 0);
295 setvar("PWD", curdir, VEXPORT);
300 * Posix says the default should be 'pwd -L' (as below), however
323 setvar("PWD", curdir, VEXPORT);
341 char *pwd; local
350 pwd = getenv("PWD");
369 char *pwd; local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl3Test.java 114 char[] pwd = { 'p', 'a', 's', 's', 'w', 'd' }; local
115 KeyStore.PasswordProtection pPath = new KeyStore.PasswordProtection(pwd);
134 kss[i].setKeyEntry(aliases[3], pk, pwd, certs);
138 kss[i].store(null, pwd);
147 kss[i].store(bos, pwd);
150 kss1[i].load(bis, pwd);
190 assertEquals("Incorrect entry", kss[i].getKey(aliases[3], pwd),
191 kss1[i].getKey(aliases[3], pwd));
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
ServerHandshakeImplTest.java 44 char[] pwd = JSSETestData.KS_PASSWORD; local
48 kmf.init(ks, pwd);
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 294 String pwd = credentials.getPassword(); local
297 StringBuilder tmp = new StringBuilder(uname.length() + realm.length() + pwd.length() + 2);
302 tmp.append(pwd);
  /external/ipsec-tools/src/racoon/
isakmp_xauth.h 67 char *pwd; member in struct:xauth_state::__anon22126::authgeneric
  /external/iptables/extensions/
libxt_owner.c 8 #include <pwd.h>
139 struct passwd *pwd; local
146 if ((pwd = getpwnam(cb->arg)) != NULL)
147 id = pwd->pw_uid;
186 struct passwd *pwd; local
193 if ((pwd = getpwnam(cb->arg)) != NULL)
194 id = pwd->pw_uid;
244 struct passwd *pwd; local
251 if ((pwd = getpwnam(cb->arg)) != NULL)
252 from = to = pwd->pw_uid
301 struct passwd *pwd = getpwuid(info->uid); local
350 struct passwd *pwd = getpwuid(info->uid); local
399 const struct passwd *pwd = getpwuid(info->uid_min); local
    [all...]
  /external/libppp/src/
systems.c 34 #include <pwd.h>
72 struct passwd *pwd; local
143 pwd = getpwuid(ID0realuid());
147 pwd = getpwnam(to);
149 if (pwd == NULL)
152 strncpy(to, pwd->pw_dir, endto - to);
209 struct passwd *pwd; local
214 pwd = getpwuid(ID0realuid());
215 if (pwd != NULL)
217 if (!strcmp("*", arg->argv[f]) || !strcmp(pwd->pw_name, arg->argv[f]))
    [all...]
  /external/ppp/pppd/
upap.c 621 char *user, *pwd, *msg; local
650 pwd = (char *) (p + ulen + 2);
657 print_string(pwd, wlen, printer, arg);
  /prebuilts/python/darwin-x86/2.7.5/bin/
smtpd.py 539 import pwd namespace
542 'Cannot import module "pwd"; try running with -n option.'
544 nobody = pwd.getpwnam('nobody')[2]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_sdist.py 20 import pwd namespace
327 @unittest.skipUnless(UID_GID_SUPPORT, "Requires grp and pwd support")
340 cmd.owner = pwd.getpwuid(0)[0]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixpath.py 268 import pwd namespace
269 userhome = pwd.getpwuid(os.getuid()).pw_dir
273 import pwd namespace
275 pwent = pwd.getpwnam(path[1:i])
smtpd.py 539 import pwd namespace
542 'Cannot import module "pwd"; try running with -n option.'
544 nobody = pwd.getpwnam('nobody')[2]
webbrowser.py 407 import pwd namespace
412 user = pwd.getpwuid(os.getuid())[0]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_posix.py 13 import pwd namespace
112 name = pwd.getpwuid(posix.getuid()).pw_name
114 # the current UID may not have a pwd entry
115 raise unittest.SkipTest("need a pwd entry")
521 name = pwd.getpwuid(posix.getuid()).pw_name
530 name = pwd.getpwuid(posix.getuid()).pw_name
test_posixpath.py 199 import pwd namespace
  /prebuilts/python/linux-x86/2.7.5/bin/
smtpd.py 539 import pwd namespace
542 'Cannot import module "pwd"; try running with -n option.'
544 nobody = pwd.getpwnam('nobody')[2]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixpath.py 268 import pwd namespace
269 userhome = pwd.getpwuid(os.getuid()).pw_dir
273 import pwd namespace
275 pwent = pwd.getpwnam(path[1:i])
smtpd.py 539 import pwd namespace
542 'Cannot import module "pwd"; try running with -n option.'
544 nobody = pwd.getpwnam('nobody')[2]
webbrowser.py 407 import pwd namespace
412 user = pwd.getpwuid(os.getuid())[0]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_posix.py 13 import pwd namespace
112 name = pwd.getpwuid(posix.getuid()).pw_name
114 # the current UID may not have a pwd entry
115 raise unittest.SkipTest("need a pwd entry")
521 name = pwd.getpwuid(posix.getuid()).pw_name
530 name = pwd.getpwuid(posix.getuid()).pw_name
test_posixpath.py 199 import pwd namespace
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyStore3Test.java 167 char[] pwd = new char[] { '1', '2', '3', '4', '5', '6' }; local
171 ks.load(fis, pwd);
172 Builder b = Builder.newInstance(ks, new PasswordProtection(pwd));
180 new KeyStore.PasswordProtection(pwd));

Completed in 2115 milliseconds

12 3 4