Lines Matching refs:PullJob
28 typedef struct PullJob PullJob;
30 typedef void (*PullJobFinished)(PullJob *job);
31 typedef int (*PullJobOpenDisk)(PullJob *job);
32 typedef int (*PullJobHeader)(PullJob *job, const char *header, size_t sz);
33 typedef void (*PullJobProgress)(PullJob *job);
56 struct PullJob {
108 int pull_job_new(PullJob **job, const char *url, CurlGlue *glue, void *userdata);
109 PullJob* pull_job_unref(PullJob *job);
111 int pull_job_begin(PullJob *j);
115 DEFINE_TRIVIAL_CLEANUP_FUNC(PullJob*, pull_job_unref);