Lines Matching full:k1
82 const char *const array[] = { "K1", "V1", "K2", "V2", NULL }; in ATF_TC_BODY()
89 iter = atf_map_find_c(&map, "K1"); in ATF_TC_BODY()
91 ATF_REQUIRE(strcmp(atf_map_citer_key(iter), "K1") == 0); in ATF_TC_BODY()
105 const char *const array[] = { "K1", "V1", "K2", NULL }; in ATF_TC_BODY()
130 RE(atf_map_insert(&map, "K1", val1, false)); in ATF_TC_BODY()
136 iter = atf_map_find(&map, "K1"); in ATF_TC_BODY()
138 ATF_REQUIRE(strcmp(atf_map_iter_key(iter), "K1") == 0); in ATF_TC_BODY()
142 iter = atf_map_find(&map, "K1"); in ATF_TC_BODY()
144 ATF_REQUIRE(strcmp(atf_map_iter_key(iter), "K1") == 0); in ATF_TC_BODY()
168 RE(atf_map_insert(&map, "K1", val1, false)); in ATF_TC_BODY()
174 iter = atf_map_find_c(&map, "K1"); in ATF_TC_BODY()
176 ATF_REQUIRE(strcmp(atf_map_citer_key(iter), "K1") == 0); in ATF_TC_BODY()
212 RE(atf_map_insert(&map, "K1", s1, false)); in ATF_TC_BODY()
218 ATF_CHECK_STREQ("K1", array[0]); in ATF_TC_BODY()
249 RE(atf_map_insert(&map, "K1", buf, false)); in ATF_TC_BODY()
372 char key[] = "K1"; in ATF_TC_BODY()
377 iter = atf_map_find_c(&map, "K1"); in ATF_TC_BODY()
383 iter = atf_map_find_c(&map, "K1"); in ATF_TC_BODY()