| 27 | namespace ark { |
| 28 | |
| 29 | bool AFCBusModule::Init() |
| 30 | { |
| 31 | if (!LoadBusRelationConfig()) |
| 32 | { |
| 33 | return false; |
| 34 | } |
| 35 | |
| 36 | if (!LoadRegCenterConfig()) |
| 37 | { |
| 38 | return false; |
| 39 | } |
| 40 | |
| 41 | if (!LoadProcConfig()) |
| 42 | { |
| 43 | return false; |
| 44 | } |
| 45 | |
| 46 | return true; |
| 47 | } |
| 48 | |
| 49 | bool AFCBusModule::LoadProcConfig() |
| 50 | { |
nothing calls this directly
no outgoing calls
no test coverage detected