Home
last modified time | relevance | path

Searched refs:retcode (Results 1 – 8 of 8) sorted by relevance

/f-stack/dpdk/drivers/net/dpaa2/base/
H A Ddpaa2_hw_dpni.c348 int32_t retcode; in dpaa2_attach_bp_list() local
378 retcode = dpni_set_buffer_layout(dpni, CMD_PRI_LOW, priv->token, in dpaa2_attach_bp_list()
380 if (retcode) { in dpaa2_attach_bp_list()
382 retcode); in dpaa2_attach_bp_list()
383 return retcode; in dpaa2_attach_bp_list()
395 retcode = dpni_set_pools(dpni, CMD_PRI_LOW, priv->token, &bpool_cfg); in dpaa2_attach_bp_list()
396 if (retcode != 0) { in dpaa2_attach_bp_list()
399 bpool_cfg.pools[0].dpbp_id, retcode); in dpaa2_attach_bp_list()
400 return retcode; in dpaa2_attach_bp_list()
/f-stack/freebsd/i386/i386/
H A Dvm86.c189 int retcode = 0; in vm86_emulate() local
201 retcode = SIGTRAP; in vm86_emulate()
269 return (retcode); in vm86_emulate()
285 return (retcode); in vm86_emulate()
303 return (retcode); in vm86_emulate()
324 return (retcode); in vm86_emulate()
332 return (retcode); in vm86_emulate()
341 return (retcode); in vm86_emulate()
358 return (retcode); in vm86_emulate()
373 return (retcode); in vm86_emulate()
[all …]
/f-stack/dpdk/drivers/net/dpaa2/
H A Ddpaa2_ethdev.c1550 if (retcode) in dpaa2_dev_stats_get()
1559 if (retcode) in dpaa2_dev_stats_get()
1568 if (retcode) in dpaa2_dev_stats_get()
1620 if (retcode) in dpaa2_dev_xstats_get()
1626 if (retcode) in dpaa2_dev_xstats_get()
1632 if (retcode) in dpaa2_dev_xstats_get()
1700 if (retcode) in dpaa2_xstats_get_by_id()
1706 if (retcode) in dpaa2_xstats_get_by_id()
1712 if (retcode) in dpaa2_xstats_get_by_id()
1770 int retcode; in dpaa2_dev_stats_reset() local
[all …]
/f-stack/dpdk/drivers/net/hns3/
H A Dhns3_rxtx_vec_neon.h94 uint32_t retcode = 0; in hns3_desc_parse_field() local
111 retcode |= 1u << i; in hns3_desc_parse_field()
121 return retcode; in hns3_desc_parse_field()
H A Dhns3_rxtx_vec_sve.c41 uint32_t retcode = 0; in hns3_desc_parse_field_sve() local
52 retcode |= 1u << i; in hns3_desc_parse_field_sve()
63 return retcode; in hns3_desc_parse_field_sve()
/f-stack/dpdk/drivers/crypto/dpaa2_sec/
H A Ddpaa2_sec_dpseci.c1760 int32_t retcode; in dpaa2_sec_queue_pair_setup() local
1802 retcode = dpseci_set_rx_queue(dpseci, CMD_PRI_LOW, priv->token, in dpaa2_sec_queue_pair_setup()
1804 return retcode; in dpaa2_sec_queue_pair_setup()
3846 int retcode, hw_id; in dpaa2_sec_dev_init() local
3900 retcode = dpseci_open(dpseci, CMD_PRI_LOW, hw_id, &token); in dpaa2_sec_dev_init()
3901 if (retcode != 0) { in dpaa2_sec_dev_init()
3903 retcode); in dpaa2_sec_dev_init()
3906 retcode = dpseci_get_attributes(dpseci, CMD_PRI_LOW, token, &attr); in dpaa2_sec_dev_init()
3907 if (retcode != 0) { in dpaa2_sec_dev_init()
3910 retcode); in dpaa2_sec_dev_init()
/f-stack/app/redis-5.0.5/src/
H A Dserver.c450 void exitFromChild(int retcode) { in exitFromChild() argument
452 exit(retcode); in exitFromChild()
454 _exit(retcode); in exitFromChild()
H A Dserver.h1422 void exitFromChild(int retcode);