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