Searched defs:pwd (Results 1 - 25 of 89) sorted by relevance

1234

/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dgetpwnam_r_invalid_user.cc6 #include <pwd.h>
13 struct passwd pwd; local
16 int res = getpwnam_r("no-such-user", &pwd, buf, sizeof(buf), &pwdres);
/external/autotest/client/deps/boottool/
H A Dboottool.py24 pwd = os.getcwd() variable
25 tarball = os.path.join(pwd, 'Linux-Bootloader-1.2.tar.gz')
26 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
/external/autotest/client/deps/dejagnu/
H A Ddejagnu.py18 pwd = os.getcwd() variable
20 tarball = os.path.join(pwd, 'dejagnu-1.4.4.tar.bz2')
21 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
/external/autotest/client/deps/fakegudev/
H A Dfakegudev.py19 pwd = os.getcwd() variable
20 utils.update_version(pwd + '/src', True, version, setup, pwd)
/external/autotest/client/deps/fakemodem/
H A Dfakemodem.py19 pwd = os.getcwd() variable
20 utils.update_version(pwd + '/src', True, version, setup, pwd)
/external/autotest/client/deps/gfxtest/
H A Dgfxtest.py18 pwd = os.getcwd() variable
19 utils.update_version(pwd + '/src', True, version, setup, pwd)
/external/autotest/client/deps/glbench/
H A Dglbench.py18 pwd = os.getcwd() variable
19 utils.update_version(pwd + '/src', True, version, setup, pwd)
/external/autotest/client/deps/glmark2/
H A Dglmark2.py35 pwd = os.getcwd() variable
36 utils.update_version(pwd + '/src', False, version, setup, pwd)
/external/autotest/client/deps/graphics/
H A Dgraphics.py16 pwd = os.getcwd() variable
17 utils.update_version(pwd + '/src', True, version, setup)
/external/autotest/client/deps/ibusclient/
H A Dibusclient.py18 pwd = os.getcwd() variable
19 utils.update_version(pwd + '/src', True, version, setup, pwd)
/external/autotest/client/deps/iwcap/
H A Diwcap.py14 pwd = os.getcwd() variable
15 utils.update_version(pwd + '/src', True, version, setup, pwd)
/external/autotest/client/deps/lansim/
H A Dlansim.py21 pwd = os.getcwd() variable
22 utils.update_version(os.path.join(pwd, 'src'), True, version, setup, pwd)
/external/autotest/client/deps/libnet/
H A Dlibnet.py21 pwd = os.getcwd() variable
22 tarball = os.path.join(pwd, 'libnet.tar.gz')
23 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
/external/autotest/client/deps/mysql/
H A Dmysql.py34 pwd = os.getcwd() variable
35 tarball = os.path.join(pwd, 'mysql-5.0.45.tar.gz')
36 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
/external/autotest/client/deps/nvmap_compactor/
H A Dnvmap_compactor.py19 pwd = os.getcwd() variable
20 utils.update_version(pwd + '/src', True, version, setup, pwd)
/external/autotest/client/deps/pgpool/
H A Dpgpool.py25 pwd = os.getcwd() variable
26 tarball = os.path.join(pwd, 'pgpool-II-1.0.1.tar.gz')
27 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
/external/autotest/client/deps/pgsql/
H A Dpgsql.py20 pwd = os.getcwd() variable
21 tarball = os.path.join(pwd, 'postgresql-8.3.1.tar.bz2')
22 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
/external/autotest/client/deps/systemtap/
H A Dsystemtap.py21 pwd = os.getcwd() variable
22 utils.update_version(pwd+'/src', True, version, setup, pwd)
/external/autotest/client/deps/touchpad-tests/
H A Dtouchpad-tests.py24 pwd = os.getcwd() variable
25 utils.update_version(os.getcwd(), True, version, setup, pwd)
/external/autotest/client/deps/webgl_clear/
H A Dwebgl_clear.py33 pwd = os.getcwd() variable
34 utils.update_version(pwd + '/src', True, version, setup, pwd)
/external/autotest/client/deps/webgl_mpd/
H A Dwebgl_mpd.py16 pwd = os.getcwd() variable
17 utils.update_version(pwd + '/src', True, version, setup)
/external/autotest/client/deps/webgl_perf/
H A Dwebgl_perf.py32 pwd = os.getcwd() variable
33 utils.update_version(pwd + '/src', True, version, setup, pwd)
/external/toybox/toys/posix/
H A Dpwd.c0 /* pwd.c - Print working directory.
5 * See http://opengroup.org/onlinepubs/9699919799/utilities/pwd.html
7 USE_PWD(NEWTOY(pwd, ">0LP[-LP]", TOYFLAG_BIN))
10 bool "pwd"
13 usage: pwd [-L|-P]
26 char *s, *pwd = getcwd(0, 0), *PWD; local
43 if (s && pwd)
44 if (stat(pwd, &st1) || stat(PWD, &st2) || st1.st_ino != st2.st_ino ||
49 if (!s && !(s = pwd)) perror_exit("xgetcwd");
53 if (CFG_TOYBOX_FREE) free(pwd);
[all...]
/external/autotest/client/deps/gtest/
H A Dgtest.py18 pwd = os.getcwd() variable
19 utils.update_version(pwd + '/src', False, version, setup, pwd)
/external/autotest/client/deps/pyxinput/
H A Dpyxinput.py55 pwd = os.getcwd() variable
56 utils.update_version(pwd + '/src', True, version, setup, pwd)

Completed in 1704 milliseconds

1234