Home
last modified time | relevance | path

Searched refs:newpath (Results 1 – 18 of 18) sorted by relevance

/external/freetype/src/base/
Dftrfork.c474 char* newpath; in raccess_guess_darwin_ufs_export() local
482 newpath = raccess_make_file_name( memory, base_file_name, "._" ); in raccess_guess_darwin_ufs_export()
483 if ( !newpath ) in raccess_guess_darwin_ufs_export()
486 error = raccess_guess_linux_double_from_file_name( library, newpath, in raccess_guess_darwin_ufs_export()
489 *result_file_name = newpath; in raccess_guess_darwin_ufs_export()
491 FT_FREE( newpath ); in raccess_guess_darwin_ufs_export()
508 char* newpath = NULL; in raccess_guess_darwin_hfsplus() local
520 if ( FT_ALLOC( newpath, base_file_len + 6 ) ) in raccess_guess_darwin_hfsplus()
523 FT_MEM_COPY( newpath, base_file_name, base_file_len ); in raccess_guess_darwin_hfsplus()
524 FT_MEM_COPY( newpath + base_file_len, "/rsrc", 6 ); in raccess_guess_darwin_hfsplus()
[all …]
/external/icu4c/tools/toolutil/
Dfiletools.cpp52 char newpath[MAX_PATH_SIZE] = ""; in isFileModTimeLater() local
53 uprv_strcpy(newpath, checkAgainst); in isFileModTimeLater()
54 uprv_strcat(newpath, U_FILE_SEP_STRING); in isFileModTimeLater()
55 uprv_strcat(newpath, dirEntry->d_name); in isFileModTimeLater()
57 if ((subDirp = opendir(newpath)) != NULL) { in isFileModTimeLater()
60 isLatest = isFileModTimeLater(filePath, newpath, isDir); in isFileModTimeLater()
65 int32_t latest = whichFileModTimeIsLater(filePath, newpath); in isFileModTimeLater()
/external/openssh/
Dsftp-server.c1064 char *oldpath, *newpath; in process_rename() local
1070 newpath = get_string(NULL); in process_rename()
1072 logit("rename old \"%s\" new \"%s\"", oldpath, newpath); in process_rename()
1080 if (link(oldpath, newpath) == -1) { in process_rename()
1095 if (stat(newpath, &st) == -1) { in process_rename()
1096 if (rename(oldpath, newpath) == -1) in process_rename()
1108 unlink(newpath); in process_rename()
1111 } else if (stat(newpath, &sb) == -1) { in process_rename()
1112 if (rename(oldpath, newpath) == -1) in process_rename()
1119 xfree(newpath); in process_rename()
[all …]
Dsftp-client.c769 do_rename(struct sftp_conn *conn, char *oldpath, char *newpath) in do_rename() argument
787 buffer_put_cstring(&msg, newpath); in do_rename()
791 "SSH2_FXP_RENAME", oldpath, newpath); in do_rename()
797 newpath, fx2txt(status)); in do_rename()
803 do_hardlink(struct sftp_conn *conn, char *oldpath, char *newpath) in do_hardlink() argument
821 buffer_put_cstring(&msg, newpath); in do_hardlink()
824 oldpath, newpath); in do_hardlink()
830 newpath, fx2txt(status)); in do_hardlink()
836 do_symlink(struct sftp_conn *conn, char *oldpath, char *newpath) in do_symlink() argument
853 buffer_put_cstring(&msg, newpath); in do_symlink()
[all …]
Dsftp.0239 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.
DPROTOCOL230 string newpath
233 rename(oldpath, newpath) and will respond with a SSH_FXP_STATUS message.
287 string newpath
290 link(oldpath, newpath) and will respond with a SSH_FXP_STATUS message.
/external/e2fsprogs/lib/ext2fs/
Dextent.c283 struct extent_path *path, *newpath; in ext2fs_extent_get() local
433 newpath = path + 1; in ext2fs_extent_get()
434 if (!newpath->buf) { in ext2fs_extent_get()
436 &newpath->buf); in ext2fs_extent_get()
444 memset(newpath->buf, 0, handle->fs->blocksize); in ext2fs_extent_get()
447 blk, 1, newpath->buf); in ext2fs_extent_get()
453 eh = (struct ext3_extent_header *) newpath->buf; in ext2fs_extent_get()
461 newpath->left = newpath->entries = in ext2fs_extent_get()
463 newpath->max_entries = ext2fs_le16_to_cpu(eh->eh_max); in ext2fs_extent_get()
467 newpath->end_blk = ext2fs_le32_to_cpu(ix->ei_block); in ext2fs_extent_get()
[all …]
/external/yaffs2/yaffs2/direct/
Dyaffsfs.h203 int yaffs_symlink(const char *oldpath, const char *newpath);
206 int yaffs_link(const char *oldpath, const char *newpath);
Dyaffsfs.c1352 int yaffs_symlink(const char *oldpath, const char *newpath) in yaffs_symlink() argument
1361 parent = yaffsfs_FindDirectory(NULL,newpath,&name,0); in yaffs_symlink()
1410 int yaffs_link(const char *oldpath, const char *newpath) in yaffs_link() argument
1421 target = yaffsfs_FindObject(NULL,newpath,0); in yaffs_link()
1440 newdir = yaffsfs_FindDirectory(NULL,newpath,&newname,0); in yaffs_link()
/external/icu4c/common/
Dputil.cpp950 char newpath[MAX_PATH_SIZE]; in searchForTZFile() local
951 uprv_strcpy(newpath, curpath); in searchForTZFile()
952 uprv_strcat(newpath, dirName); in searchForTZFile()
954 if ((subDirp = opendir(newpath)) != NULL) { in searchForTZFile()
957 uprv_strcat(newpath, "/"); in searchForTZFile()
958 result = searchForTZFile(newpath, tzInfo); in searchForTZFile()
970 if(compareBinaryFiles(TZDEFAULT, newpath, tzInfo)) { in searchForTZFile()
971 const char* zoneid = newpath + (sizeof(TZZONEINFO)) - 1; in searchForTZFile()
/external/elfutils/src/
Dld.c1177 struct pathelement *newpath; in ld_new_searchdir() local
1179 newpath = (struct pathelement *) in ld_new_searchdir()
1182 newpath->pname = dir; in ld_new_searchdir()
1186 ld_state.paths = ld_state.tailpaths = newpath; in ld_new_searchdir()
1189 ld_state.tailpaths->next = newpath; in ld_new_searchdir()
1190 ld_state.tailpaths = newpath; in ld_new_searchdir()
/external/e2fsprogs/e2fsck/
Dunix.c898 char *newpath; in PRS() local
904 newpath = malloc(len); in PRS()
905 if (!newpath) in PRS()
907 strcpy(newpath, PATH_SET); in PRS()
910 strcat(newpath, ":"); in PRS()
911 strcat(newpath, oldpath); in PRS()
913 putenv(newpath); in PRS()
/external/e2fsprogs/misc/
Dmke2fs.c1205 char *newpath; in PRS() local
1210 newpath = malloc(pathlen); in PRS()
1211 strcpy(newpath, PATH_SET); in PRS()
1215 strcat (newpath, ":"); in PRS()
1216 strcat (newpath, oldpath); in PRS()
1218 putenv (newpath); in PRS()
/external/valgrind/main/memcheck/tests/darwin/
Dscalar.stderr.exp99 Syscall param link(newpath) contains uninitialised byte(s)
106 Syscall param link(newpath) points to unaddressable byte(s)
/external/valgrind/main/memcheck/tests/x86-linux/
Dscalar.stderr.exp127 Syscall param link(newpath) contains uninitialised byte(s)
136 Syscall param link(newpath) points to unaddressable byte(s)
429 Syscall param rename(newpath) contains uninitialised byte(s)
438 Syscall param rename(newpath) points to unaddressable byte(s)
922 Syscall param symlink(newpath) contains uninitialised byte(s)
931 Syscall param symlink(newpath) points to unaddressable byte(s)
/external/valgrind/main/coregrind/m_syswrap/
Dsyswrap-generic.c3447 PRE_REG_READ2(long, "link", const char *, oldpath, const char *, newpath); in PRE()
3834 PRE_REG_READ2(long, "rename", const char *, oldpath, const char *, newpath); in PRE()
4005 PRE_REG_READ2(long, "symlink", const char *, oldpath, const char *, newpath); in PRE()
Dsyswrap-linux.c3427 int, newdfd, const char *, newpath); in PRE()
3438 int, newdfd, const char *, newpath, in PRE()
3449 const char *, oldpath, int, newdfd, const char *, newpath); in PRE()
/external/libvpx/libvpx/examples/includes/geshi/docs/
Dgeshi-doc.txt672 $geshi->set_language_path($newpath);