MCPcopy Create free account
hub / github.com/F-Stack/f-stack / pipeline_find

Function pipeline_find

dpdk/examples/ip_pipeline/pipeline.c:54–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52}
53
54struct pipeline *
55pipeline_find(const char *name)
56{
57 struct pipeline *pipeline;
58
59 if (name == NULL)
60 return NULL;
61
62 TAILQ_FOREACH(pipeline, &pipeline_list, node)
63 if (strcmp(name, pipeline->name) == 0)
64 return pipeline;
65
66 return NULL;
67}
68
69struct pipeline *
70pipeline_create(const char *name, struct pipeline_params *params)

Callers 15

table_rule_showFunction · 0.70
pipeline_createFunction · 0.70
pipeline_port_in_createFunction · 0.70
pipeline_port_out_createFunction · 0.70
pipeline_table_createFunction · 0.70
thread_pipeline_enableFunction · 0.70
thread_pipeline_disableFunction · 0.70
pipeline_port_in_enableFunction · 0.70
pipeline_port_in_disableFunction · 0.70

Calls 1

strcmpFunction · 0.85

Tested by

no test coverage detected