Lines Matching refs:dst
45 void *dst, size_t dst_alloc_size, size_t *dst_size);
47 void **dst, size_t *dst_alloc_size,
154 _cleanup_close_ int src = -1, dst = -1, dst2 = -1;
170 assert_se((dst = mkostemp_safe(pattern, O_RDWR|O_CLOEXEC)) >= 0);
172 assert_se(compress(src, dst, -1) == 0);
185 assert_se(lseek(dst, 0, SEEK_SET) == 0);
186 r = decompress(dst, dst2, st.st_size);
194 assert_se(lseek(dst, 1, SEEK_SET) == 1);
195 r = decompress(dst, dst2, st.st_size);
198 assert_se(lseek(dst, 0, SEEK_SET) == 0);
200 r = decompress(dst, dst2, st.st_size - 1);