Searched refs:readPath (Results 1 – 1 of 1) sorted by relevance
/frameworks/native/cmds/rawbu/ |
D | backup.cpp | 454 char* readPath = (char*)malloc(pathLen+1); in read_header() local 455 if (fread(readPath, 1, pathLen, fh) != (size_t)pathLen) { in read_header() 457 free(readPath); in read_header() 460 readPath[pathLen] = 0; in read_header() 461 *path = readPath; in read_header() 465 fprintf(stderr, "bad uid in restore file at '%s'\n", readPath); in read_header() 470 fprintf(stderr, "bad gid in restore file at '%s'\n", readPath); in read_header() 475 fprintf(stderr, "bad mode in restore file at '%s'\n", readPath); in read_header() 480 fprintf(stderr, "bad atime in restore file at '%s'\n", readPath); in read_header() 486 fprintf(stderr, "bad mtime in restore file at '%s'\n", readPath); in read_header() [all …]
|