(self, data)
| 172 | self.out_ann = self.register(srd.OUTPUT_ANN) |
| 173 | |
| 174 | def putx(self, data): |
| 175 | self.put(self.ss, self.es, self.out_ann, data) |
| 176 | |
| 177 | def putf(self, s, e, data): |
| 178 | self.put(self.samplenums[s][0], self.samplenums[e][1], self.out_ann, data) |
no outgoing calls
no test coverage detected