Lines Matching refs:pool
10 pool_t pool;
16 pool_t pool;
24 pool_t pool;
28 pool = pool_alloconly_create("dsync serializer", 512);
29 serializer = p_new(pool, struct dsync_serializer, 1);
30 serializer->pool = pool;
33 dup_keys = p_new(pool, const char *, count + 1);
35 dup_keys[i] = p_strdup(pool, keys[i]);
47 pool_unref(&serializer->pool);
69 pool_t pool = pool_alloconly_create("dsync serializer encode", 1024);
71 encoder = p_new(pool, struct dsync_serializer_encoder, 1);
72 encoder->pool = pool;
74 p_array_init(&encoder->values, pool, serializer->keys_count);
85 value = p_strdup(encoder->pool, value);
116 pool_unref(&encoder->pool);