Lines Matching refs:delPos
503 int pos, expectedPos, delPos; in test_add_delete_free_lf() local
529 delPos = pos; in test_add_delete_free_lf()
531 pos = rte_hash_free_key_with_position(handle, delPos); in test_add_delete_free_lf()
532 print_key_info("Free", &keys[0], delPos); in test_add_delete_free_lf()
534 "failed to free key (pos=%d)", delPos); in test_add_delete_free_lf()
565 delPos = pos; in test_add_delete_free_lf()
567 pos = rte_hash_free_key_with_position(handle, delPos); in test_add_delete_free_lf()
568 print_key_info("Free", &keys[0], delPos); in test_add_delete_free_lf()
570 "failed to free key (pos=%d)", delPos); in test_add_delete_free_lf()
601 int pos, expectedPos, delPos, result; in test_hash_get_key_with_position() local
640 delPos = rte_hash_del_key(handle, &keys[0]); in test_hash_get_key_with_position()
641 print_key_info("Del", &keys[0], delPos); in test_hash_get_key_with_position()
642 RETURN_IF_ERROR(delPos != expectedPos, in test_hash_get_key_with_position()
643 "failed to delete key (pos0=%d)", delPos); in test_hash_get_key_with_position()
645 result = rte_hash_get_key_with_position(handle, delPos, &key); in test_hash_get_key_with_position()
648 result = rte_hash_free_key_with_position(handle, delPos); in test_hash_get_key_with_position()
649 print_key_info("Free", &keys[0], delPos); in test_hash_get_key_with_position()
651 "failed to free key (pos1=%d)", delPos); in test_hash_get_key_with_position()
653 result = rte_hash_get_key_with_position(handle, delPos, &key); in test_hash_get_key_with_position()