Searched defs:RawPull (Results 1 - 2 of 2) sorted by relevance

/systemd/src/import/
H A Dpull-raw.h27 typedef struct RawPull RawPull; typedef in typeref:struct:RawPull
29 typedef void (*RawPullFinished)(RawPull *pull, int error, void *userdata);
31 int raw_pull_new(RawPull **pull, sd_event *event, const char *image_root, RawPullFinished on_finished, void *userdata);
32 RawPull* raw_pull_unref(RawPull *pull);
34 DEFINE_TRIVIAL_CLEANUP_FUNC(RawPull*, raw_pull_unref);
36 int raw_pull_start(RawPull *pull, const char *url, const char *local, bool force_local, ImportVerify verify, bool settings);
H A Dpull-raw.c59 struct RawPull { struct
87 RawPull* raw_pull_unref(RawPull *i) {
119 RawPull **ret,
125 _cleanup_(raw_pull_unrefp) RawPull *i = NULL;
130 i = new0(RawPull, 1);
164 static void raw_pull_report_progress(RawPull *i, RawProgress p) {
220 static int raw_pull_maybe_convert_qcow2(RawPull *i) {
267 static int raw_pull_make_local_copy(RawPull *i) {
367 static bool raw_pull_is_done(RawPull *
[all...]

Completed in 1751 milliseconds