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

  /external/chromium/net/proxy/
single_threaded_proxy_resolver.h 50 class Job;
51 friend class Job;
54 // FIFO queue that contains the in-progress job, and any pending jobs.
55 typedef std::deque<scoped_refptr<Job> > PendingJobsQueue;
67 // Starts the next job from |pending_jobs_| if possible.
71 // expectation of what the front of the job queue is; it is only used by
73 void RemoveFrontOfJobsQueueAndStartNext(Job* expected_job);
single_threaded_proxy_resolver.cc 101 // SingleThreadedProxyResolver::Job -------------------------------------------
103 class SingleThreadedProxyResolver::Job
104 : public base::RefCountedThreadSafe<SingleThreadedProxyResolver::Job> {
106 // |coordinator| -- the SingleThreadedProxyResolver that owns this job.
109 Job(SingleThreadedProxyResolver* coordinator,
131 FROM_HERE, NewRunnableMethod(this, &Job::DoQuery,
150 friend class base::RefCountedThreadSafe<SingleThreadedProxyResolver::Job>;
152 ~Job() {}
167 NewRunnableMethod(this, &Job::QueryComplete, rv, worker_log));
180 // The Job may have been cancelled after it was started
237 scoped_refptr<Job> job = new Job(this, url, results, callback, load_log); local
256 Job* job = reinterpret_cast<Job*>(req); local
    [all...]
  /external/chromium/net/base/
host_resolver_impl.h 20 // HostResolverImpl::Job. This job gets dispatched to a thread in the global
22 // host are made while the job is already outstanding, then they are attached
23 // to the existing job rather than creating a new one. This avoids doing
31 // Job Job Job
38 // When a HostResolverImpl::Job finishes its work in the threadpool, the
52 // The index into |job_pools_| for the various job pools. Pools with a higher
130 class Job;
    [all...]
host_resolver_impl.cc 100 void set_job(Job* job) {
101 DCHECK(job != NULL);
102 // Identify which job the request is waiting on.
103 job_ = job;
116 Job* job() const { function in class:net::HostResolverImpl::Request
141 // The resolve job (running in worker pool) that this request is dependent on.
142 Job* job_;
185 class HostResolverImpl::Job
636 scoped_refptr<Job> job; local
955 scoped_refptr<Job> job = new Job(next_job_id_++, this, key, requests_trace_); local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
workstealing.h 52 /** @brief One job for a certain thread. */
54 struct Job
77 * Uses O(1) additional memory. Synchronization at job lists is
120 const int stride = __s.cache_line_size * 10 / sizeof(Job<difference_type>) + 1;
125 Job<difference_type> *job; local
145 // Create job description array.
146 job = new Job<difference_type>[num_threads * stride];
157 // This job
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
FixProjectAction.java 28 import org.eclipse.core.runtime.jobs.Job;
82 new Job("Fix Project Properties") {
ConvertToAndroidAction.java 30 import org.eclipse.core.runtime.jobs.Job;
96 new Job("Convert Project") {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidClasspathContainerInitializer.java 38 import org.eclipse.core.runtime.jobs.Job;
282 // We schedule a new job to put the marker after.
284 Job markerJob = new Job("Android SDK: Resolving error markers") {
301 markerJob.setPriority(Job.BUILD);
313 // here, so we schedule a new job to put the marker after.
314 Job markerJob = new Job("Android SDK: Resolving error markers") {
329 markerJob.setPriority(Job.BUILD);
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 234 // class def modified: write it to an array and submit a write job
262 // clone the array and submit an entry write job
486 // class def modified: write it to an array and submit a write job
499 // clone the array and submit a file write job
577 // in overwrite mode, flush the job queue before going to the next directory:
702 // reset job queue position:
939 final Job job = m_jobs [j]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java 70 import org.eclipse.core.runtime.jobs.Job;
365 Job pingJob = createPingUsageServerJob();
371 // Once the ping job is finished, start the SDK parser
379 pingJob.setPriority(Job.BUILD);
380 // Wait 2 seconds before starting the ping job. This leaves some time to the
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 60 import org.eclipse.core.runtime.jobs.Job;
416 * <p/> The data is loaded in a separate {@link Job}, and opened editors will be notified
459 Job job = new Job(String.format("Loading data for %1$s", target.getFullName())) { local
507 job.setPriority(Job.BUILD); // build jobs are run after other interactive jobs
508 job.schedule();
511 // The only way to go through here is when the loading starts through the Job.
751 // the unlink below will work in the job, but we need to clos
1062 Job job = new Job("Android Library Update") { \/\/$NON-NLS-1\$ local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java 63 import org.eclipse.core.runtime.jobs.Job;
585 new Job("Create Alternate Resource") {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle1/
GraphicalLayoutEditor.java 72 import org.eclipse.core.runtime.jobs.Job;
    [all...]
  /prebuilt/common/netbeans-visual/
org-openide-util.jar 
  /external/emma/lib/
emma.jar 

Completed in 880 milliseconds