HomeSort by relevance Sort by last modified time
    Searched refs:getcwd (Results 1 - 25 of 833) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/tests/
getcwd_test.cpp 23 TEST(getcwd, auto_full) {
26 char* cwd = getcwd(NULL, 0);
33 TEST(getcwd, auto_reasonable) {
36 char* cwd = getcwd(NULL, PATH_MAX);
43 TEST(getcwd, auto_too_small) {
46 char* cwd = getcwd(NULL, 1);
51 TEST(getcwd, auto_too_large) {
54 char* cwd = getcwd(NULL, static_cast<size_t>(-1));
59 TEST(getcwd, manual_too_small) {
63 char* cwd = getcwd(tiny_buf, sizeof(tiny_buf))
    [all...]
  /external/syslinux/com32/lib/
getcwd.c 2 * getcwd.c
9 char *getcwd(char *buf, size_t size) function
  /external/autotest/client/deps/touchpad-tests/
touchpad-tests.py 24 pwd = os.getcwd()
25 utils.update_version(os.getcwd(), True, version, setup, pwd)
  /external/autotest/client/deps/camera_hal3/
camera_hal3.py 15 dst_path = os.path.join(os.getcwd(), 'bin')
21 utils.update_version(os.getcwd(), True, version, setup, os.getcwd())
  /external/autotest/client/deps/graphics/
graphics.py 16 pwd = os.getcwd()
  /external/autotest/client/deps/webgl_mpd/
webgl_mpd.py 16 pwd = os.getcwd()
  /external/strace/
getcwd.c 3 SYS_FUNC(getcwd)
  /external/ltp/lib/tests/
tst_tmpdir_test.c 52 char *start_dir = getcwd(NULL, PATH_MAX);
59 changed_dir = getcwd(NULL, PATH_MAX);
  /external/autotest/client/deps/gfxtest/
gfxtest.py 18 pwd = os.getcwd()
  /external/autotest/client/deps/glbench/
glbench.py 18 pwd = os.getcwd()
  /external/autotest/client/deps/ibusclient/
ibusclient.py 18 pwd = os.getcwd()
  /external/autotest/client/deps/iwcap/
iwcap.py 14 pwd = os.getcwd()
  /external/fonttools/MetaTools/
buildChangeLog.py 6 os.path.join(os.getcwd(), sys.argv[0]))))
  /frameworks/support/samples/SupportLeanbackShowcase/
build-release.py 25 replace(os.getcwd()+"/local.properties", r'(.*)LOCAL_REPO(.*)', 'LOCAL_REPO=')
26 replace(os.getcwd()+"/local.properties", r'(.*)LIBRARY_VERSION(.*)', 'LIBRARY_VERSION=')
build-local.py 36 current_path = os.getcwd()
51 replace(os.getcwd()+"/local.properties", r'(.*)LOCAL_REPO(.*)', 'LOCAL_REPO='+repo_path)
52 replace(os.getcwd()+"/local.properties", r'(.*)LIBRARY_VERSION(.*)', 'LIBRARY_VERSION='+library_version)
  /external/autotest/client/deps/fakegudev/
fakegudev.py 19 pwd = os.getcwd()
  /external/autotest/client/deps/fakemodem/
fakemodem.py 19 pwd = os.getcwd()
  /external/autotest/client/deps/gtest/
gtest.py 18 pwd = os.getcwd()
  /external/autotest/client/deps/lansim/
lansim.py 21 pwd = os.getcwd()
  /external/autotest/client/deps/libcap/
libcap.py 9 topdir = os.getcwd()
  /external/autotest/client/deps/nvmap_compactor/
nvmap_compactor.py 19 pwd = os.getcwd()
  /external/autotest/client/deps/systemtap/
systemtap.py 21 pwd = os.getcwd()
  /external/icu/tools/
updateicudata.py 23 original_working_dir = os.getcwd()
40 original_working_dir = os.getcwd()
69 original_working_dir = os.getcwd()
105 icu_build_dir = '%s/icu' % os.getcwd()
  /external/syslinux/com32/modules/
pwd.c 39 pwdptr = getcwd(pwd, PATH_MAX);
47 puts("ERROR: getcwd() returned NULL");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/lib/gcc/x86_64-linux/4.8/include/ssp/
unistd.h 45 #undef getcwd macro
73 (char *__buf, size_t __size), getcwd);
76 getcwd (char *__buf, size_t __size) function

Completed in 913 milliseconds

1 2 3 4 5 6 7 8 91011>>