Home
last modified time | relevance | path

Searched refs:fc (Results 1 – 2 of 2) sorted by relevance

/bootable/recovery/applypatch/
Dmain.c76 FileContents fc; in ParsePatchArgs() local
77 if (LoadFileContents(colon, &fc, RETOUCH_DONT_MASK) != 0) { in ParsePatchArgs()
82 (*patches)[i]->size = fc.size; in ParsePatchArgs()
83 (*patches)[i]->data = (char*)fc.data; in ParsePatchArgs()
105 FileContents fc; in PatchMode() local
106 if (LoadFileContents(argv[2], &fc, RETOUCH_DONT_MASK) != 0) { in PatchMode()
112 bonus->size = fc.size; in PatchMode()
113 bonus->data = (char*)fc.data; in PatchMode()
/bootable/recovery/updater/
Dinstall.c1107 FileContents fc; in ReadFileFn() local
1108 if (LoadFileContents(filename, &fc, RETOUCH_DONT_MASK) != 0) { in ReadFileFn()
1113 free(fc.data); in ReadFileFn()
1117 v->size = fc.size; in ReadFileFn()
1118 v->data = (char*)fc.data; in ReadFileFn()