Lines Matching refs:rc
25 uint32_t rc;
27 rc = rte_power_freqs(lcore_id, freqs, num);
28 if (!rc) {
34 return rc;
42 int rc;
44 rc = rte_power_freqs(lcore_id, freqs, SPDK_MAX_LCORE_FREQS);
45 if (!rc) {
88 int rc;
90 rc = rte_power_get_capabilities(lcore_id, &caps);
91 if (rc != 0) {
92 return rc;
131 int rc;
133 rc = rte_power_init(lcore_id);
134 if (rc != 0) {
136 return rc;
139 rc = rte_power_get_capabilities(lcore_id, &caps);
140 if (rc != 0) {
142 return rc;
146 rc = rte_power_freq_enable_turbo(lcore_id);
147 if (rc != 0) {
149 return rc;
153 return rc;
161 int rc = 0;
194 rc = _init_core(i);
195 if (rc != 0) {
201 if (rc == 0) {
202 return rc;
215 return rc;