Lines Matching full:uuid
84 # Determines the UUID value by calling otool.
99 # state 0 is when nothing UUID-related has been seen yet. State 1 is
105 uuid = ""
121 # The UUID display format changed in the version of otool shipping
123 # uuid 4D7135B2-9C56-C5F5-5F49-A994258E0955
125 # uuid 4D7135B2-9C56-C5F5-5F49-A994258E0955
126 # The old format, from cctools-750 and older's otool, breaks the UUID
128 # uuid 0x4d 0x71 0x35 0xb2 0x9c 0x56 0xc5 0xf5
130 new_uuid_match = re.match("^ {3,4}uuid (.{8}-.{4}-.{4}-.{4}-.{12})$",
133 uuid = new_uuid_match.group(1)
138 old_uuid_match = re.match("^ uuid 0x(..) 0x(..) 0x(..) 0x(..) "
143 uuid = old_uuid_match.group(1) + old_uuid_match.group(2) + \
155 uuid += old_uuid_match.group(1) + old_uuid_match.group(2) + "-" + \
166 uuids[arch] = uuid.upper()