HomeSort by relevance Sort by last modified time
    Searched refs:job_id (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium_org/content/renderer/
mhtml_generator.h 24 void OnSavePageAsMHTML(int job_id,
27 void NotifyBrowser(int job_id, int64 data_size);
mhtml_generator.cc 34 int job_id, IPC::PlatformFileForTransit file_for_transit) {
40 NotifyBrowser(job_id, size);
43 void MHTMLGenerator::NotifyBrowser(int job_id, int64 data_size) {
44 render_view()->Send(new ViewHostMsg_SavedPageAsMHTML(job_id, data_size));
  /external/chromium_org/content/browser/download/
mhtml_generation_manager.cc 46 int job_id = id_counter++; local
52 id_to_job_[job_id] = job;
67 job_id, file, renderer_process));
70 void MHTMLGenerationManager::MHTMLGenerated(int job_id, int64 mhtml_data_size) {
71 JobFinished(job_id, mhtml_data_size);
75 int job_id, const base::FilePath& file_path,
91 job_id, browser_file, renderer_file));
94 void MHTMLGenerationManager::FileCreated(int job_id,
100 JobFinished(job_id, -1);
104 IDToJobMap::iterator iter = id_to_job_.find(job_id);
    [all...]
mhtml_generation_manager.h 40 void MHTMLGenerated(int job_id, int64 mhtml_data_size);
68 void CreateFile(int job_id,
76 void FileCreated(int job_id,
86 void JobFinished(int job_id, int64 mhtml_data_size);
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_helpers.h 18 const std::string& job_id,
22 const std::string& job_id,
cloud_print_helpers.cc 40 const std::string& job_id,
43 job_id,
48 const std::string& job_id,
57 job_id.c_str(),
printer_job_queue_handler.h 70 bool JobFetchFailed(const std::string& job_id);
72 void JobDone(const std::string& job_id);
89 base::TimeDelta ComputeBackoffTime(const std::string& job_id);
printer_job_queue_handler.cc 76 const std::string& job_id) {
77 FailedJobMap::const_iterator job_location = failed_job_map_.find(job_id);
136 void PrinterJobQueueHandler::JobDone(const std::string& job_id) {
137 failed_job_map_.erase(job_id);
140 bool PrinterJobQueueHandler::JobFetchFailed(const std::string& job_id) {
146 failed_job_map_.insert(FailedJobPair(job_id, metadata));
job_status_updater.cc 19 const std::string& job_id,
24 : printer_name_(printer_name), job_id_(job_id),
print_system.h 120 virtual void OnJobSpoolSucceeded(const PlatformJobId& job_id) = 0;
184 PlatformJobId job_id,
job_status_updater.h 37 const std::string& job_id,
print_system_cups.cc 99 PlatformJobId job_id,
392 int job_id = print_system_->SpoolPrintJob( variable
397 base::Bind(&JobSpoolerCUPS::NotifyDelegate, delegate, job_id, dry_run));
402 int job_id, bool dry_run) {
403 if (dry_run || job_id)
404 delegate->OnJobSpoolSucceeded(job_id);
610 PlatformJobId job_id,
637 if (job_id == kDryRunJobId) {
646 if (jobs[i].id == job_id) {
675 << ", cups job id: " << job_id
680 << ", cups job id: " << job_id; local
808 int job_id = PrintFile(server_info->url, local
819 << ", cups job id: " << job_id; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
job_scheduler.cc 168 void JobScheduler::CancelJob(JobID job_id) {
171 JobEntry* job = job_map_.Lookup(job_id);
205 new_job->job_info.job_id,
222 new_job->job_info.job_id,
239 new_job->job_info.job_id,
259 new_job->job_info.job_id,
278 new_job->job_info.job_id,
297 new_job->job_info.job_id,
316 new_job->job_info.job_id,
337 new_job->job_info.job_id,
739 JobID job_id = -1; local
    [all...]
job_scheduler.h 63 virtual void CancelJob(JobID job_id) OVERRIDE;
238 void QueueJob(JobID job_id);
251 bool OnJobDone(JobID job_id, google_apis::GDataErrorCode error);
255 JobID job_id,
262 JobID job_id,
269 JobID job_id,
276 JobID job_id,
283 JobID job_id,
289 void OnEntryActionJobDone(JobID job_id,
295 JobID job_id,
    [all...]
job_list.cc 77 job_id(-1),
88 job_id);
job_list.h 70 JobID job_id; member in struct:drive::JobInfo
132 virtual void CancelJob(JobID job_id) = 0;
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_interface.c 104 static int32_t mm_jpeg_intf_start_job(mm_jpeg_job_t* job, uint32_t* job_id)
109 NULL == job_id) {
121 rc = mm_jpeg_start_job(g_jpeg_obj, job, job_id);
210 static int32_t mm_jpeg_intf_abort_job(uint32_t job_id)
214 if (0 == job_id) {
227 rc = mm_jpeg_abort_job(g_jpeg_obj, job_id);
  /hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_interface.c 104 static int32_t mm_jpeg_intf_start_job(mm_jpeg_job_t* job, uint32_t* job_id)
109 NULL == job_id) {
121 rc = mm_jpeg_start_job(g_jpeg_obj, job, job_id);
210 static int32_t mm_jpeg_intf_abort_job(uint32_t job_id)
214 if (0 == job_id) {
227 rc = mm_jpeg_abort_job(g_jpeg_obj, job_id);
  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_response_parser.h 25 std::string job_id; member in struct:cloud_print_response_parser::Job
cloud_print_requester.cc 43 GURL CreateControlUrl(const std::string& job_id, const std::string& status) {
45 url = net::AppendQueryParameter(url, "jobid", job_id);
145 CreateControlUrl(current_print_job_->job_id, "IN_PROGRESS"),
150 void CloudPrintRequester::SendPrintJobDone(const std::string& job_id) {
153 CreateControlUrl(job_id, "DONE"),
  /device/asus/flo/camera/QCamera2/stack/common/
mm_jpeg_interface.h 168 int (*start_job)(mm_jpeg_job_t* job, uint32_t* job_id);
171 int (*abort_job)(uint32_t job_id);
  /external/chromium_org/chrome/common/cloud_print/
cloud_print_helpers.h 48 const std::string& job_id);
50 const std::string& job_id,
  /hardware/qcom/camera/QCamera2/stack/common/
mm_jpeg_interface.h 180 int (*start_job)(mm_jpeg_job_t* job, uint32_t* job_id);
183 int (*abort_job)(uint32_t job_id);
  /external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
port_monitor.cc 54 PortData() : job_id(0), printer_handle(NULL), file(0) {
69 DWORD job_id; member in struct:cloud_print::__anon9785::PortData
137 DWORD job_id,
142 GetJob(printer_handle, job_id, 1, NULL, 0, &bytes_needed);
149 job_id,
404 DWORD job_id,
423 port_data->job_id = job_id;
496 port_data->job_id,
511 port_data->job_id,
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
download_operation.h 121 // Cancels the job with |job_id| in the scheduler.
122 void CancelJob(JobID job_id);

Completed in 494 milliseconds

1 2 3