HomeSort by relevance Sort by last modified time
    Searched refs:job_handle (Results 1 - 10 of 10) sorted by null

  /packages/services/BuiltInPrintService/jni/include/
ifc_wprint.h 33 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);
lib_wprint.h 248 status_t (*start_job)(wJob_t job_handle, const ifc_wprint_t *wprint_ifc,
254 status_t (*print_blank_page)(wJob_t job_handle,
301 status_t wprintEndJob(wJob_t job_handle);
312 status_t wprintPage(wJob_t job_handle, int page_number, const char *filename, bool last_page,
319 status_t wprintCancelJob(wJob_t job_handle);
  /packages/services/BuiltInPrintService/jni/plugins/
lib_pcl.h 36 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); \
47 debug_ifc->debug_start_page(JOB_INFO->job_handle, JOB_INFO->page_number + 1, WIDTH, \
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); \
96 wJob_t job_handle; member in struct:__anon53083
    [all...]
lib_pclm.c 90 static wJob_t _start_job(wJob_t job_handle, pcl_job_info_t *job_info, media_size_t media_size,
100 if (job_info->job_handle != _WJOBH_NONE) {
104 job_info->job_handle = _WJOBH_NONE;
116 job_info->job_handle = job_handle;
177 return job_info->job_handle;
lib_pwg.c 143 static wJob_t _start_job(wJob_t job_handle, pcl_job_info_t *job_info, media_size_t media_size,
151 if (job_info->job_handle != _WJOBH_NONE) {
156 job_info->job_handle = _WJOBH_NONE;
166 job_info->job_handle = job_handle;
234 return job_info->job_handle;
plugin_pcl.c 72 wJob_t job_handle; member in struct:__anon53090
119 priv->pcl_ifc->start_job(priv->job_handle, &priv->job_info,
216 static int _start_job(wJob_t job_handle, const ifc_wprint_t *wprint_ifc_p,
232 priv->job_handle = job_handle;
235 priv->job_info.job_handle = _WJOBH_NONE;
502 static int _print_blank_page(wJob_t job_handle, wprint_job_params_t *job_params) {
plugin_pdf.c 53 static int _start_job(wJob_t job_handle, const ifc_wprint_t *wprint_ifc_p,
  /packages/services/BuiltInPrintService/jni/lib/
lib_wprint.c 132 wJob_t job_handle; member in struct:__anon53059
219 * Return a _job_queue_t item by its job_handle or NULL if not found.
221 static _job_queue_t *_get_job_desc(wJob_t job_handle) {
223 if (job_handle == WPRINT_BAD_JOB_HANDLE) {
226 index = _DECODE_HANDLE(job_handle);
227 if ((index < _MAX_SPOOLED_JOBS) && (_job_queue[index].job_handle == job_handle) &&
239 static void _stream_dbg_end_job(wJob_t job_handle) {
240 _job_queue_t *jq = _get_job_desc(job_handle);
247 static void _stream_dbg_start_job(wJob_t job_handle, const char *ext)
419 wJob_t job_handle = WPRINT_BAD_JOB_HANDLE; local
697 wJob_t job_handle; local
1736 wJob_t job_handle = WPRINT_BAD_JOB_HANDLE; local
    [all...]
wprintJNI.c 340 static jint _print_pdf_pages(wJob_t job_handle, printer_capabilities_t *printer_cap,
355 result = wprintPage(job_handle, *(pages_ary + page_index++), pathname, false, true,
368 result = wprintPage(job_handle, *(pages_ary + page_index--), pathname, false, true,
1233 wJob_t job_handle = ERROR; local
    [all...]
  /external/libchrome/base/process/
launch.h 101 HANDLE job_handle = nullptr; member in struct:base::LaunchOptions

Completed in 117 milliseconds