Lines Matching full:manifest
288 ctx.config.manifest = Configuration::No; in parseManifest()
293 ctx.config.manifest = Configuration::Embed; in parseManifest()
428 fatal("internal manifest tool failed on default xml: " + in createManifestXmlWithInternalMt()
432 std::unique_ptr<MemoryBuffer> manifest = in createManifestXmlWithInternalMt() local
435 if (auto e = merger.merge(takeBuffer(std::move(manifest)))) in createManifestXmlWithInternalMt()
436 fatal("internal manifest tool failed on file " + filename + ": " + in createManifestXmlWithInternalMt()
445 // Create the default manifest file as a temporary file. in createManifestXmlWithExternalMt()
446 TemporaryFile Default("defaultxml", "manifest"); in createManifestXmlWithExternalMt()
456 TemporaryFile user("user", "manifest"); in createManifestXmlWithExternalMt()
459 e.add("/manifest"); in createManifestXmlWithExternalMt()
462 e.add("/manifest"); in createManifestXmlWithExternalMt()
499 ".manifest.res"); in createMemoryBufferForManifestRes()
535 // Create a resource file containing a manifest XML.
537 std::string manifest = createManifestXml(); in createManifestRes() local
540 createMemoryBufferForManifestRes(manifest.size()); in createManifestRes()
544 writeResEntryHeader(buf, manifest.size(), ctx.config.manifestID); in createManifestRes()
546 // Copy the manifest data into the .res file. in createManifestRes()
547 std::copy(manifest.begin(), manifest.end(), buf); in createManifestRes()
554 path = ctx.config.outputFile + ".manifest"; in createSideBySideManifest()
558 fatal("failed to create manifest: " + ec.message()); in createSideBySideManifest()