HomeSort by relevance Sort by last modified time
    Searched defs:newpath (Results 1 - 14 of 14) sorted by null

  /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/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);
  /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...]
  /frameworks/base/cmds/rawbu/
backup.cpp 133 char *newpath; local
135 newpath = strdup(nameBuffer);
136 if (wipe(newpath) == 0) {
137 free(newpath);
143 ret = rmdir(newpath);
146 newpath, strerror(errno));
150 free(newpath);
  /external/e2fsprogs/e2fsck/
unix.c 874 char *newpath; local
880 newpath = malloc(len);
881 if (!newpath)
882 fatal_error(ctx, "Couldn't malloc() newpath");
883 strcpy(newpath, PATH_SET);
886 strcat(newpath, ":");
887 strcat(newpath, oldpath);
889 putenv(newpath);
    [all...]
  /external/elfutils/src/
ld.c 1177 struct pathelement *newpath; local
    [all...]
  /system/core/sdcard/
sdcard.c 694 char *newpath, newbuffer[PATH_BUFFER_SIZE]; local
719 newpath = do_node_get_path(newparent, newbuffer, newname, NO_CASE_SENSITIVE_MATCH);
721 newpath = node_get_path(newparent, newbuffer, newname);
735 res = rename(oldpath, 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/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...]
  /external/e2fsprogs/misc/
mke2fs.c 1155 char *newpath; local
1160 newpath = malloc(pathlen);
1161 strcpy(newpath, PATH_SET);
1165 strcat (newpath, ":");
1166 strcat (newpath, oldpath);
1168 putenv (newpath);
    [all...]
  /external/icu4c/common/
putil.c 930 /* Create a newpath with the new entry to test each entry in the directory. */
931 char newpath[MAX_PATH_SIZE]; local
932 uprv_strcpy(newpath, curpath);
933 uprv_strcat(newpath, dirName);
935 if ((subDirp = opendir(newpath)) != NULL) {
936 /* If this new path is a directory, make a recursive call with the newpath. */
938 uprv_strcat(newpath, "/");
939 result = searchForTZFile(newpath, tzInfo);
951 if(compareBinaryFiles(TZDEFAULT, newpath, tzInfo)) {
952 const char* zoneid = newpath + (sizeof(TZZONEINFO)) - 1
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 

Completed in 525 milliseconds