Lines Matching refs:map_out
372 GHashTable *map_in = nullptr, *map_out = nullptr; in test_thrift_client() local
457 map_out = g_hash_table_new (nullptr, nullptr); in test_thrift_client()
458 map_in = g_hash_table_new (nullptr, nullptr); g_hash_table_insert (map_out, &i32, &i32); in test_thrift_client()
459 assert (t_test_thrift_test_client_test_map (iface, &map_in, map_out, &error) == TRUE); in test_thrift_client()
461 g_hash_table_destroy (map_out); in test_thrift_client()
464 map_out = g_hash_table_new (nullptr, nullptr); in test_thrift_client()
466 g_hash_table_insert (map_out, g_strdup ("a"), g_strdup ("123")); in test_thrift_client()
467 g_hash_table_insert (map_out, g_strdup ("a b"), g_strdup ("with spaces ")); in test_thrift_client()
468 g_hash_table_insert (map_out, g_strdup ("same"), g_strdup ("same")); in test_thrift_client()
469 g_hash_table_insert (map_out, g_strdup ("0"), g_strdup ("numeric key")); in test_thrift_client()
470 assert (t_test_thrift_test_client_test_string_map (iface, &map_in, map_out, &error) == TRUE); in test_thrift_client()
472 g_hash_table_destroy (map_out); in test_thrift_client()