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

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/linux-x86/misc/android/
go_android_exec.go 120 cwd, err := os.Getwd()
124 if root := runtime.GOROOT(); strings.HasPrefix(cwd, root) {
125 subdir, err := filepath.Rel(root, cwd)
133 if !strings.HasPrefix(cwd, p) {
136 subdir, err := filepath.Rel(p, cwd)
142 cwd, runtime.GOROOT(), build.Default.GOPATH)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
macpath.py 190 cwd = os.getcwdu()
192 cwd = os.getcwd()
193 path = join(cwd, path)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
macpath.py 190 cwd = os.getcwdu()
192 cwd = os.getcwd()
193 path = join(cwd, path)
  /external/kmod/shared/
util.c 361 _cleanup_free_ char *cwd = NULL; local
368 cwd = get_current_dir_name();
369 if (!cwd)
373 cwdlen = strlen(cwd);
375 /* cwd + '/' + p + '\0' */
376 r = realloc(cwd, cwdlen + 1 + plen + 1);
380 cwd = NULL;
  /external/perf_data_converter/src/
perf_data_converter_test.cc 134 std::unique_ptr<char, decltype(std::free)*> cwd(getcwd(nullptr, 0),
136 if (cwd == nullptr) {
139 *dir = cwd.get();
151 string cwd; local
152 GetCurrentDirectory(&cwd);
153 string resdir = cwd + "/" + relpath;
  /external/python/cpython2/Tools/ssl/
test_multiple_versions.py 155 cwd = self.build_dir
158 self._subprocess_call(cmd, cwd=cwd)
159 self._subprocess_call(["make"], cwd=cwd)
162 self._subprocess_call(["make", "install"], cwd=self.build_dir)
  /external/python/cpython3/Tools/ssl/
test_multiple_versions.py 155 cwd = self.build_dir
158 self._subprocess_call(cmd, cwd=cwd)
159 self._subprocess_call(["make"], cwd=cwd)
162 self._subprocess_call(["make", "install"], cwd=self.build_dir)
  /build/make/core/
checktree 80 cwd = os.getcwd()
82 files = map(lambda s: cwd+s, files)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_core.py 73 cwd = os.getcwd()
84 self.assertEqual(cwd, output)
  /external/chromium-trace/
update.py 43 p = subprocess.Popen(git_args, stdout=subprocess.PIPE, cwd=script_dir)
54 cwd=catapult_src_dir, variable
  /external/python/cpython2/Lib/distutils/tests/
test_core.py 75 cwd = os.getcwd()
86 self.assertEqual(cwd, output)
  /external/skia/infra/bots/
test_utils.py 19 def __init__(self, cwd):
20 self._cwd = cwd
  /external/skqp/infra/bots/
test_utils.py 19 def __init__(self, cwd):
20 self._cwd = cwd
  /packages/apps/DocumentsUI/src/com/android/documentsui/picker/
CreatePickedDocumentTask.java 76 DocumentInfo cwd = mStack.peek(); local
78 Uri childUri = mDocs.createDocument(cwd, mMimeType, mDisplayName);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_core.py 73 cwd = os.getcwd()
84 self.assertEqual(cwd, output)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_core.py 73 cwd = os.getcwd()
84 self.assertEqual(cwd, output)
  /external/e2fsprogs/misc/
create_inode.c 235 errcode_t do_mknod_internal(ext2_filsys fs, ext2_ino_t cwd, const char *name,
267 retval = ext2fs_new_inode(fs, cwd, 010755, 0, &ino);
277 retval = ext2fs_link(fs, cwd, name, ino, filetype);
279 retval = ext2fs_expand_dir(fs, cwd);
285 retval = ext2fs_link(fs, cwd, name, ino, filetype);
323 errcode_t do_symlink_internal(ext2_filsys fs, ext2_ino_t cwd, const char *name,
333 retval = ext2fs_namei(fs, root, cwd, name, &parent_ino);
340 parent_ino = cwd;
359 errcode_t do_mkdir_internal(ext2_filsys fs, ext2_ino_t cwd, const char *name,
370 retval = ext2fs_namei(fs, root, cwd, name, &parent_ino)
    [all...]
  /build/kati/
bootstrap.go 47 cwd, err := filepath.Abs(".")
51 bootstrap += fmt.Sprintf("CURDIR:=%s\n", cwd)
  /device/google/marlin/dataservices/datatop/src/
datatop_gen_poll.c 226 char cwd[1024]; local
228 if (!getcwd(cwd, sizeof(cwd))) {
268 chdir(cwd);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/
log.py 34 self.cwd = self._info['current-directory']
36 self.cwd = None
129 self.cwd = lineno
168 absname = os.path.normcase(os.path.join(self.cwd, filename))
  /external/autotest/client/bin/
setup_job.py 131 cwd = os.getcwd()
156 os.chdir(cwd)
190 cwd = os.getcwd()
193 os.chdir(cwd)
  /external/clang/tools/scan-build-py/tests/functional/cases/
test_exec_anatomy.py 18 cwd=target_dir,
  /external/deqp/scripts/src_util/
common.py 91 process = subprocess.Popen(['git'] + list(args), cwd=getProjectPath(), stdout=subprocess.PIPE)
  /external/llvm/utils/lit/lit/
TestRunner.py 28 """Mutable shell environment containing things like CWD and env vars.
30 Environment variables are not implemented, but cwd tracking is.
33 def __init__(self, cwd, env):
34 self.cwd = cwd
182 # Update the cwd in the parent environment.
184 shenv.cwd = newdir
186 shenv.cwd = os.path.join(shenv.cwd, newdir)
206 cmd_shenv = ShellEnvironment(shenv.cwd, shenv.env
    [all...]
  /external/python/cpython2/Lib/hotshot/
log.py 34 self.cwd = self._info['current-directory']
36 self.cwd = None
129 self.cwd = lineno
168 absname = os.path.normcase(os.path.join(self.cwd, filename))

Completed in 986 milliseconds

1 2 3 4 5 67 8 91011>>