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

1 2 3 4 5 6 7

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
rename.c 8 int rename(const char* path, const char* newpath) {
9 return ki_rename(path, newpath);
symlink.c 8 int symlink(const char* oldpath, const char* newpath) {
9 return ki_symlink(oldpath, newpath);
  /external/chromium_org/third_party/icu/source/tools/toolutil/
filetools.cpp 59 char newpath[MAX_PATH_SIZE] = ""; local
60 uprv_strcpy(newpath, checkAgainst);
61 uprv_strcat(newpath, U_FILE_SEP_STRING);
62 uprv_strcat(newpath, dirEntry->d_name);
64 if ((subDirp = opendir(newpath)) != NULL) {
65 /* If this new path is a directory, make a recursive call with the newpath. */
67 isLatest = isFileModTimeLater(filePath, newpath, isDir);
72 int32_t latest = whichFileModTimeIsLater(filePath, newpath);
  /external/icu/icu4c/source/tools/toolutil/
filetools.cpp 59 char newpath[MAX_PATH_SIZE] = ""; local
60 uprv_strcpy(newpath, checkAgainst);
61 uprv_strcat(newpath, U_FILE_SEP_STRING);
62 uprv_strcat(newpath, dirEntry->d_name);
64 if ((subDirp = opendir(newpath)) != NULL) {
65 /* If this new path is a directory, make a recursive call with the newpath. */
67 isLatest = isFileModTimeLater(filePath, newpath, isDir);
72 int32_t latest = whichFileModTimeIsLater(filePath, newpath);
  /system/core/toolbox/
wipe.c 127 char *newpath; local
133 newpath = strdup(nameBuffer);
134 wipe(newpath);
138 if (strcmp(INIT_DIRS[i], newpath) == 0) {
143 ret = rmdir(newpath);
146 newpath, strerror(errno));
150 free(newpath);
  /external/chromium_org/third_party/freetype/src/base/
ftrfork.c 474 char* newpath; local
482 newpath = raccess_make_file_name( memory, base_file_name, "._" );
483 if ( !newpath )
486 error = raccess_guess_linux_double_from_file_name( library, newpath,
489 *result_file_name = newpath;
491 FT_FREE( newpath );
508 char* newpath = NULL; local
520 if ( FT_ALLOC( newpath, base_file_len + 6 ) )
523 FT_MEM_COPY( newpath, base_file_name, base_file_len );
524 FT_MEM_COPY( newpath + base_file_len, "/rsrc", 6 )
544 char* newpath = NULL; local
576 char* newpath; local
603 char* newpath; local
629 char* newpath; local
660 char* newpath; local
    [all...]
  /external/freetype/src/base/
ftrfork.c 492 char* newpath; local
500 newpath = raccess_make_file_name( memory, base_file_name, "._" );
501 if ( !newpath )
504 error = raccess_guess_linux_double_from_file_name( library, newpath,
507 *result_file_name = newpath;
509 FT_FREE( newpath );
526 char* newpath = NULL; local
538 if ( FT_ALLOC( newpath, base_file_len + 6 ) )
541 FT_MEM_COPY( newpath, base_file_name, base_file_len );
542 FT_MEM_COPY( newpath + base_file_len, "/rsrc", 6 )
562 char* newpath = NULL; local
594 char* newpath; local
621 char* newpath; local
647 char* newpath; local
678 char* newpath; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftrfork.c 474 char* newpath; local
482 newpath = raccess_make_file_name( memory, base_file_name, "._" );
483 if ( !newpath )
486 error = raccess_guess_linux_double_from_file_name( library, newpath,
489 *result_file_name = newpath;
491 FT_FREE( newpath );
508 char* newpath = NULL; local
520 if ( FT_ALLOC( newpath, base_file_len + 6 ) )
523 FT_MEM_COPY( newpath, base_file_name, base_file_len );
524 FT_MEM_COPY( newpath + base_file_len, "/rsrc", 6 )
544 char* newpath = NULL; local
576 char* newpath; local
603 char* newpath; local
629 char* newpath; local
660 char* newpath; local
    [all...]
  /system/core/init/
util.h 36 void make_link_init(const char *oldpath, const char *newpath);
37 void remove_link(const char *oldpath, const char *newpath);
util.c 338 void make_link_init(const char *oldpath, const char *newpath)
345 slash = strrchr(newpath, '/');
348 width = slash - newpath;
351 memcpy(buf, newpath, width);
357 ret = symlink(oldpath, newpath);
359 ERROR("Failed to symlink %s to %s: %s (%d)\n", oldpath, newpath, strerror(errno), errno);
362 void remove_link(const char *oldpath, const char *newpath)
366 ret = readlink(newpath, path, sizeof(path) - 1);
371 unlink(newpath);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
passthrough_fs.h 28 virtual Error Rename(const Path& path, const Path& newpath);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixpath.py 391 newpath = join(path, name)
392 if not islink(newpath):
393 path = newpath
396 if newpath in seen:
398 path = seen[newpath]
404 return join(newpath, rest), False
405 seen[newpath] = None # not resolved symlink
406 path, ok = _joinrealpath(path, os.readlink(newpath), seen)
409 seen[newpath] = path # resolved symlink
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixpath.py 391 newpath = join(path, name)
392 if not islink(newpath):
393 path = newpath
396 if newpath in seen:
398 path = seen[newpath]
404 return join(newpath, rest), False
405 seen[newpath] = None # not resolved symlink
406 path, ok = _joinrealpath(path, os.readlink(newpath), seen)
409 seen[newpath] = path # resolved symlink
  /external/chromium_org/tools/win/link_limiter/
build_link_limiter.py 90 newpath = '%s__LIMITER.exe' % shim_exe
91 shutil.copyfile(exe_name, newpath)
93 % (shim_exe, os.path.abspath(newpath))
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
dev_fs.h 23 virtual Error Rename(const Path& path, const Path& newpath);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
mem_fs.h 38 virtual Error Rename(const Path& path, const Path& newpath);
  /external/chromium_org/third_party/skia/tools/
find_bad_images_in_skps.py 82 newpath = os.path.join(globbedpath, filename) variable in class:list_files.NotAFileException
83 if os.path.isfile(newpath):
84 yield newpath
test_gpuveto.py 33 newpath = os.path.join(globbedpath, filename)
34 if os.path.isfile(newpath):
35 files.append(newpath)
  /external/skia/tools/
find_bad_images_in_skps.py 82 newpath = os.path.join(globbedpath, filename) variable in class:list_files.NotAFileException
83 if os.path.isfile(newpath):
84 yield newpath
test_gpuveto.py 33 newpath = os.path.join(globbedpath, filename)
34 if os.path.isfile(newpath):
35 files.append(newpath)
  /external/yaffs2/yaffs2/direct/
yaffsfs.h 183 int yaffs_rename(const char *oldPath, const char *newPath) ;
203 int yaffs_symlink(const char *oldpath, const char *newpath);
206 int yaffs_link(const char *oldpath, const char *newpath);
  /external/e2fsprogs/lib/ext2fs/
extent.c 277 struct extent_path *path, *newpath; local
429 newpath = path + 1;
430 if (!newpath->buf) {
432 &newpath->buf);
440 memset(newpath->buf, 0, handle->fs->blocksize);
443 blk, 1, newpath->buf);
449 eh = (struct ext3_extent_header *) newpath->buf;
457 newpath->left = newpath->entries =
459 newpath->max_entries = ext2fs_le16_to_cpu(eh->eh_max)
831 struct extent_path *path, *newpath = 0; local
    [all...]
  /development/ndk/platforms/android-3/header-patches/include/sys/
stat.h 106 extern int renameat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath);
  /development/ndk/platforms/android-3/include/sys/
stat.h 104 extern int renameat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
filesystem.h 91 virtual Error Rename(const Path& path, const Path& newpath) = 0;

Completed in 494 milliseconds

1 2 3 4 5 6 7