Searched defs:job_params (Results 1 - 6 of 6) sorted by relevance

/packages/services/BuiltInPrintService/jni/lib/
H A Dprintable_area.c26 void printable_area_get(wprint_job_params_t *job_params, float top_margin, float left_margin, argument
28 if (job_params == NULL) return;
30 job_params->printable_area_width = job_params->printable_area_height = 0.0f;
31 job_params->width = job_params->height = 0.0f;
32 job_params->page_top_margin = job_params->page_bottom_margin = 0.0f;
33 job_params->page_right_margin = job_params
96 printable_area_get_default_margins(const wprint_job_params_t *job_params, const printer_capabilities_t *printer_cap, float *top_margin, float *left_margin, float *right_margin, float *bottom_margin) argument
[all...]
H A Dprinter.c80 static int _start_job(const ifc_print_job_t *this_p, const wprint_job_params_t *job_params) { argument
H A Dlib_wprint.c148 wprint_job_params_t job_params; member in struct:__anon151
469 if (jq->job_params.useragent != NULL) {
470 free((void *) jq->job_params.useragent);
570 jq->job_params.cancelled = true;
602 jq->job_params.cancelled = true;
730 jq->job_params.plugin_data = NULL;
794 } else if (!jq->job_params.cancelled) {
826 if (jq->job_params.cancelled) {
831 if (jq->job_params.cancelled) {
864 jq->job_params
1530 _get_print_format(const char *mime_type, const wprint_job_params_t *job_params, const printer_capabilities_t *cap) argument
1567 wprintGetDefaultJobParams(wprint_job_params_t *job_params) argument
1586 wprintGetFinalJobParams(wprint_job_params_t *job_params, const printer_capabilities_t *printer_cap) argument
1732 wprintStartJob(const char *printer_addr, port_t port_num, const wprint_job_params_t *job_params, const printer_capabilities_t *printer_cap, const char *mime_type, const char *pathname, wprint_status_cb_t cb_fn, const char *debugDir, const char *scheme) argument
[all...]
/packages/services/BuiltInPrintService/jni/plugins/
H A Dplugin_pdf.c55 wprint_job_params_t *job_params) {
57 if (job_params == NULL) return ERROR;
59 job_params->plugin_data = NULL;
66 job_params->plugin_data = (void *) priv;
70 static int _print_page(wprint_job_params_t *job_params, const char *mime_type, argument
78 if (job_params == NULL) return ERROR;
80 priv = (plugin_data_t *) job_params->plugin_data;
95 while ((rbytes > 0) && !job_params->cancelled) {
112 if ((job_params->page_range != NULL) && (strcmp(job_params
53 _start_job(wJob_t job_handle, const ifc_wprint_t *wprint_ifc_p, const ifc_print_job_t *print_job_ifc_p, wprint_job_params_t *job_params) argument
118 _end_job(wprint_job_params_t *job_params) argument
[all...]
H A Dplugin_pcl.c76 wprint_job_params_t *job_params; member in struct:__anon182
120 priv->job_params->media_size, priv->job_params->media_type,
121 priv->job_params->pixel_units, priv->job_params->duplex,
122 priv->job_params->dry_time, priv->job_params->color_space,
123 priv->job_params->media_tray, priv->job_params->page_top_margin,
124 priv->job_params
216 _start_job(wJob_t job_handle, const ifc_wprint_t *wprint_ifc_p, const ifc_print_job_t *print_ifc_p, wprint_job_params_t *job_params) argument
276 _print_page(wprint_job_params_t *job_params, const char *mime_type, const char *pathname) argument
502 _print_blank_page(wJob_t job_handle, wprint_job_params_t *job_params) argument
519 _end_job(wprint_job_params_t *job_params) argument
[all...]
/packages/services/BuiltInPrintService/jni/ipphelper/
H A Dipp_print.c31 static status_t _validate_job(const ifc_print_job_t *this_p, wprint_job_params_t *job_params);
33 static status_t _start_job(const ifc_print_job_t *this_p, const wprint_job_params_t *job_params);
170 static ipp_t *_fill_job(int ipp_op, char *printer_uri, const wprint_job_params_t *job_params) { argument
177 if (job_params == NULL) return NULL;
188 bool is_2_0_capable = job_params->ipp_2_0_supported;
189 bool is_ePCL_ipp_capable = job_params->epcl_ipp_supported;
195 job_params->job_originating_user_name);
196 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME, "job-name", NULL, job_params->job_name);
200 job_params->accepts_app_name ||
201 job_params
399 _validate_job(const ifc_print_job_t *this_p, wprint_job_params_t *job_params) argument
467 _start_job(const ifc_print_job_t *this_p, const wprint_job_params_t *job_params) argument
[all...]

Completed in 102 milliseconds