Lines Matching refs:pkgconf_variable_find
84 pkgconf_variable_t *found = pkgconf_variable_find(&vars, "prefix"); in test_variable_find_present()
96 pkgconf_variable_t *found = pkgconf_variable_find(&vars, "nonexistent"); in test_variable_find_absent()
112 TEST_ASSERT_NONNULL(pkgconf_variable_find(&vars, "prefix")); in test_variable_find_among_many()
113 TEST_ASSERT_NONNULL(pkgconf_variable_find(&vars, "exec_prefix")); in test_variable_find_among_many()
114 TEST_ASSERT_NONNULL(pkgconf_variable_find(&vars, "libdir")); in test_variable_find_among_many()
115 TEST_ASSERT_NONNULL(pkgconf_variable_find(&vars, "includedir")); in test_variable_find_among_many()
116 TEST_ASSERT_NULL(pkgconf_variable_find(&vars, "notpresent")); in test_variable_find_among_many()
128 TEST_ASSERT_NONNULL(pkgconf_variable_find(&vars, "prefix")); in test_variable_delete()
131 TEST_ASSERT_NULL(pkgconf_variable_find(&vars, "prefix")); in test_variable_delete()
145 pkgconf_variable_t *v = pkgconf_variable_find(&vars, "version"); in test_variable_eval_str_plain()
168 pkgconf_variable_t *libdir = pkgconf_variable_find(&vars, "libdir"); in test_variable_eval_str_with_reference()
191 pkgconf_variable_t *includedir = pkgconf_variable_find(&vars, "includedir"); in test_variable_eval_str_chained()