Searched refs:job (Results 1 - 25 of 37) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Dkcopyd.c169 * Error state of the job.
191 * Set this to ensure you are notified when the job has
198 * These fields are only used if the job has been split
257 * Functions to push and pop a job onto the head of a given job
262 struct kcopyd_job *job = NULL; local
268 job = list_entry(jobs->next, struct kcopyd_job, list);
269 list_del(&job->list);
273 return job;
276 static inline void push(struct list_head *jobs, struct kcopyd_job *job) argument
294 run_complete_job(struct kcopyd_job *job) argument
314 struct kcopyd_job *job = (struct kcopyd_job *) context; local
344 run_io_job(struct kcopyd_job *job) argument
365 run_pages_job(struct kcopyd_job *job) argument
391 struct kcopyd_job *job; local
445 dispatch_job(struct kcopyd_job *job) argument
458 struct kcopyd_job *job = (struct kcopyd_job *) context; local
521 split_job(struct kcopyd_job *job) argument
534 struct kcopyd_job *job; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/shell/
H A Dlash.c71 struct job *family; /* pointer back to the child's parent job */
78 struct job *head; /* head of list of running jobs */
79 struct job *fg; /* current foreground job */
82 struct job { struct
83 int jobid; /* job number */
84 int num_progs; /* total number of programs in job */
86 char *text; /* name of job */
88 pid_t pgrp; /* process group ID for the job */
261 struct job *job; local
329 struct job *job; local
471 remove_job(struct jobset *j_list, struct job *job) argument
497 struct job *job; local
542 remove_job(struct jobset *j_list, struct job *job) argument
883 parse_command(char **command_ptr, struct job *job, int *inbg) argument
[all...]
H A Dash.c36 * JOBS -> 1 if you have Berkeley job control, 0 otherwise.
3101 * A job structure contains information about a job. A job is either a
3113 struct job { struct
3117 int stopstatus; /* status of a stopped job */
3126 sigint: 1, /* job was killed by SIGINT */
3127 jobctl: 1, /* job running under job control */
3132 struct job *prev_jo
3672 dowait(int block, struct job *job) argument
3873 getstatus(struct job *job) argument
3902 struct job *job; local
[all...]
H A Dhush.c53 * job handling woefully incomplete and buggy (improved --vda)
265 int num_progs; /* total number of programs in job */
269 int jobid; /* job number */
270 pid_t pgrp; /* process group ID for the job */
271 char *cmdtext; /* name of job */
521 /* job management: */
560 BLTIN("bg" , builtin_fg_bg, "Resume a job in the background"),
570 BLTIN("fg" , builtin_fg_bg, "Bring job into the foreground"),
685 /* Disable all signals: job control, SIGPIPE, etc. */
841 bb_error_msg("%s: no current job", arg
909 struct pipe *job; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libsmb/
H A Dcliprint.c92 struct print_job_info job; local
97 job.id = SVAL(p,0);
98 job.priority = SVAL(p,2);
99 fstrcpy(job.user,
102 job.t = make_unix_date3(p + 12);
103 job.size = IVAL(p,16);
104 fstrcpy(job.name,fix_char_ptr(SVAL(p,24),
107 fn(&job);
121 cancel a print job
123 int cli_printjob_del(struct cli_state *cli, int job) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/testsuite/printing/
H A Dvlp.c76 /* Return the next job number for a printer */
89 /* Create next job index if none exists */
180 /* Remove a job */
217 struct vlp_job job; local
227 ZERO_STRUCT(job);
229 /* Create a job record */
232 fstrcat(job.jobname, argv[i]);
234 fstrcat(job.jobname, " ");
242 fstrcpy(job.owner, pw->pw_name);
244 job
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/example/
H A Dgjobread.c96 typedef struct job { struct
103 } job, *jobPtr; typedef in typeref:struct:job
116 ret = (jobPtr) malloc(sizeof(job));
121 memset(ret, 0, sizeof(job));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbwrapper/
H A Dsmbw_dir.c140 static void smbw_printjob_add(struct print_job_info *job) argument
146 pstrcpy(finfo.name, job->name);
148 finfo.mtime = job->t;
149 finfo.atime = job->t;
150 finfo.ctime = job->t;
151 finfo.uid = nametouid(job->user);
153 finfo.size = job->size;
H A Dsmbw_stat.c95 static void smbw_printjob_stat(struct print_job_info *job) argument
97 if (strcmp(job->name, printjob.name) == 0) {
98 printjob = *job;
H A Dsmbw.c980 int job = smbw_stat_printjob(srv, path, NULL, NULL); local
981 if (job == -1) {
984 if (cli_printjob_del(&srv->cli, job) != 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/python/
H A Dpy_spoolss_jobs.c67 py_from_JOB_INFO_1(&value, &ctr.job.job_info_1[i]);
77 py_from_JOB_INFO_2(&value, &ctr.job.job_info_2[i]);
90 /* Set job command */
119 /* Get job */
153 py_from_JOB_INFO_1(&result, &ctr.job.job_info_1[0]);
156 py_from_JOB_INFO_2(&result, &ctr.job.job_info_2[0]);
310 allocated for the new job. */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/printing/
H A Dlpq_parse.c57 t->tm_year--; /* last year's print job */
144 buf->job = atoi(tok[JOBTOK]);
252 buf->job = atoi(tokarr[LPRNG_JOBTOK]);
352 buf->job = atoi(tok[1]);
386 buf->job = atoi(tok[3]);
456 buf->job = jobid;
473 /* handle the dash in the job id */
492 DEBUG (4, ("job %d is paused: prio %d < %d; jobstat=%d\n", jobid, jobprio, base_prio, jobstat));
525 * Handle the dash in the job id, but make sure that we skip over
566 buf->job
[all...]
H A Dprinting.c37 uniquely identifies a print job
43 jobids are assigned when a job starts spooling.
326 Useful function to find a print job in the database.
459 notification for these on a new job. */
462 NOTIFY_INFO_DATA buffer, we *have* to send the job submission
476 /* Job attributes of a new job or attributes that can be
493 Store a job structure back to the database.
573 /* new job */
586 Remove a job structure from the database.
603 DEBUG(5, ("pjob_delete: we were asked to delete nonexistent job
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/papd/
H A Dprint_cups.c327 /* pass the job to cups */
329 int cups_print_job ( char * name, char *filename, char *job, char *username, char * cupsoptions ) argument
345 num_options = cupsAddOption("job-originating-user-name", username, num_options, &options);
359 if ((jobid = cupsPrintFile( name, filepath, job, 0, options)) == 0)
360 LOG(log_error, logtype_papd, "Unable to print job '%s' (%s) to printer '%s' for user '%s' - CUPS error : '%s'", job, filepath, name, username, ippErrorString(cupsLastError()));
362 LOG(log_info, logtype_papd, "Job '%s' queued to printer '%s' with id '%d'", job, name, jobid);
H A Dqueries.c629 int job; local
656 if ( p < stop && ( job = atoi( p )) > 0 ) {
657 lp_rmjob( job );
704 disabled ]%%\r%%[Flushing: rest of job (to end-of-file) will be \
H A Dlp.c191 LOG(log_debug9, logtype_papd, "job: %s", lp.lp_job );
356 void lp_job(char *job) argument
362 lp.lp_job = strdup(job);
364 LOG(log_debug9, logtype_papd, "job: %s", lp.lp_job );
665 /* Before we write out anything check for a pending job, e.g. cover page */
705 * we store the start of the print job in a buffer.
963 int lp_rmjob( int job) argument
977 sprintf( buf, "\5%s %s %d\n", printer->p_printer, lp.lp_person, job );
997 char *tag_job = "job: ";
1055 isdigit( *start )) { /* a job lin
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/papd/
H A Dprint_cups.c327 /* pass the job to cups */
329 int cups_print_job ( char * name, char *filename, char *job, char *username, char * cupsoptions ) argument
345 num_options = cupsAddOption("job-originating-user-name", username, num_options, &options);
359 if ((jobid = cupsPrintFile( name, filepath, job, 0, options)) == 0)
360 LOG(log_error, logtype_papd, "Unable to print job '%s' (%s) to printer '%s' for user '%s' - CUPS error : '%s'", job, filepath, name, username, ippErrorString(cupsLastError()));
362 LOG(log_info, logtype_papd, "Job '%s' queued to printer '%s' with id '%d'", job, name, jobid);
H A Dqueries.c629 int job; local
656 if ( p < stop && ( job = atoi( p )) > 0 ) {
657 lp_rmjob( job );
704 disabled ]%%\r%%[Flushing: rest of job (to end-of-file) will be \
H A Dlp.c191 LOG(log_debug9, logtype_papd, "job: %s", lp.lp_job );
356 void lp_job(char *job) argument
362 lp.lp_job = strdup(job);
364 LOG(log_debug9, logtype_papd, "job: %s", lp.lp_job );
665 /* Before we write out anything check for a pending job, e.g. cover page */
705 * we store the start of the print job in a buffer.
963 int lp_rmjob( int job) argument
977 sprintf( buf, "\5%s %s %d\n", printer->p_printer, lp.lp_person, job );
997 char *tag_job = "job: ";
1055 isdigit( *start )) { /* a job lin
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpcclient/
H A Dcmd_spoolss.c2100 static void display_job_info_1(JOB_INFO_1 *job) argument
2104 rpcstr_pull(username, job->username.buffer,
2107 rpcstr_pull(document, job->document.buffer,
2110 rpcstr_pull(text_status, job->text_status.buffer,
2113 printf("%d: jobid[%d]: %s %s %s %d/%d pages\n", job->position, job->jobid,
2114 username, document, text_status, job->pagesprinted,
2115 job->totalpages);
2118 static void display_job_info_2(JOB_INFO_2 *job) argument
2122 rpcstr_pull(username, job
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/iptables/
H A Diptables-apply155 echo ... then my job is done. See you next time.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acorn/block/
H A Dfd1772dma.S90 @ The big job is flipping in and out of FIQ mode
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/client/
H A Dclient.c1513 Cancel a print job.
1516 static int do_cancel(int job) argument
1518 if (cli_printjob_del(cli, job)) {
1519 d_printf("Job %d cancelled\n",job);
1522 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
1528 Cancel a print job.
1534 int job; local
1541 job = atoi(buf);
1542 do_cancel(job);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/include/
H A Drpc_spoolss.h1266 } job; member in struct:job_info_ctr_info
1358 job; member in struct:job_info_info
2012 job; member in struct:pjob_info_info
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpc_client/
H A Dcli_spoolss.c1657 &ctr->job.job_info_1);
1661 &ctr->job.job_info_2);
1675 /* Set job */
1720 /* Get job */
1770 decode_jobs_1(mem_ctx, r.buffer, 1, &ctr->job.job_info_1);
1773 decode_jobs_2(mem_ctx, r.buffer, 1, &ctr->job.job_info_2);

Completed in 322 milliseconds

12