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

1 2 3 4 5 6 7 8

  /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/srec/portable/src/
PANSIFileSystem.c 38 return ((PANSIFileSystem*) PANSIFileSystemSingleton)->getcwd(PANSIFileSystemSingleton, path, len);
  /external/webkit/Tools/Scripts/
run-webkit-httpd 72 my $testDirectory = File::Spec->catfile(getcwd(), "LayoutTests");
run-mangleme-tests 134 my $testDirectory = getcwd() . "/LayoutTests";
135 my $manglemeDirectory = getcwd() . "/WebKitBuild/mangleme";
run-iexploder-tests 117 my $webkitDirectory = getcwd();
check-dom-results 41 my $workingDir = getcwd();
  /bionic/libc/bionic/
getcwd.cpp 34 char* getcwd(char* buf, size_t size) { function
  /external/linux-tools-perf/util/
abspath.c 8 if (getcwd(cwd, PATH_MAX) == NULL)
  /external/srec/portable/include/
PANSIFileSystem.h 88 ESR_ReturnCode(*getcwd)(PFileSystem* self, LCHAR* cwd, size_t* len); member in struct:PANSIFileSystem_t
  /external/chromium-trace/trace-viewer/build/
generate_deps_js_contents.py 62 olddir = os.getcwd()
84 olddir = os.getcwd()
generate_about_tracing_contents.py 93 olddir = os.getcwd()
124 olddir = os.getcwd()
  /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...]
  /dalvik/libdex/
OptInvocation.cpp 65 if (getcwd(absoluteFile, kBufLen) == NULL) {
  /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());
  /external/icu4c/samples/udata/
reader.c 90 char *currdir = getcwd(NULL, 0);
writer.c 71 char *currdir = getcwd(NULL, 0);
  /external/srec/portable/src/UNIX/
PFileWrapUNIX_OS_Specific.c 70 if ( getcwd ( path, *len ) != NULL)
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/qt/
ActivateFontsQt.cpp 74 if (!getcwd(currentPath, PATH_MAX))
  /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/clang/utils/
CaptureCmd 52 cwdKey = saveCaptureData('cwd-', dir, os.getcwd())
  /external/skia/tools/
merge_static_libs.py 27 curdir = os.getcwd()

Completed in 968 milliseconds

1 2 3 4 5 6 7 8