HomeSort by relevance Sort by last modified time
    Searched full:getcwd (Results 1 - 25 of 474) 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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
unistd.h 45 #undef getcwd macro
73 (char *__buf, size_t __size), getcwd);
76 getcwd (char *__buf, size_t __size) function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/ssp/
unistd.h 45 #undef getcwd macro
73 (char *__buf, size_t __size), getcwd);
76 getcwd (char *__buf, size_t __size) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/ssp/
unistd.h 45 #undef getcwd macro
73 (char *__buf, size_t __size), getcwd);
76 getcwd (char *__buf, size_t __size) function
  /external/linux-tools-perf/util/
abspath.c 8 if (getcwd(cwd, PATH_MAX) == NULL)
  /external/valgrind/main/none/tests/
procfs-cmdline-exe.c 97 if (! getcwd(cwd, sizeof(cwd)))
98 perror("getcwd");
  /system/core/sh/
cd.c 163 * something we can't stat, clear curdir to force a getcwd()
373 * getcwd, but traditionally getcwd is implemented using popen
376 * So we re-implement getcwd(), and we suppress interrupts
379 * We still try to use getcwd for systems that we know have a
380 * c implementation of getcwd, that does not open a pipe to
386 if (getcwd(pwd, i) != NULL) {
394 error("getcwd() failed: %s", strerror(errno));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xw32defs.h 35 #define getcwd _getcwd macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 35 #define getcwd _getcwd macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 35 #define getcwd _getcwd macro
  /ndk/sources/host-tools/sed-4.2.1/lib/
unistd.in.h 267 /* Include the headers that might declare getcwd so that they will not
276 <http://www.opengroup.org/susv3xsh/getcwd.html>.
277 Additionally, the gnulib module 'getcwd' guarantees the following GNU
281 # define getcwd rpl_getcwd macro
282 extern char * getcwd (char *buf, size_t size);
285 # undef getcwd macro
286 # define getcwd(b,s) \ macro
287 (GL_LINK_WARNING ("getcwd is unportable - " \
288 "use gnulib module getcwd for portability"), \
289 getcwd (b, s)
    [all...]
  /external/chromium-trace/trace-viewer/build/
generate_deps_js_contents.py 62 olddir = os.getcwd()
84 olddir = os.getcwd()
  /external/clang/utils/
CaptureCmd 52 cwdKey = saveCaptureData('cwd-', dir, os.getcwd())
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
buildNotes.php 4 $parts = explode("/", getcwd());
consoleLogs.php 4 $parts = explode("/", getcwd());
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xw32defs.h 44 #define getcwd _getcwd macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 44 #define getcwd _getcwd macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 44 #define getcwd _getcwd macro
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
update_webgl_conformance_tests.py 99 return os.getcwd()
102 return os.getcwd()
106 return os.getcwd()
  /external/webkit/Tools/WebKitTestRunner/
TestInvocation.cpp 43 #define getcwd _getcwd // MSDN says getcwd is deprecated. macro
81 if (!getcwd(buffer.get() + prefixLength, PATH_MAX))
  /development/scripts/
divide_and_compress_test.py 97 source_path = ''.join([os.getcwd(), '/0-old.zip'])
98 dest_path = ''.join([os.getcwd(), '/0.zip'])
100 ''.join([os.getcwd(), '/']), 'dummy', 1024*1024, True)
198 ''.join([os.getcwd(), '/']), 'dummy', 1024*1024, True)
201 ''.join([os.getcwd(), '/0.zip']), mode='r').AndReturn(
204 os.unlink(''.join([os.getcwd(), '/0.zip']))
231 ''.join([os.getcwd(), '/']), 'dummy', 1024*1024, True)
234 ''.join([os.getcwd(), '/0.zip']), mode='r').AndReturn(
237 test_target.RemoveLastFile(''.join([os.getcwd(), '/0.zip']))
239 os.stat(''.join([os.getcwd(), '/0.zip'])).AndReturn([49302]
    [all...]
  /ndk/sources/host-tools/make-3.81/
make.h 358 /* This is needed for getcwd() and chdir(). */
493 extern char *getcwd ();
497 # define getcwd(buf, len) getwd (buf)
575 # if !defined getcwd macro
576 # define getcwd _getcwd2
580 chdir() and getcwd(). This avoids some error messages for the
585 # undef getcwd
496 # define getcwd macro
584 # undef getcwd macro
  /external/openssh/openbsd-compat/
getcwd.c 1 /* $OpenBSD: getcwd.c,v 1.14 2005/08/08 08:05:34 espie Exp $ */
31 /* OPENBSD ORIGINAL: lib/libc/gen/getcwd.c */
52 getcwd(char *pt, size_t size) function
  /external/webkit/Tools/Scripts/webkitpy/common/system/
filesystem_unittest.py 53 cwd = fs.getcwd()
58 self.assertEquals(fs.getcwd(), newdir)
78 self.assertTrue(fs.exists(fs.getcwd()))
  /bionic/libc/bionic/
getcwd.cpp 34 char* getcwd(char* buf, size_t size) { function

Completed in 719 milliseconds

1 2 3 4 5 6 7 8 91011>>