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

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/com32/lib/
getcwd.c 2 * getcwd.c
9 char *getcwd(char *buf, size_t size) function
  /external/python/cpython2/RISCOS/Python/
getcwd_riscos.c 1 char *getcwd(char *buf, int size) function
  /external/ltp/android/tools/
custom_cflags.json 2 "testcases/kernel/syscalls/getcwd/getcwd02": ["-U_FORTIFY_SOURCE"],
  /device/google/wahoo/seccomp_policy/
mediacodec.policy 8 getcwd: 1
  /external/ltp/testcases/kernel/syscalls/getcwd/
getcwd01.c 20 * Testcase to test that getcwd(2) sets errno correctly.
21 * 1) getcwd(2) fails if buf points to a bad address.
22 * 2) getcwd(2) fails if the size is invalid.
23 * 3) getcwd(2) fails if the size is set to 0.
24 * 4) getcwd(2) fails if the size is set to 1.
25 * 5) getcwd(2) fails if buf points to NULL and the size is set to 1.
28 * 1) getcwd(2) should return NULL and set errno to EFAULT.
29 * 2) getcwd(2) should return NULL and set errno to ENOMEM.
30 * 3) getcwd(2) should return NULL and set errno to EINVAL.
31 * 4) getcwd(2) should return NULL and set errno to ERANGE
    [all...]
getcwd02.c 20 * Testcase to check the basic functionality of the getcwd(2) system call.
21 * 1) getcwd(2) works fine if buf and size are valid.
22 * 2) getcwd(2) works fine if buf points to NULL and size is set to 0.
23 * 3) getcwd(2) works fine if buf points to NULL and size is greater than strlen(path).
85 res = getcwd(tc->buf, tc->size);
88 tst_res(TFAIL | TTERRNO, "getcwd() failed");
93 tst_res(TFAIL, "getcwd() returned unexpected directory: %s, "
98 tst_res(TPASS, "getcwd() returned expected directory: %s", res);
  /external/syslinux/bios/com32/modules/
pwd.c32 
  /external/syslinux/efi32/com32/modules/
pwd.c32 
  /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/strace/tests/
getcwd.c 21 perror_msg_and_fail("getcwd");
23 printf("getcwd(");
28 printf("getcwd(%p, 0) = %s\n", cur_dir, sprintrc(res));
31 printf("getcwd(NULL, %zu) = %s\n", bogus_size, sprintrc(res));
34 printf("getcwd(%p, %zu) = %s\n",
getcwd.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (getcwd -a18 ); do not edit.
  /external/strace/tests-m32/
getcwd.c 21 perror_msg_and_fail("getcwd");
23 printf("getcwd(");
28 printf("getcwd(%p, 0) = %s\n", cur_dir, sprintrc(res));
31 printf("getcwd(NULL, %zu) = %s\n", bogus_size, sprintrc(res));
34 printf("getcwd(%p, %zu) = %s\n",
getcwd.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (getcwd -a18 ); do not edit.
  /external/strace/tests-mx32/
getcwd.c 21 perror_msg_and_fail("getcwd");
23 printf("getcwd(");
28 printf("getcwd(%p, 0) = %s\n", cur_dir, sprintrc(res));
31 printf("getcwd(NULL, %zu) = %s\n", bogus_size, sprintrc(res));
34 printf("getcwd(%p, %zu) = %s\n",
getcwd.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (getcwd -a18 ); do not edit.
  /external/strace/
getcwd.c 3 SYS_FUNC(getcwd)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_getcwdu.py 2 Fixer that changes os.getcwdu() to os.getcwd().
19 name.replace(Name(u"getcwd", prefix=name.prefix))
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_getcwdu.py 2 Fixer that changes os.getcwdu() to os.getcwd().
19 name.replace(Name(u"getcwd", prefix=name.prefix))
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_getcwdu.py 2 Fixer that changes os.getcwdu() to os.getcwd().
19 name.replace(Name("getcwd", prefix=name.prefix))
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_getcwdu.py 2 Fixer that changes os.getcwdu() to os.getcwd().
19 name.replace(Name(u"getcwd", prefix=name.prefix))
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_getcwdu.py 2 Fixer that changes os.getcwdu() to os.getcwd().
19 name.replace(Name(u"getcwd", prefix=name.prefix))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_getcwdu.py 2 Fixer that changes os.getcwdu() to os.getcwd().
19 name.replace(Name(u"getcwd", prefix=name.prefix))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_getcwdu.py 2 Fixer that changes os.getcwdu() to os.getcwd().
19 name.replace(Name(u"getcwd", prefix=name.prefix))
  /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/touchpad-tests/
touchpad-tests.py 24 pwd = os.getcwd()
25 utils.update_version(os.getcwd(), True, version, setup, pwd)

Completed in 833 milliseconds

1 2 3 4 5 6 7 8 91011>>