| 184 | } |
| 185 | |
| 186 | static int |
| 187 | graph_fp_mem_populate(struct graph *graph) |
| 188 | { |
| 189 | int rc; |
| 190 | |
| 191 | graph_header_popluate(graph); |
| 192 | if (graph_pcap_is_enable()) |
| 193 | graph_pcap_init(graph); |
| 194 | graph_nodes_populate(graph); |
| 195 | rc = graph_node_nexts_populate(graph); |
| 196 | rc |= graph_src_nodes_populate(graph); |
| 197 | |
| 198 | return rc; |
| 199 | } |
| 200 | |
| 201 | int |
| 202 | graph_fp_mem_create(struct graph *graph) |
no test coverage detected