Searched refs:job_interface (Results 1 – 8 of 8) sorted by relevance
/external/syslinux/gpxe/src/include/gpxe/ |
D | job.h | 34 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 …]
|
D | monojob.h | 12 struct job_interface; 14 extern struct job_interface monojob;
|
D | downloader.h | 12 struct job_interface; 15 extern int create_downloader ( struct job_interface *job, struct image *image,
|
D | dhcp.h | 21 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/ |
D | job.c | 31 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 = {
|
D | downloader.c | 44 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()
|
D | monojob.c | 39 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/ |
D | dhcp.c | 244 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()
|