Lines Matching refs:NULL

92 		if (cache == NULL)  in test_mempool_basic()
148 if (objtable == NULL) in test_mempool_basic()
198 NULL, NULL, in test_mempool_creation_with_exceeded_cache_size()
199 my_obj_init, NULL, in test_mempool_creation_with_exceeded_cache_size()
202 if (mp_cov != NULL) { in test_mempool_creation_with_exceeded_cache_size()
216 NULL, NULL, in test_mempool_creation_with_invalid_flags()
217 NULL, NULL, in test_mempool_creation_with_invalid_flags()
220 if (mp_cov != NULL) { in test_mempool_creation_with_invalid_flags()
238 void *obj = NULL; in test_mempool_single_producer()
250 if (NULL != scsp_obj_table[i]) { in test_mempool_single_producer()
265 scsp_obj_table[i] = NULL; in test_mempool_single_producer()
290 if (NULL == scsp_obj_table[i]) in test_mempool_single_consumer()
335 if (mp_spsc == NULL) { in test_mempool_sp_sc()
338 my_mp_init, NULL, in test_mempool_sp_sc()
339 my_obj_init, NULL, in test_mempool_sp_sc()
343 if (mp_spsc == NULL) in test_mempool_sp_sc()
362 rte_eal_remote_launch(test_mempool_launch_single_consumer, NULL, in test_mempool_sp_sc()
372 mp_spsc = NULL; in test_mempool_sp_sc()
388 if (mp == NULL) in test_mempool_basic_ex()
393 if (obj == NULL) { in test_mempool_basic_ex()
432 if (obj != NULL) in test_mempool_basic_ex()
445 NULL, NULL, in test_mempool_same_name_twice_creation()
446 NULL, NULL, in test_mempool_same_name_twice_creation()
449 if (mp_tc == NULL) in test_mempool_same_name_twice_creation()
454 NULL, NULL, in test_mempool_same_name_twice_creation()
455 NULL, NULL, in test_mempool_same_name_twice_creation()
458 if (mp_tc2 != NULL) { in test_mempool_same_name_twice_creation()
486 if (mp == NULL) { in test_mp_mem_init()
540 NULL); in test_mempool_events()
556 rte_mempool_set_ops_byname(mp[0], rte_mbuf_best_mempool_ops(), NULL); in test_mempool_events()
584 rte_mempool_set_ops_byname(mp[1], rte_mbuf_best_mempool_ops(), NULL); in test_mempool_events()
601 mp[i] = NULL; in test_mempool_events()
708 mp = NULL; in test_mempool_events_safety()
745 const struct rte_memzone *mz = NULL; in test_mempool_flag_non_io_set_when_no_iova_contig_set()
749 struct rte_mempool *mp = NULL; in test_mempool_flag_non_io_set_when_no_iova_contig_set()
761 rte_mempool_set_ops_byname(mp, rte_mbuf_best_mempool_ops(), NULL); in test_mempool_flag_non_io_set_when_no_iova_contig_set()
770 ret = rte_mempool_populate_iova(mp, virt, iova, size, NULL, NULL); in test_mempool_flag_non_io_set_when_no_iova_contig_set()
785 const struct rte_memzone *mz = NULL; in test_mempool_flag_non_io_unset_when_populated_with_valid_iova()
790 struct rte_mempool *mp = NULL; in test_mempool_flag_non_io_unset_when_populated_with_valid_iova()
812 RTE_BAD_IOVA, block_size, NULL, NULL); in test_mempool_flag_non_io_unset_when_populated_with_valid_iova()
818 ret = rte_mempool_populate_iova(mp, virt, iova, block_size, NULL, NULL); in test_mempool_flag_non_io_unset_when_populated_with_valid_iova()
825 RTE_BAD_IOVA, block_size, NULL, NULL); in test_mempool_flag_non_io_unset_when_populated_with_valid_iova()
846 struct rte_mempool *mp_cache = NULL; in test_mempool()
847 struct rte_mempool *mp_nocache = NULL; in test_mempool()
848 struct rte_mempool *mp_stack_anon = NULL; in test_mempool()
849 struct rte_mempool *mp_stack_mempool_iter = NULL; in test_mempool()
850 struct rte_mempool *mp_stack = NULL; in test_mempool()
851 struct rte_mempool *default_pool = NULL; in test_mempool()
860 NULL, NULL, in test_mempool()
861 my_obj_init, NULL, in test_mempool()
864 if (mp_nocache == NULL) { in test_mempool()
873 NULL, NULL, in test_mempool()
874 my_obj_init, NULL, in test_mempool()
877 if (mp_cache == NULL) { in test_mempool()
889 if (mp_stack_anon == NULL) in test_mempool()
908 NULL, NULL, in test_mempool()
909 my_obj_init, NULL, in test_mempool()
912 if (mp_stack_mempool_iter == NULL) in test_mempool()
917 NULL); in test_mempool()
933 if (mp_stack == NULL) { in test_mempool()
937 if (rte_mempool_set_ops_byname(mp_stack, "stack", NULL) < 0) { in test_mempool()
945 rte_mempool_obj_iter(mp_stack, my_obj_init, NULL); in test_mempool()
955 if (default_pool == NULL) { in test_mempool()
960 default_pool_ops, NULL) < 0) { in test_mempool()
968 rte_mempool_obj_iter(default_pool, my_obj_init, NULL); in test_mempool()
977 rte_mempool_walk(walk_cb, NULL); in test_mempool()