Home | History | Annotate | Download | only in courgette

Lines Matching refs:patch

30   C_BAD_ENSEMBLE_MAGIC = 5,       // Ensemble patch has bad magic.
31 C_BAD_ENSEMBLE_VERSION = 6, // Ensemble patch has wrong version.
32 C_BAD_ENSEMBLE_HEADER = 7, // Ensemble patch has corrupt header.
33 C_BAD_ENSEMBLE_CRC = 8, // Ensemble patch has corrupt data.
55 // This is part of the patch format. Never reuse an id number.
71 // Applies the patch to the bytes in |old| and writes the transformed ensemble
74 Status ApplyEnsemblePatch(SourceStream* old, SourceStream* patch,
77 // Applies the patch in |patch_file_name| to the bytes in |old_file_name| and
80 // This function first validates that the patch file has a proper header, so the
81 // function can be used to 'try' a patch.
86 // Generates a patch that will transform the bytes in |old| into the bytes in
90 SinkStream* patch);