Home
last modified time | relevance | path

Searched refs:job_handle (Results 1 – 9 of 9) sorted by relevance

/aosp12/packages/services/BuiltInPrintService/jni/plugins/
H A Dlib_pcl.h36 JOB_INFO->wprint_ifc->get_debug_stream_ifc(JOB_INFO->job_handle); \
38 debug_ifc->debug_start_job(JOB_INFO->job_handle, EXT); \
45 JOB_INFO->wprint_ifc->get_debug_stream_ifc(JOB_INFO->job_handle); \
55 JOB_INFO->wprint_ifc->get_debug_stream_ifc(JOB_INFO->job_handle); \
57 debug_ifc->debug_page_data(JOB_INFO->job_handle, BUFF, LEN); \
64 JOB_INFO->wprint_ifc->get_debug_stream_ifc(JOB_INFO->job_handle); \
66 debug_ifc->debug_end_page(JOB_INFO->job_handle); \
73 JOB_INFO->wprint_ifc->get_debug_stream_ifc(JOB_INFO->job_handle); \
75 debug_ifc->debug_end_job(JOB_INFO->job_handle); \
82 JOB_INFO->wprint_ifc->get_debug_stream_ifc(JOB_INFO->job_handle); \
[all …]
H A Dlib_pclm.c90 static wJob_t _start_job(wJob_t job_handle, pcl_job_info_t *job_info, media_size_t media_size, in _start_job() argument
100 if (job_info->job_handle != _WJOBH_NONE) { in _start_job()
104 job_info->job_handle = _WJOBH_NONE; in _start_job()
116 job_info->job_handle = job_handle; in _start_job()
177 return job_info->job_handle; in _start_job()
H A Dlib_pwg.c142 static wJob_t _start_job(wJob_t job_handle, pcl_job_info_t *job_info, media_size_t media_size, in _start_job() argument
150 if (job_info->job_handle != _WJOBH_NONE) { in _start_job()
155 job_info->job_handle = _WJOBH_NONE; in _start_job()
165 job_info->job_handle = job_handle; in _start_job()
236 return job_info->job_handle; in _start_job()
H A Dplugin_pcl.c72 wJob_t job_handle; member
119 priv->pcl_ifc->start_job(priv->job_handle, &priv->job_info, in _send_thread()
216 static int _start_job(wJob_t job_handle, const ifc_wprint_t *wprint_ifc_p, in _start_job() argument
232 priv->job_handle = job_handle; in _start_job()
235 priv->job_info.job_handle = _WJOBH_NONE; in _start_job()
502 static int _print_blank_page(wJob_t job_handle, wprint_job_params_t *job_params) { in _print_blank_page() argument
H A Dplugin_pdf.c53 static int _start_job(wJob_t job_handle, const ifc_wprint_t *wprint_ifc_p, in _start_job() argument
/aosp12/packages/services/BuiltInPrintService/jni/lib/
H A Dlib_wprint.c132 wJob_t job_handle; member
231 if ((index < _MAX_SPOOLED_JOBS) && (_job_queue[index].job_handle == job_handle) && in _get_job_desc()
449 job_handle = _job_queue[index].job_handle; in _get_handle()
454 return job_handle; in _get_handle()
785 wJob_t job_handle; in _job_thread() local
1834 return job_handle; in wprintStartJob()
1846 return job_handle; in wprintStartJob()
1850 return job_handle; in wprintStartJob()
1856 return job_handle; in wprintStartJob()
1881 return job_handle; in wprintStartJob()
[all …]
H A DwprintJNI.c1110 (jint) job_handle); in _wprint_callback_fn()
1130 (jint) job_handle, callbackParams); in _wprint_callback_fn()
1284 wJob_t job_handle = ERROR; in Java_com_android_bips_ipp_Backend_nativeStartJob() local
1376 job_handle = (wJob_t) result; in Java_com_android_bips_ipp_Backend_nativeStartJob()
1409 wprintCancelJob(job_handle); in Java_com_android_bips_ipp_Backend_nativeStartJob()
1410 wprintEndJob(job_handle); in Java_com_android_bips_ipp_Backend_nativeStartJob()
1411 job_handle = ERROR; in Java_com_android_bips_ipp_Backend_nativeStartJob()
1422 return job_handle; in Java_com_android_bips_ipp_Backend_nativeStartJob()
1429 JNIEnv *env, jobject obj, jint job_handle) { in Java_com_android_bips_ipp_Backend_nativeEndJob() argument
1431 return wprintEndJob((wJob_t) job_handle); in Java_com_android_bips_ipp_Backend_nativeEndJob()
[all …]
/aosp12/packages/services/BuiltInPrintService/jni/include/
H A Difc_wprint.h33 void (*debug_start_job)(wJob_t job_handle, const char *ext);
35 void (*debug_job_data)(wJob_t job_handle, const unsigned char *buff, unsigned long nbytes);
37 void (*debug_end_job)(wJob_t job_handle);
39 void (*debug_start_page)(wJob_t job_handle, int page_number, int width, int height);
41 void (*debug_page_data)(wJob_t job_handle, const unsigned char *buff, unsigned long nbytes);
43 void (*debug_end_page)(wJob_t job_handle);
H A Dlib_wprint.h264 status_t (*start_job)(wJob_t job_handle, const ifc_wprint_t *wprint_ifc,
270 status_t (*print_blank_page)(wJob_t job_handle,
317 status_t wprintEndJob(wJob_t job_handle);
328 status_t wprintPage(wJob_t job_handle, int page_number, const char *filename, bool last_page,
335 status_t wprintCancelJob(wJob_t job_handle);