/external/chromium_org/chrome/service/cloud_print/ |
printer_job_queue_handler_unittest.cc | 22 " \"jobs\" : [" 69 std::vector<JobDetails> jobs; local 71 job_queue_handler.GetJobsFromQueue(json_data_, &jobs); 73 ASSERT_EQ((size_t)3, jobs.size()); 75 EXPECT_EQ(std::string("__testjob1"), jobs[0].job_id_); 76 EXPECT_EQ(std::string("test1"), jobs[0].job_title_); 78 jobs[0].print_ticket_url_); 80 jobs[0].print_data_url_); 86 actual_tags.insert(jobs[0].tags_.begin(), jobs[0].tags_.end()) 103 std::vector<JobDetails> jobs; local 132 std::vector<JobDetails> jobs; local 162 std::vector<JobDetails> jobs; local [all...] |
printer_job_queue_handler.cc | 102 std::vector<JobDetails>* jobs) { 105 jobs->clear(); 123 jobs->push_back(job_details_current); 132 jobs->insert(jobs->end(), jobs_with_timeouts.begin(),
|
printer_job_queue_handler.h | 63 // jobs will be filled with details of all jobs in the queue, sorted by time 64 // until they are ready to print, lowest to highest. Jobs that are ready to 67 std::vector<JobDetails>* jobs);
|
print_system_cups.cc | 135 int GetJobs(cups_job_t** jobs, const GURL& url, 296 // jobs for this printer and check their status. If printer has no 297 // outstanding jobs, OnJobChanged() will do nothing. 616 cups_job_t* jobs = NULL; local 617 int num_jobs = GetJobs(&jobs, server_info->url, cups_encryption_, 621 VLOG(1) << "CP_CUPS: Error getting jobs from CUPS server" 639 if (jobs[i].id == job_id) { 641 switch (jobs[i].state) { 658 job_details->platform_status_flags = jobs[i].state; 675 cupsFreeJobs(num_jobs, jobs); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar | |
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
Dispatcher.java | 50 List<Job> jobs = enqueuedJobs.remove(tag); local 51 if (jobs == null) return; 52 for (Job job : jobs) { 58 List<Job> jobs = enqueuedJobs.get(job.request.tag()); local 59 if (jobs != null) jobs.remove(job);
|
/external/chromium/chrome/browser/sync/glue/ |
ui_model_worker_unittest.cc | 78 base::WaitableEvent** jobs, 80 : syncer_thread_(syncer_thread), worker_(worker), jobs_(jobs), 88 // wait until all outstanding jobs are done to simulate what happens in 167 base::WaitableEvent* jobs[] = { &v_ran }; local 176 new FakeSyncapiShutdownTask(syncer_thread(), bmw(), jobs, 1)); 205 base::WaitableEvent* jobs[] = { &fox1_ran, &fox2_ran, &fox3_ran }; local 216 new FakeSyncapiShutdownTask(syncer_thread(), bmw(), jobs, 3));
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
job_queue.h | 16 // Priority queue for managing jobs in JobScheduler. 39 // Gets queued jobs with the given priority. 40 void GetQueuedJobs(int priority, std::vector<JobID>* jobs) const; 43 // of running parallel jobs and makes room for other jobs to be popped. 49 // Gets the total number of jobs in the queue.
|
job_queue.cc | 26 // Too many jobs are running already. 42 void JobQueue::GetQueuedJobs(int priority, std::vector<JobID>* jobs) const { 45 jobs->assign(queue_[priority].begin(), queue_[priority].end());
|
job_scheduler_unittest.cc | 510 // Saturate the metadata job queue with uninteresting jobs to prevent 511 // following jobs from starting. 525 // Start jobs with different priorities. 829 // Add many jobs. 854 // The number of jobs queued so far. 865 // Add more jobs. 879 // 6 jobs in total were queued. 880 std::vector<JobInfo> jobs = scheduler_->GetJobInfoList(); local 881 EXPECT_EQ(6U, jobs.size()); 884 for (size_t i = 0; i < jobs.size(); ++i) 1007 const std::vector<JobInfo>& jobs = scheduler_->GetJobInfoList(); local 1055 const std::vector<JobInfo>& jobs = scheduler_->GetJobInfoList(); local [all...] |
/external/chromium_org/cloud_print/gcp20/prototype/ |
print_job_handler.cc | 171 jobs.find(job_id); 200 std::map<std::string, LocalPrintJobExtended>::iterator job = jobs.find(id); 201 if (job != jobs.end()) { 262 std::map<std::string, LocalPrintJobExtended>::iterator job = jobs.find(id); 263 DCHECK(job != jobs.end()); 288 jobs[id] = LocalPrintJobExtended(job, draft->second.ticket); 295 DCHECK(jobs.count(id)); 296 base::Time expiration = jobs.at(id).expiration; 307 jobs.erase(id);
|
cloud_print_response_parser.cc | 175 if (!json_success) { // Let's suppose we have no jobs to proceed. 180 base::ListValue* jobs = NULL; local 181 if (!response_dictionary->GetList("jobs", &jobs)) { 182 *error_description = "Cannot parse jobs list."; 186 std::vector<Job> job_list(jobs->GetSize()); 190 jobs->GetDictionary(idx, &job);
|
print_job_handler.h | 74 // Contains all unexpired jobs 75 std::map<std::string, LocalPrintJobExtended> jobs; // id -> printjob member in class:PrintJobHandler 77 // Changes job state and creates timeouts to delete old jobs from memory 80 // Moves draft to jobs
|
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/ |
invasive.cc | 141 int jobs = 0; local 152 jobs++; 163 fprintf(output, "[GRANTED] Created %d mutexes, %d jobs and %d events for " 164 "a total of %d objects out of 3 000 000\r\n", mutexes, jobs, 165 events, mutexes + jobs + events);
|
/external/chromium_org/chrome/browser/component_updater/ |
background_downloader_win.cc | 41 // To list the BITS jobs for a user, use the |bitsadmin| tool. The command line 80 // Jobs that are not touched in 90 days (or a value set by group policy) are 88 // Second, there is a simple mechanism to detect stuck jobs, and allow the rest 90 // Last, after completing a job, irrespective of the outcome, the jobs older 97 // All jobs created by this module have a specific description so they can 108 // How long to wait for stuck jobs. Stuck jobs could be queued for too long, 118 // How often the jobs which were started but not completed for any reason 119 // are cleaned up. Reasons for jobs to be left behind include browser restarts, 120 // system restarts, etc. Also, the check to purge stale jobs only happen 368 std::vector<ScopedComPtr<IBackgroundCopyJob> > jobs; local 673 std::vector<ScopedComPtr<IBackgroundCopyJob> > jobs; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/ |
HierarchyViewerPluginDirector.java | 28 import org.eclipse.core.runtime.jobs.ISchedulingRule; 29 import org.eclipse.core.runtime.jobs.Job;
|
/external/chromium_org/build/ |
gdb-add-index | 16 # Cleanup temp directory and ensure all child jobs are dead-dead. 20 local jobs=$(jobs -p) 21 if [ -n "$jobs" ]; then 22 echo -n "Killing outstanding index jobs..." 23 kill -KILL $(jobs -p)
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FEGaussianBlur.cpp | 172 int jobs = parallelJobs.numberOfJobs(); local 173 if (jobs > 1) { 174 // Split the job into "blockHeight"-sized jobs but there a few jobs that need to be slightly larger since 175 // blockHeight * jobs < total size. These extras are handled by the remainder "jobsWithExtra". 176 const int blockHeight = paintSize.height() / jobs; 177 const int jobsWithExtra = paintSize.height() % jobs; 180 for (int job = 0; job < jobs; job++) { 186 int endY = job == jobs - 1 ? currentY : currentY + extraHeight; 208 for (int job = 1; job < jobs; job++) [all...] |
/system/core/sh/ |
Android.mk | 15 jobs.c \
|
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ |
MonitorStartup.java | 25 import org.eclipse.core.runtime.jobs.Job;
|
/external/chromium/net/socket/ |
client_socket_pool_base.cc | 189 // Clean up any idle sockets and pending connect jobs. Assert that we have no 476 if (group->jobs().size() && ReachedMaxSocketsLimit()) { 477 RemoveConnectJob(*group->jobs().begin(), group); 521 if (i < group.jobs().size()) { 523 for (ConnectJobSet::const_iterator job_it = group.jobs().begin(); 524 job_it != group.jobs().end(); ++job_it) { 581 std::set<ConnectJob*>::const_iterator job = group->jobs().begin(); 582 for (job = group->jobs().begin(); job != group->jobs().end(); job++) { 867 DCHECK(ContainsKey(group->jobs(), job)) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/ |
CommonXmlDelegate.java | 27 import org.eclipse.core.runtime.jobs.Job;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
BaseClasspathContainerInitializer.java | 29 import org.eclipse.core.runtime.jobs.Job; 81 // build jobs are run after other interactive jobs 112 // build jobs are run after other interactive jobs
|
/external/chromium/chrome/browser/resources/net_internals/ |
socketsview.js | 9 * - For each pool with allocated sockets or connect jobs, shows all its
|
/external/chromium/net/base/ |
host_resolver_impl.cc | 626 // This boolean is used for histogramming the duration of jobs used to 747 // the limits on how many jobs are allowed to be used for this category of 885 // Maximum number of concurrent jobs allowed to be started for requests 889 // The current number of running jobs that were started for requests 935 // Cancel the outstanding jobs. Those jobs may contain several attached 991 // outstanding jobs map. 1437 JobMap jobs; local 1446 JobMap jobs; local [all...] |