Home
last modified time | relevance | path

Searched refs:job_interface (Results 1 – 8 of 8) sorted by relevance

/external/syslinux/gpxe/src/include/gpxe/
Djob.h34 struct job_interface;
43 void ( * done ) ( struct job_interface *job, int rc );
48 void ( * kill ) ( struct job_interface *job );
54 void ( * progress ) ( struct job_interface *job,
59 struct job_interface { struct
66 extern struct job_interface null_job; argument
69 extern void job_done ( struct job_interface *job, int rc );
70 extern void job_kill ( struct job_interface *job );
71 extern void job_progress ( struct job_interface *job,
74 extern void ignore_job_done ( struct job_interface *job, int rc );
[all …]
Dmonojob.h12 struct job_interface;
14 extern struct job_interface monojob;
Ddownloader.h12 struct job_interface;
15 extern int create_downloader ( struct job_interface *job, struct image *image,
Ddhcp.h21 struct job_interface;
625 extern int start_dhcp ( struct job_interface *job, struct net_device *netdev );
626 extern int start_pxebs ( struct job_interface *job, struct net_device *netdev,
/external/syslinux/gpxe/src/core/
Djob.c31 void job_done ( struct job_interface *job, int rc ) { in job_done()
32 struct job_interface *dest = job_get_dest ( job ); in job_done()
39 void job_kill ( struct job_interface *job ) { in job_kill()
40 struct job_interface *dest = job_get_dest ( job ); in job_kill()
47 void job_progress ( struct job_interface *job, in job_progress()
49 struct job_interface *dest = job_get_dest ( job ); in job_progress()
64 void ignore_job_done ( struct job_interface *job __unused, int rc __unused ) { in ignore_job_done()
68 void ignore_job_kill ( struct job_interface *job __unused ) { in ignore_job_kill()
72 void ignore_job_progress ( struct job_interface *job __unused, in ignore_job_progress()
91 struct job_interface null_job = {
Ddownloader.c44 struct job_interface job;
128 static void downloader_job_kill ( struct job_interface *job ) { in downloader_job_kill()
142 static void downloader_job_progress ( struct job_interface *job, in downloader_job_progress()
256 int create_downloader ( struct job_interface *job, struct image *image, in create_downloader()
Dmonojob.c39 static void monojob_done ( struct job_interface *job __unused, int rc ) { in monojob_done()
51 struct job_interface monojob = {
/external/syslinux/gpxe/src/net/udp/
Ddhcp.c244 struct job_interface job;
1353 static void dhcp_job_kill ( struct job_interface *job ) { in dhcp_job_kill()
1401 int start_dhcp ( struct job_interface *job, struct net_device *netdev ) { in start_dhcp()
1494 int start_pxebs ( struct job_interface *job, struct net_device *netdev, in start_pxebs()