Lines Matching refs:body
78 def ProcessDataHeader(self, input, body): argument
83 WriteIntLE(body, magic)
93 WriteShortLE(body, version)
97 WriteShortLE(body, offsetToData + 16)
100 Copy(input, body, 8)
108 WriteShortLE(body, self._mRecordSize)
112 Copy(input, body, offsetToData)
136 def Process(self, input, body): argument
144 WriteShortLE(body, threadId)
145 Copy(input, body, self._mRecordSize - 2)
161 body = open(filename + '.body', 'wb') # Body part
165 self.ProcessDataHeader(input, body)
169 self.Process(input, body)
175 body.close()