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)
144 def Process(self, input, body): argument
152 WriteShortLE(body, threadId)
153 Copy(input, body, self._mRecordSize - 2)
184 body = open(filename + '.body', 'wb') # Body part
188 self.ProcessDataHeader(input, body)
193 self.Process(input, body)
199 body.close()