(m)
| 506 | |
| 507 | |
| 508 | def buildcallbacks(m): |
| 509 | cb_map[m['name']] = [] |
| 510 | for bi in m['body']: |
| 511 | if bi['block'] == 'interface': |
| 512 | for b in bi['body']: |
| 513 | if b: |
| 514 | buildcallback(b, m['name']) |
| 515 | else: |
| 516 | errmess('warning: empty body for %s\n' % (m['name'])) |
| 517 | |
| 518 | |
| 519 | def buildcallback(rout, um): |
nothing calls this directly
no test coverage detected