Home | History | Annotate | Download | only in clang-offload-bundler

Lines Matching refs:FH

848   std::unique_ptr<FileHandler> &FH = *FileHandlerOrErr;
849 assert(FH);
852 if (Error Err = FH->WriteHeader(OutputFile, InputBuffers))
859 if (Error Err = FH->WriteBundleStart(OutputFile, Triple))
861 if (Error Err = FH->WriteBundle(OutputFile, **Input))
863 if (Error Err = FH->WriteBundleEnd(OutputFile, Triple))
886 std::unique_ptr<FileHandler> &FH = *FileHandlerOrErr;
887 assert(FH);
888 return FH->listBundleIDs(Input);
907 std::unique_ptr<FileHandler> &FH = *FileHandlerOrErr;
908 assert(FH);
911 if (Error Err = FH->ReadHeader(Input))
926 Expected<Optional<StringRef>> CurTripleOrErr = FH->ReadBundleStart(Input);
948 if (Error Err = FH->ReadBundle(OutputFile, Input))
950 if (Error Err = FH->ReadBundleEnd(Input))