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

  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_response_parser.cc 185 std::vector<Job> job_list(jobs->GetSize());
186 for (size_t idx = 0; idx < job_list.size(); ++idx) {
189 if (!job->GetString("id", &job_list[idx].job_id) ||
190 !job->GetString("createTime", &job_list[idx].create_time) ||
191 !job->GetString("fileUrl", &job_list[idx].file_url) ||
192 !job->GetString("ticketUrl", &job_list[idx].ticket_url) ||
193 !job->GetString("title", &job_list[idx].title)) {
199 *list = job_list;
  /external/chromium_org/chrome/service/cloud_print/
printer_job_queue_handler.cc 107 const ListValue* job_list = NULL; local
108 if (!json_data->GetList(kJobListValue, &job_list)) {
112 size_t list_size = job_list->GetSize();
115 if (job_list->GetDictionary(cur_job, &job_data)) {
  /external/mksh/src/
jobs.c 118 static Job *job_list; /* job list */ variable
239 for (j = job_list; j != NULL; j = j->next) {
673 for (j = job_list; j; j = j->next)
868 for (j = job_list; j != NULL; j = j->next) {
919 j = job_list;
932 for (j = job_list; j; j = tmp) {
953 for (j = job_list; j; j = j->next) {
965 for (j = job_list; j; j = tmp) {
1016 for (jl = job_list; jl; jl = jl->next)
1275 for (j = job_list; j; j = j->next
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_integration_service.h 105 JobListInterface* job_list() { return scheduler_.get(); } function in class:drive::DriveIntegrationService
drive_integration_service.cc 349 job_list()->CancelAllJobs();
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_drive.cc 343 drive::JobListInterface* job_list = integration_service->job_list();
344 DCHECK(job_list);
345 std::vector<drive::JobInfo> jobs = job_list->GetJobInfoList();
373 job_list->CancelJob(it->second[i]);
event_router.cc 256 integration_service->job_list()->RemoveObserver(this);
290 integration_service->job_list()->AddObserver(this);
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
drive_internals_ui.cc 23 #include "chrome/browser/chromeos/drive/job_list.h"
234 void UpdateInFlightOperationsSection(drive::JobListInterface* job_list);
404 UpdateInFlightOperationsSection(integration_service->job_list());
587 drive::JobListInterface* job_list) {
589 DCHECK(job_list);
591 std::vector<drive::JobInfo> info_list = job_list->GetJobInfoList();
805 UpdateInFlightOperationsSection(integration_service->job_list());
  /external/chromium_org/chrome/browser/chromeos/system/
ash_system_tray_delegate.cc 55 #include "chrome/browser/chromeos/drive/job_list.h"
751 integration_service->job_list()->CancelJob(operation_id);
762 integration_service->job_list()->GetJobInfoList());
    [all...]

Completed in 150 milliseconds