Lines Matching refs:patch_info
217 def PrintPatchResults(patch_info: patch_utils.PatchInfo):
227 if patch_info.applied_patches:
229 print("\n".join(_fmt(patch_info.applied_patches)))
231 if patch_info.failed_patches:
233 print("\n".join(_fmt(patch_info.failed_patches)))
235 if patch_info.non_applicable_patches:
237 print("\n".join(_fmt(patch_info.non_applicable_patches)))
239 if patch_info.modified_metadata:
242 % os.path.basename(patch_info.modified_metadata)
245 if patch_info.disabled_patches:
247 print("\n".join(_fmt(patch_info.disabled_patches)))
249 if patch_info.removed_patches:
253 for cur_patch_path in patch_info.removed_patches: