Lines Matching defs:status
402 int status, i;
431 status = tmgr_subport_profile_add(&subport_profile);
432 if (status != 0) {
455 int status, i;
494 status = tmgr_pipe_profile_add(&p);
495 if (status != 0) {
605 int status;
625 status = tmgr_subport_config(name, subport_id, subport_profile_id);
626 if (status) {
645 int status;
695 status = tmgr_pipe_config(name, subport_id, pipe_id_first,
697 if (status) {
1498 int enabled, status;
1696 status = pipeline_port_in_create(pipeline_name,
1698 if (status) {
1722 int status;
1876 status = pipeline_port_out_create(pipeline_name, &p);
1877 if (status) {
1917 int status;
2161 status = pipeline_table_create(pipeline_name, &p);
2162 if (status) {
2179 int status;
2213 status = pipeline_port_in_connect_to_table(pipeline_name,
2216 if (status) {
2240 int clear, status;
2284 status = pipeline_port_in_stats_read(pipeline_name,
2288 if (status) {
2311 int status;
2340 status = pipeline_port_in_enable(pipeline_name, port_id);
2341 if (status) {
2359 int status;
2388 status = pipeline_port_in_disable(pipeline_name, port_id);
2389 if (status) {
2413 int clear, status;
2457 status = pipeline_port_out_stats_read(pipeline_name,
2461 if (status) {
2493 int clear, status;
2532 status = pipeline_table_stats_read(pipeline_name,
2536 if (status) {
3718 int status;
3735 status = rte_cryptodev_get_cipher_algo_enum(
3737 if (status < 0)
3743 status = -ENOMEM;
3747 status = parse_hex_string(tokens[4], key, (uint32_t *)&len);
3748 if (status < 0)
3761 status = parse_hex_string(tokens[6],
3764 if (status < 0)
3792 int status;
3810 status = rte_cryptodev_get_auth_algo_enum(&xform_auth->auth.algo,
3812 if (status < 0)
3818 status = -ENOMEM;
3822 status = parse_hex_string(tokens[10], key, (uint32_t *)&len);
3823 if (status < 0)
3835 status = parser_read_uint16(&xform_auth->auth.digest_length,
3837 if (status < 0)
3872 int status;
3891 status = rte_cryptodev_get_aead_algo_enum(&xform_aead->aead.algo,
3893 if (status < 0)
3899 status = -ENOMEM;
3903 status = parse_hex_string(tokens[4], key, (uint32_t *)&len);
3904 if (status < 0)
3916 status = parse_hex_string(tokens[6], p->aead.iv.val,
3918 if (status < 0)
3931 status = parse_hex_string(tokens[8], p->aead.aad.val, (uint32_t *)&len);
3932 if (status < 0)
3939 status = parser_read_uint16(&xform_aead->aead.digest_length,
3941 if (status < 0)
3975 int status;
3989 status = parser_read_uint32(&p->data_offset, tokens[n_tokens - 1]);
3990 if (status < 0)
4269 int status;
4325 status = pipeline_table_rule_add(pipeline_name, table_id, &m, &a);
4326 if (status) {
4356 int status;
4457 status = pipeline_table_rule_add_default(pipeline_name,
4460 if (status) {
4491 int status;
4528 status = cli_rule_file_process(file_name,
4535 if (status) {
4541 status = pipeline_table_rule_add_bulk(pipeline_name,
4546 if (status) {
4570 int status;
4616 status = pipeline_table_rule_delete(pipeline_name,
4619 if (status) {
4639 int status;
4678 status = pipeline_table_rule_delete_default(pipeline_name,
4680 if (status) {
5046 int status;
5082 status = table_rule_show(pipeline_name, table_id, file_name);
5083 if (status) {
5103 int clear = 0, status;
5171 status = pipeline_table_rule_stats_read(pipeline_name,
5176 if (status) {
5213 int status;
5341 status = pipeline_table_mtr_profile_add(pipeline_name,
5345 if (status) {
5364 int status;
5403 status = pipeline_table_mtr_profile_delete(pipeline_name,
5406 if (status) {
5427 int clear = 0, status;
5495 status = pipeline_table_rule_mtr_read(pipeline_name,
5500 if (status) {
5616 int status;
5642 status = load_dscp_table(&dscp_table, file_name, &line_number);
5643 if (status) {
5648 status = pipeline_table_dscp_table_update(pipeline_name,
5652 if (status) {
5673 int clear = 0, status;
5741 status = pipeline_table_rule_ttl_read(pipeline_name,
5746 if (status) {
5770 int status;
5830 status = pipeline_table_rule_time_read(pipeline_name,
5834 if (status) {
5854 int status;
5878 status = thread_pipeline_enable(thread_id, pipeline_name);
5879 if (status) {
5897 int status;
5921 status = thread_pipeline_disable(thread_id, pipeline_name);
5922 if (status) {
6262 int status;
6267 status = parse_tokenize_string(in, tokens, &n_tokens);
6268 if (status) {
6647 int status = 0;
6657 status = -EINVAL;
6664 status = -ENOMEM;
6672 status = -ENOMEM;
6679 status = -EIO;
6699 status = parse_tokenize_string(line, tokens, &n_tokens);
6700 if (status) {
6701 status = -EINVAL;
6713 status = -ENOMEM;
6726 status = -EINVAL;
6738 status = -EINVAL;
6745 status = -EINVAL;
6791 return status;