HomeSort by relevance Sort by last modified time
    Searched defs:getcwd (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
getcwd.c 13 * hook the internal calls to getcwd. However, we need to intercept it here
14 * since gtest call getcwd in a static constructor which general runs before
17 char* getcwd(char* buf, size_t size) { function
  /bionic/libc/bionic/
getcwd.cpp 34 char* getcwd(char* buf, size_t size) { function
  /external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
example.js 230 function getcwd(e) { function
231 postCall('getcwd', function(dirname) {
232 common.logMessage('getcwd: ' + dirname + '.');
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 113 def getcwd(self): member in class:FileSystem
114 return os.getcwd()
filesystem_mock.py 158 def getcwd(self): member in class:MockFileSystem
  /external/bison/darwin-lib/
unistd.h 80 /* Solaris declares getcwd not only in <unistd.h> but also in <stdlib.h>. */
86 /* Native Windows platforms declare chdir, getcwd, rmdir in
912 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/getcwd.html>.
913 Additionally, the gnulib module 'getcwd' guarantees the following GN
930 # undef getcwd macro
    [all...]
  /external/bison/linux-lib/
unistd.h 80 /* Solaris declares getcwd not only in <unistd.h> but also in <stdlib.h>. */
86 /* Native Windows platforms declare chdir, getcwd, rmdir in
912 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/getcwd.html>.
913 Additionally, the gnulib module 'getcwd' guarantees the following GN
930 # undef getcwd macro
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.h 377 inline char *getcwd(char *buf, size_t size) { function
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.h 374 inline char *getcwd(char *buf, size_t size) { function
  /external/e2fsprogs/intl/
dcigettext.c 141 # define getcwd __getcwd macro
149 # define getcwd(buf, max) getwd (buf) macro
152 # define getcwd(buf, max) (getcwd) (buf, max, 0) macro
154 char *getcwd ();
537 path_max += 2; /* The getcwd docs say to do this. */
545 ret = getcwd (dirname, path_max);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_proxy.cc 300 char* KernelProxy::getcwd(char* buf, size_t size) { function in class:nacl_io::KernelProxy
306 std::string cwd = GetCWD();
323 return getcwd(buf, MAXPATHLEN);
    [all...]

Completed in 278 milliseconds