Lines Matching refs:COFFConfig
134 const COFFConfig &COFFConfig, Object &Obj) { in handleArgs() argument
274 if (COFFConfig.Subsystem || COFFConfig.MajorSubsystemVersion || in handleArgs()
275 COFFConfig.MinorSubsystemVersion) { in handleArgs()
281 if (COFFConfig.Subsystem) in handleArgs()
282 Obj.PeHeader.Subsystem = *COFFConfig.Subsystem; in handleArgs()
283 if (COFFConfig.MajorSubsystemVersion) in handleArgs()
284 Obj.PeHeader.MajorSubsystemVersion = *COFFConfig.MajorSubsystemVersion; in handleArgs()
285 if (COFFConfig.MinorSubsystemVersion) in handleArgs()
286 Obj.PeHeader.MinorSubsystemVersion = *COFFConfig.MinorSubsystemVersion; in handleArgs()
293 const COFFConfig &COFFConfig, COFFObjectFile &In, in executeObjcopyOnBinary() argument
301 if (Error E = handleArgs(Config, COFFConfig, *Obj)) in executeObjcopyOnBinary()