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) != 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) != 0) { in PatchMode()
112 bonus->size = fc.size; in PatchMode()
113 bonus->data = (char*)fc.data; in PatchMode()
/bootable/recovery/updater/
Dinstall.c1398 FileContents fc; in ReadFileFn() local
1399 if (LoadFileContents(filename, &fc) != 0) { in ReadFileFn()
1403 free(fc.data); in ReadFileFn()
1407 v->size = fc.size; in ReadFileFn()
1408 v->data = (char*)fc.data; in ReadFileFn()