HomeSort by relevance Sort by last modified time
    Searched refs:newpath (Results 101 - 125 of 159) sorted by null

1 2 3 45 6 7

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 378 newpath = os.path.dirname(self.path)
379 newpath = os.path.join(newpath, text)
380 if os.path.dirname(newpath) != os.path.dirname(self.path):
383 os.rename(self.path, newpath)
384 self.path = newpath
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 378 newpath = os.path.dirname(self.path)
379 newpath = os.path.join(newpath, text)
380 if os.path.dirname(newpath) != os.path.dirname(self.path):
383 os.rename(self.path, newpath)
384 self.path = newpath
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
fuse_fs.h 30 virtual Error Rename(const Path& path, const Path& newpath);
fuse_fs.cc 199 Error FuseFs::Rename(const Path& path, const Path& newpath) {
205 int result = fuse_ops_->rename(path.Join().c_str(), newpath.Join().c_str());
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
stream_fs.cc 108 Error StreamFs::Rename(const Path& path, const Path& newpath) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.h 87 uptr internal_rename(const char *oldpath, const char *newpath);
sanitizer_mac.cc 134 uptr internal_rename(const char *oldpath, const char *newpath) {
135 return rename(oldpath, newpath);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap.h 90 int link(const char* oldpath, const char* newpath) NOTHROW;
116 int symlink(const char* oldpath, const char* newpath) NOTHROW;
kernel_wrap_glibc.cc 347 int WRAP(link)(const char* pathname, const char* newpath) {
348 ERRNO_RTN(ki_link(pathname, newpath));
  /external/elfutils/0.153/src/
ld.c 1177 struct pathelement *newpath; local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
html5_fs.cc 179 Error Html5Fs::Rename(const Path& path, const Path& newpath) {
191 std::string newpath_full = GetFullPath(newpath).Join();
  /external/chromium_org/third_party/cython/src/Cython/Includes/libc/
stdio.pxd 26 int rename (const char *oldpath, const char *newpath)
  /external/chromium_org/third_party/icu/source/common/
putil.cpp 958 /* Create a newpath with the new entry to test each entry in the directory. */
959 char newpath[MAX_PATH_SIZE]; local
960 uprv_strcpy(newpath, curpath);
961 uprv_strcat(newpath, dirName);
963 if ((subDirp = opendir(newpath)) != NULL) {
964 /* If this new path is a directory, make a recursive call with the newpath. */
966 uprv_strcat(newpath, "/");
967 result = searchForTZFile(newpath, tzInfo);
    [all...]
  /external/icu/icu4c/source/common/
putil.cpp 958 /* Create a newpath with the new entry to test each entry in the directory. */
959 char newpath[MAX_PATH_SIZE]; local
960 uprv_strcpy(newpath, curpath);
961 uprv_strcat(newpath, dirName);
963 if ((subDirp = opendir(newpath)) != NULL) {
964 /* If this new path is a directory, make a recursive call with the newpath. */
966 uprv_strcat(newpath, "/");
967 result = searchForTZFile(newpath, tzInfo);
    [all...]
  /external/yaffs2/yaffs2/direct/
yaffsfs.c 762 int yaffs_rename(const char *oldPath, const char *newPath)
775 newdir = yaffsfs_FindDirectory(NULL,newPath,&newname,0);
1352 int yaffs_symlink(const char *oldpath, const char *newpath)
1361 parent = yaffsfs_FindDirectory(NULL,newpath,&name,0);
1410 int yaffs_link(const char *oldpath, const char *newpath)
1412 // Creates a link called newpath to existing oldpath
1421 target = yaffsfs_FindObject(NULL,newpath,0);
1440 newdir = yaffsfs_FindDirectory(NULL,newpath,&newname,0);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
js_fs.cc 467 Error JsFs::Rename(const Path& path, const Path& newpath) {
472 "new", newpath.Join().c_str())) {
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
kernel_object_test.cc 44 Error Rename(const Path& path, const Path& newpath) { return 0; }
  /external/e2fsprogs/e2fsck/
unix.c 1006 char *newpath; local
1012 newpath = malloc(len);
1013 if (!newpath)
1014 fatal_error(ctx, "Couldn't malloc() newpath");
1015 strcpy(newpath, PATH_SET);
1018 strcat(newpath, ":");
1019 strcat(newpath, oldpath);
1021 putenv(newpath);
    [all...]
  /external/qemu/qom/
object.c 1087 char *newpath = NULL, *path = NULL; local
1101 newpath = g_strdup_printf("%s/%s", prop->name, path);
1103 path = newpath;
1116 newpath = g_strdup_printf("/%s", path);
1119 return newpath;
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/
linux-unistd.h 95 int renameat (int olddirfd, const char *oldpath, int newdirfd, const char *newpath);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/
linux-unistd.h 95 int renameat (int olddirfd, const char *oldpath, int newdirfd, const char *newpath);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/sys/
linux-unistd.h 95 int renameat (int olddirfd, const char *oldpath, int newdirfd, const char *newpath);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/sys/
linux-unistd.h 95 int renameat (int olddirfd, const char *oldpath, int newdirfd, const char *newpath);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/sys/
linux-unistd.h 95 int renameat (int olddirfd, const char *oldpath, int newdirfd, const char *newpath);
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/sys/
linux-unistd.h 95 int renameat (int olddirfd, const char *oldpath, int newdirfd, const char *newpath);

Completed in 762 milliseconds

1 2 3 45 6 7