Lines Matching +full:3 +full:rd
94 rd = RelationshipData()
95 rd.ownerType = RelationshipDataElementType.DOCUMENT
96 rd.ownerDocument = doc
97 rd.otherType = RelationshipDataElementType.PACKAGEID
98 rd.otherPackageID = cfgpackage.spdxID
99 rd.rlnType = "DESCRIBES"
102 self.pendingRelationships.append(rd)
212 rd = RelationshipData()
213 rd.ownerType = RelationshipDataElementType.DOCUMENT
214 rd.ownerDocument = self.docBuild
215 rd.otherType = RelationshipDataElementType.TARGETNAME
216 rd.otherTargetName = "zephyr_final"
217 rd.rlnType = "DESCRIBES"
220 self.pendingRelationships.append(rd)
322 rd = RelationshipData()
323 rd.ownerType = RelationshipDataElementType.DOCUMENT
324 rd.ownerDocument = self.docSDK
325 rd.otherType = RelationshipDataElementType.PACKAGEID
326 rd.otherPackageID = cfgPackageSDK.spdxID
327 rd.rlnType = "DESCRIBES"
330 self.pendingRelationships.append(rd)
477 # 3) build File for that target
500 rd = RelationshipData()
501 rd.ownerType = RelationshipDataElementType.FILENAME
502 rd.ownerFileAbspath = bf.abspath
503 rd.otherType = RelationshipDataElementType.FILENAME
504 rd.otherFileAbspath = srcAbspath
505 rd.rlnType = "GENERATED_FROM"
508 self.pendingRelationships.append(rd)
526 rd = RelationshipData()
527 rd.ownerType = RelationshipDataElementType.FILENAME
528 rd.ownerFileAbspath = bf.abspath
529 rd.otherType = RelationshipDataElementType.FILENAME
530 rd.otherFileAbspath = inc
531 rd.rlnType = "GENERATED_FROM"
534 self.pendingRelationships.append(rd)
540 # 3) build File for this target
564 # 3) Package for this Target
576 rd = RelationshipData()
577 rd.ownerType = RelationshipDataElementType.TARGETNAME
578 rd.ownerTargetName = pkg.cfg.name
579 rd.otherType = RelationshipDataElementType.TARGETNAME
580 rd.otherTargetName = depName
581 rd.rlnType = "HAS_PREREQUISITE"
584 self.pendingRelationships.append(rd)
609 rd = RelationshipData()
610 rd.ownerType = RelationshipDataElementType.FILENAME
611 rd.ownerFileAbspath = pkg.targetBuildFile.abspath
612 rd.otherType = RelationshipDataElementType.FILENAME
613 rd.otherFileAbspath = depAbspath
614 rd.rlnType = "STATIC_LINK"
617 self.pendingRelationships.append(rd)