Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp141 Expected<FilePermissionsApplier> PermsApplierOrErr = in executeObjcopy() local
143 if (!PermsApplierOrErr) in executeObjcopy()
144 return PermsApplierOrErr.takeError(); in executeObjcopy()
214 PermsApplierOrErr->apply(Config.OutputFilename, Config.PreserveDates)) in executeObjcopy()
219 PermsApplierOrErr->apply(Config.SplitDWO, Config.PreserveDates, in executeObjcopy()
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfutil/
H A Dllvm-dwarfutil.cpp517 Expected<FilePermissionsApplier> PermsApplierOrErr = in main()
519 if (!PermsApplierOrErr) in main()
520 error(createFileError(Opts.InputFileName, PermsApplierOrErr.takeError())); in main()
533 if (Error Err = PermsApplierOrErr->apply(Opts.OutputFileName)) in main()
537 if (Error Err = PermsApplierOrErr->apply(Opts.getSeparateDebugFileName())) in main()
524 Expected<FilePermissionsApplier> PermsApplierOrErr = main() local