/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/icu/source/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/icu4c/tools/toolutil/ |
filetools.cpp | 52 char newpath[MAX_PATH_SIZE] = ""; local 53 uprv_strcpy(newpath, checkAgainst); 54 uprv_strcat(newpath, U_FILE_SEP_STRING); 55 uprv_strcat(newpath, dirEntry->d_name); 57 if ((subDirp = opendir(newpath)) != NULL) { 58 /* If this new path is a directory, make a recursive call with the newpath. */ 60 isLatest = isFileModTimeLater(filePath, newpath, isDir); 65 int32_t latest = whichFileModTimeIsLater(filePath, 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
|
/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 | 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/native/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 | 898 char *newpath; local 904 newpath = malloc(len); 905 if (!newpath) 906 fatal_error(ctx, "Couldn't malloc() newpath"); 907 strcpy(newpath, PATH_SET); 910 strcat(newpath, ":"); 911 strcat(newpath, oldpath); 913 putenv(newpath); [all...] |
/external/elfutils/src/ |
ld.c | 1177 struct pathelement *newpath; local [all...] |
/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/chromium_org/third_party/icu/source/common/ |
putil.c | 933 /* Create a newpath with the new entry to test each entry in the directory. */ 934 char newpath[MAX_PATH_SIZE]; local 935 uprv_strcpy(newpath, curpath); 936 uprv_strcat(newpath, dirName); 938 if ((subDirp = opendir(newpath)) != NULL) { 939 /* If this new path is a directory, make a recursive call with the newpath. */ 941 uprv_strcat(newpath, "/"); 942 result = searchForTZFile(newpath, tzInfo); 954 if(compareBinaryFiles(TZDEFAULT, newpath, tzInfo)) { 955 const char* zoneid = newpath + (sizeof(TZZONEINFO)) - 1 [all...] |
/external/e2fsprogs/misc/ |
mke2fs.c | 1205 char *newpath; local 1210 newpath = malloc(pathlen); 1211 strcpy(newpath, PATH_SET); 1215 strcat (newpath, ":"); 1216 strcat (newpath, oldpath); 1218 putenv (newpath); [all...] |
/external/icu4c/common/ |
putil.cpp | 954 /* Create a newpath with the new entry to test each entry in the directory. */ 955 char newpath[MAX_PATH_SIZE]; local 956 uprv_strcpy(newpath, curpath); 957 uprv_strcat(newpath, dirName); 959 if ((subDirp = opendir(newpath)) != NULL) { 960 /* If this new path is a directory, make a recursive call with the newpath. */ 962 uprv_strcat(newpath, "/"); 963 result = searchForTZFile(newpath, tzInfo); 975 if(compareBinaryFiles(TZDEFAULT, newpath, tzInfo)) [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 | |