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

1 2 3 4 5 6

  /external/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/icu4c/tools/toolutil/
filetools.cpp 51 char newpath[MAX_PATH_SIZE] = ""; local
52 uprv_strcpy(newpath, checkAgainst);
53 uprv_strcat(newpath, U_FILE_SEP_STRING);
54 uprv_strcat(newpath, dirEntry->d_name);
56 if ((subDirp = opendir(newpath)) != NULL) {
57 /* If this new path is a directory, make a recursive call with the newpath. */
59 isLatest = isFileModTimeLater(filePath, newpath, isDir);
64 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);
  /frameworks/av/media/libstagefright/id3/
testid3.cpp 133 char newPath[MAXPATHLEN];
134 strcpy(newPath, path);
135 strcat(newPath, "/");
136 strcat(newPath, ent->d_name);
139 scan(newPath);
145 scanFile(newPath);
  /system/core/init/
util.h 36 void make_link(const char *oldpath, const char *newpath);
37 void remove_link(const char *oldpath, const char *newpath);
util.c 324 void make_link(const char *oldpath, const char *newpath)
331 slash = strrchr(newpath, '/');
334 width = slash - newpath;
337 memcpy(buf, newpath, width);
343 ret = symlink(oldpath, newpath);
345 ERROR("Failed to symlink %s to %s: %s (%d)\n", oldpath, newpath, strerror(errno), errno);
348 void remove_link(const char *oldpath, const char *newpath)
352 ret = readlink(newpath, path, sizeof(path) - 1);
357 unlink(newpath);
  /external/webkit/Tools/MIDLWrapper/
MIDLWrapper.cpp 56 wchar_t* newPath = new wchar_t[newPathLength + 1];
59 wchar_t* d = newPath;
68 envp[pathIndex] = newPath;
  /frameworks/base/graphics/java/android/renderscript/
Path.java 71 Path newPath = new Path(id, rs, p, null, null, quality);
72 return newPath;
  /external/openssh/
sftp-server.c 1064 char *oldpath, *newpath; local
1070 newpath = get_string(NULL);
1072 logit("rename old \"%s\" new \"%s\"", oldpath, newpath);
1080 if (link(oldpath, newpath) == -1) {
1095 if (stat(newpath, &st) == -1) {
1096 if (rename(oldpath, newpath) == -1)
1108 unlink(newpath);
1111 } else if (stat(newpath, &sb) == -1) {
1112 if (rename(oldpath, newpath) == -1)
1119 xfree(newpath);
1151 char *oldpath, *newpath; local
1174 char *oldpath, *newpath; local
1231 char *oldpath, *newpath; local
    [all...]
sftp-client.h 94 /* Rename 'oldpath' to 'newpath' */
97 /* Link 'oldpath' to 'newpath' */
100 /* Rename 'oldpath' to 'newpath' */
sftp.0 239 ln [-s] oldpath newpath
240 Create a link from oldpath to newpath. If the -s flag is
307 rename oldpath newpath
308 Rename remote file from oldpath to newpath.
316 symlink oldpath newpath
317 Create a symbolic link from oldpath to newpath.
sftp.1 402 .Ar newpath
407 .Ar newpath .
504 .It Ic rename Ar oldpath Ar newpath
508 .Ar newpath .
515 .It Ic symlink Ar oldpath Ar newpath
519 .Ar 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);
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/archives/
ArchiveInstallerTest.java 227 "newPath",
262 "[/sdk/extras/vendor1/newPath/source.properties]",
265 // oldPath directory has been deleted, we only have newPath now.
269 "[/, /sdk, /sdk/extras, /sdk/extras/vendor1, /sdk/extras/vendor1/newPath]",
274 "[</sdk/extras/vendor1/newPath/source.properties: " +
280 "Extra.Path=newPath\n" +
283 "Extra.NameDisplay=Vendor1 NewPath\n" +
292 "Installing Vendor1 NewPath, revision 2\n" +
293 "Installed Vendor1 NewPath, revision 2\n",
363 String newPath,
    [all...]
  /external/webkit/Tools/WebKitTestRunner/win/
TestControllerWin.cpp 87 wstring newPath;
88 newPath.append(qtPath);
89 newPath.append(L";");
90 newPath.append(oldPath.data(), oldPath.size());
91 ::SetEnvironmentVariableW(pathEnvironmentVariable, newPath.data());
  /external/webkit/Source/WebCore/fileapi/
DOMFilePath.cpp 53 String newPath = path;
54 newPath.append(DOMFilePath::separator);
55 return newPath;
  /external/e2fsprogs/lib/ext2fs/
extent.c 283 struct extent_path *path, *newpath; local
433 newpath = path + 1;
434 if (!newpath->buf) {
436 &newpath->buf);
444 memset(newpath->buf, 0, handle->fs->blocksize);
447 blk, 1, newpath->buf);
453 eh = (struct ext3_extent_header *) newpath->buf;
461 newpath->left = newpath->entries =
463 newpath->max_entries = ext2fs_le16_to_cpu(eh->eh_max)
829 struct extent_path *path, *newpath = 0; local
    [all...]
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 142 SmallString<200> newPath = StringRef(FE->getName());
143 fs::make_absolute(newPath);
144 infoOut << newPath << '\n';
240 void FileRemapper::remap(StringRef filePath, StringRef newPath) {
242 const FileEntry *newfile = FileMgr->getFile(newPath);
  /external/webkit/Source/WebKit/mac/Plugins/
WebBasePluginPackage.mm 100 NSString *newPath = [thePath stringByResolvingSymlinksInPath];
107 return newPath;
113 return newPath;
117 newPath = [(NSURL *)URL path];
121 return newPath;
  /external/clang/lib/Rewrite/
FrontendActions.cpp 82 SmallString<128> NewPath;
83 llvm::sys::fs::unique_file(Path.str(), fd, NewPath);
84 return NewPath.str();
  /external/webkit/Source/WebCore/platform/graphics/cg/
PathCG.cpp 158 CGMutablePathRef newPath = CGPathCreateMutable();
159 CGPathAddPath(newPath, &translation, m_path);
161 m_path = newPath;
  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 56 void remap(StringRef filePath, StringRef newPath);
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 101 public void rename(String oldPath, String newPath) throws ErrnoException { os.rename(oldPath, newPath); }
121 public void symlink(String oldPath, String newPath) throws ErrnoException { os.symlink(oldPath, newPath); }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 480 String newPath = sb.toString();
482 if (newPath.equals(currPath) && newPath.equals(mLastFolderUsedInCombo)) {
489 TreeSet<String> filePaths = mFolderCache.get(newPath);
494 IFolder folder = mProject.getFolder(newPath);
500 filePaths.add(newPath + name);
508 mFolderCache.put(newPath, filePaths);
511 currPath = newPath + leafName;
538 mLastFolderUsedInCombo = newPath;
  /external/icu4c/test/cintltst/
cintltst.c 245 char *newPath = newBuf;
262 newPath = (char *)ctst_malloc(newLen);
265 strcpy(newPath, oldPath);
266 strcpy(newPath+oldLen, U_PATH_SEP_STRING);
267 strcpy(newPath+oldLen+1, toAppend);
269 u_setDataDirectory(newPath);
271 if(newPath != newBuf)
273 free(newPath);

Completed in 807 milliseconds

1 2 3 4 5 6