HomeSort by relevance Sort by last modified time
    Searched refs:cwd (Results 226 - 250 of 599) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
sigcontext.h 112 __uint16_t cwd; member in struct:_fpstate
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/x86/
issue19518_test.go 36 cwd, err := os.Getwd()
90 err = os.Chdir(cwd)
  /prebuilts/go/darwin-x86/src/os/
executable_test.go 74 cwd, err := os.Getwd()
78 dir = filepath.VolumeName(cwd)
  /prebuilts/go/linux-x86/src/cmd/internal/obj/x86/
issue19518_test.go 36 cwd, err := os.Getwd()
90 err = os.Chdir(cwd)
  /prebuilts/go/linux-x86/src/os/
executable_test.go 74 cwd, err := os.Getwd()
78 dir = filepath.VolumeName(cwd)
  /prebuilts/ndk/r16/sources/third_party/shaderc/utils/
update_build_version.py 46 cwd=directory,
  /system/timezone/
download-iana-data.py 59 ftp.cwd('tz/releases')
  /development/vndk/tools/header-checker/utils/
utils.py 129 subprocess.check_call(make_cmd, cwd=AOSP_DIR)
136 subprocess.check_call(make_cmd, cwd=AOSP_DIR, stdout=subprocess.DEVNULL,
204 stderr=subprocess.DEVNULL, cwd=AOSP_DIR, shell=True)
  /external/autotest/client/common_lib/
pxssh.py 73 def __init__ (self, timeout=30, maxread=2000, searchwindowsize=None, logfile=None, cwd=None, env=None):
74 spawn.__init__(self, None, timeout=timeout, maxread=maxread, searchwindowsize=searchwindowsize, logfile=logfile, cwd=cwd, env=env)
  /external/libcxx/utils/libcxx/
util.py 179 def executeCommand(command, cwd=None, env=None, input=None, timeout=0):
183 * working directory ``cwd`` (str), use None to use the current
200 p = subprocess.Popen(command, cwd=cwd,
  /external/python/cpython3/Lib/
macpath.py 185 cwd = os.getcwdb()
187 cwd = os.getcwd()
188 path = join(cwd, path)
  /external/toolchain-utils/automation/common/
command.py 41 def __init__(self, command, cwd=None, env=None, umask=None):
42 # @param cwd: temporary working directory
48 if cwd:
49 self._prefix.append(Shell('pushd', cwd))
  /frameworks/native/cmds/cmd/
cmd.cpp 67 char cwd[256]; local
68 getcwd(cwd, 256);
69 String8 fullPath(cwd);
  /packages/apps/DocumentsUI/src/com/android/documentsui/picker/
SaveFragment.java 200 public void prepareForDirectory(DocumentInfo cwd) {
201 setSaveEnabled(cwd != null && cwd.isCreateSupported());
PickActivity.java 239 final DocumentInfo cwd = getCurrentDirectory(); local
243 SaveFragment.get(fm).prepareForDirectory(cwd);
253 final DocumentInfo cwd = getCurrentDirectory(); local
267 DirectoryFragment.showDirectory(fm, root, cwd, anim);
282 pick.setPickTarget(mState.action, mState.copyOperationSubType, cwd);
  /packages/apps/DocumentsUI/src/com/android/documentsui/queries/
SearchViewManager.java 168 final DocumentInfo cwd = stack != null ? stack.peek() : null; local
174 if (cwd != null && cwd.isInArchive()) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/
util.py 179 def executeCommand(command, cwd=None, env=None, input=None, timeout=0):
183 * working directory ``cwd`` (str), use None to use the current
200 p = subprocess.Popen(command, cwd=cwd,
  /external/ltp/testcases/kernel/security/prot_hsymlinks/
prot_hsymlinks.c 349 char *cwd = tst_get_tmpdir(); local
350 cwd_offset = strlen(cwd);
353 chmod(cwd, mode);
355 strcpy(bdirs[0].path, cwd);
356 free(cwd);
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest-filepath_test.cc 91 const FilePath cwd = FilePath::GetCurrentDir();
97 const char* const cwd_without_drive = strchr(cwd.c_str(), ':');
103 EXPECT_EQ(GTEST_PATH_SEP_, cwd.string());
532 char cwd[PATH_MAX];
533 if (getcwd(cwd, sizeof(cwd)) == NULL) {
537 return cwd;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_httpservers.py 284 self.cwd = os.getcwd()
296 os.chdir(self.cwd)
401 self.cwd = os.getcwd()
406 os.chdir(self.cwd)
518 cwd = os.getcwd()
526 os.chdir(cwd)
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
shell.py 36 cwd = _os.path.dirname(_os.path.abspath(_sys.argv[0])) variable
64 return _os.path.normpath(_os.path.join(cwd, path))
412 if dest.startswith(cwd):
413 dest = dest.replace(cwd, '', 1)
438 if dest.startswith(cwd):
439 dest = dest.replace(cwd, '', 1)
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
shell.py 36 cwd = _os.path.dirname(_os.path.abspath(_sys.argv[0])) variable
64 return _os.path.normpath(_os.path.join(cwd, path))
412 if dest.startswith(cwd):
413 dest = dest.replace(cwd, '', 1)
438 if dest.startswith(cwd):
439 dest = dest.replace(cwd, '', 1)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_httpservers.py 284 self.cwd = os.getcwd()
296 os.chdir(self.cwd)
406 self.cwd = os.getcwd()
411 os.chdir(self.cwd)
526 cwd = os.getcwd()
534 os.chdir(cwd)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_httpservers.py 284 self.cwd = os.getcwd()
296 os.chdir(self.cwd)
406 self.cwd = os.getcwd()
411 os.chdir(self.cwd)
526 cwd = os.getcwd()
534 os.chdir(cwd)
  /prebuilts/go/darwin-x86/misc/ios/
go_darwin_arm_exec.go 506 cwd, err := os.Getwd()
515 cwd = strings.TrimSuffix(cwd, finalPkgpath)
526 src := filepath.Join(cwd, pkgpath)
541 filepath.Join(cwd, "lib", "time", "zoneinfo.zip"),
554 filepath.Join(cwd, "src", "runtime", "textflag.h"),
567 cwd, err := os.Getwd()
571 if root := runtime.GOROOT(); strings.HasPrefix(cwd, root) {
572 subdir, err := filepath.Rel(root, cwd)
580 if !strings.HasPrefix(cwd, p)
    [all...]

Completed in 508 milliseconds

1 2 3 4 5 6 7 8 91011>>