HomeSort by relevance Sort by last modified time
    Searched refs:job (Results 201 - 225 of 383) sorted by null

1 2 3 4 5 6 7 891011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchConfigDelegate.java 40 import org.eclipse.core.runtime.jobs.Job;
104 Job job = new Job("Junit Launch") { //$NON-NLS-1$ local
114 job.setPriority(Job.INTERACTIVE);
115 job.schedule();
  /device/asus/flo/camera/QCamera2/HAL/
QCameraPostProc.h 44 uint32_t jobId; // job ID
51 uint32_t jobId; // job ID
60 uint32_t jobId; // job ID (obtained when start_jpeg_job)
130 void releaseJpegJobData(qcamera_jpeg_data_t *job);
154 QCameraQueue m_inputJpegQ; // input jpeg job queue
155 QCameraQueue m_ongoingJpegQ; // ongoing jpeg job queue
156 QCameraQueue m_inputRawQ; // input raw job queue
  /device/asus/flo/camera/QCamera2/HAL3/
QCamera3PostProc.h 51 uint32_t jobId; // job ID
60 uint32_t jobId; // job ID
69 uint32_t jobId; // job ID (obtained when start_jpeg_job)
111 void releaseJpegJobData(qcamera_jpeg_data_t *job);
148 QCameraQueue m_inputJpegQ; // input jpeg job queue
149 QCameraQueue m_ongoingJpegQ; // ongoing jpeg job queue
150 QCameraQueue m_inputRawQ; // input raw job queue
  /device/lge/hammerhead/camera/QCamera2/HAL/
QCameraPostProc.h 44 uint32_t jobId; // job ID
51 uint32_t jobId; // job ID
60 uint32_t jobId; // job ID (obtained when start_jpeg_job)
130 void releaseJpegJobData(qcamera_jpeg_data_t *job);
154 QCameraQueue m_inputJpegQ; // input jpeg job queue
155 QCameraQueue m_ongoingJpegQ; // ongoing jpeg job queue
156 QCameraQueue m_inputRawQ; // input raw job queue
  /device/lge/hammerhead/camera/QCamera2/HAL3/
QCamera3PostProc.h 52 uint32_t jobId; // job ID
61 uint32_t jobId; // job ID
71 uint32_t jobId; // job ID (obtained when start_jpeg_job)
114 void releaseJpegJobData(qcamera_jpeg_data_t *job);
152 QCameraQueue m_inputJpegQ; // input jpeg job queue
153 QCameraQueue m_ongoingJpegQ; // ongoing jpeg job queue
154 QCameraQueue m_inputRawQ; // input raw job queue
  /external/chromium_org/content/browser/service_worker/
service_worker_register_job.h 67 virtual bool Equals(ServiceWorkerRegisterJobBase* job) OVERRIDE;
95 // Holds the version created by this job. It can be the 'installing',
  /external/chromium_org/net/dns/
host_resolver_impl.h 30 // HostResolverImpl::Job. When this job gets dispatched it creates a ProcTask
32 // that same host are made during the job's lifetime, they are attached to the
33 // existing job rather than creating a new one. This avoids doing parallel
41 // Job Job Job
47 // When a HostResolverImpl::Job finishes, the callbacks of each waiting request
149 class Job;
155 typedef std::map<Key, Job*> JobMap
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FELighting.cpp 268 int job = parallelJobs.numberOfJobs(); local
269 if (job > 1) {
270 // Split the job into "yStep"-sized jobs but there a few jobs that need to be slightly larger since
272 const int yStep = (data.heightDecreasedByOne - 1) / job;
273 const int jobsWithExtra = (data.heightDecreasedByOne - 1) % job;
276 for (--job; job >= 0; --job) {
277 PlatformApplyGenericParameters& params = parallelJobs.parameter(job);
282 yStart += job < jobsWithExtra ? yStep + 1 : yStep
    [all...]
FEConvolveMatrix.cpp 466 // Split the job into "heightPerThread" jobs but there a few jobs that need to be slightly larger since
472 for (int job = 0; job < numOfThreads; ++job) {
473 InteriorPixelParameters& param = parallelJobs.parameter(job);
479 startY += job < jobsWithExtra ? heightPerThread + 1 : heightPerThread;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
VCardService.java 134 // File names currently reserved by some export job.
273 Log.w(LOG_TAG, "Failed to excetute a job.", e);
302 Log.w(LOG_TAG, String.format("Tried to remove unknown job (id: %d)", jobId));
327 * Checks job list and call {@link #stopSelf()} when there's no job and no scanner connection
329 * A new job (import/export) cannot be submitted any more after this call.
339 // Job-ids to be removed. At first all elements in the array are invalid and will
340 // be filled with real job-ids from the array's top. When we find a not-yet-finished
348 Log.i(LOG_TAG, String.format("Found unfinished job (id: %d)", jobId));
371 Log.i(LOG_TAG, "No unfinished job. Stop this service.")
417 final ProcessorBase job = mRunningJobMap.get(jobId); local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
Util.java 377 public BackgroundJob(MonitoredActivity activity, Runnable job,
381 mJob = job;
415 String title, String message, Runnable job, Handler handler) {
420 new Thread(new BackgroundJob(activity, job, dialog, handler)).start();
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadService.java 26 import android.app.job.JobInfo;
27 import android.app.job.JobScheduler;
94 /** Scheduling of the periodic cleanup job */
211 final JobInfo job = new JobInfo.Builder(CLEANUP_JOB_ID, sCleanupServiceName) local
216 js.schedule(job);
DownloadIdleService.java 23 import android.app.job.JobParameters;
24 import android.app.job.JobService;
  /external/chromium_org/v8/src/
compiler.cc 751 OptimizedCompileJob job(info);
752 if (job.CreateGraph() != OptimizedCompileJob::SUCCEEDED ||
753 job.OptimizeGraph() != OptimizedCompileJob::SUCCEEDED ||
754 job.GenerateCode() != OptimizedCompileJob::SUCCEEDED) {
794 OptimizedCompileJob* job = new (info->zone()) OptimizedCompileJob(info); local
795 OptimizedCompileJob::Status status = job->CreateGraph();
797 isolate->optimizing_compiler_thread()->QueueForOptimization(job);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 73 import org.eclipse.core.runtime.jobs.Job;
618 * Adds or edit a build tools marker from the given project. This is done through a Job.
623 Job markerJob = new Job("Android SDK: Build Tools Marker") {
642 // Don't return e2.getStatus(); the job control will then produce
652 markerJob.setPriority(Job.BUILD);
659 * <p/> The data is loaded in a separate {@link Job}, and opened editors will be notified
707 Job job = new Job(String.format("Loading data for %1$s", target.getFullName())) local
1481 Job job = new Job("Update Android editor bindings") { \/\/$NON-NLS-1\$ local
    [all...]
  /external/chromium_org/sandbox/win/src/
target_process.cc 68 HANDLE job, ThreadProvider* thread_pool)
70 // the job_ handle. The Job handle is closed by BrokerServices and results
74 job_(job),
83 // this wait was enough to switch context and kill the processes in the job.
109 // Creates the target (child) process suspended and assigns it to the job
130 // break out of any job we're in to enforce our restrictions.
154 // Assign the suspended target to the windows job object.
169 // It might be a security breach if we let the target run outside the job
sandbox_policy_base.cc 18 #include "sandbox/win/src/job.h"
434 ResultCode PolicyBase::MakeJobObject(HANDLE* job) {
436 // Create the windows job object.
437 Job job_obj;
443 *job = job_obj.Detach();
445 *job = NULL;
554 bool PolicyBase::OnJobEmpty(HANDLE job) {
558 if ((*it)->Job() == job)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/34/1/.cp/ant_tasks/
pde-ant.jar 
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
SpacebarLanguagetUtilsTests.java 158 protected Void job(final Resources res) {
202 protected Void job(final Resources res) {
  /external/chromium_org/chrome/browser/extensions/
user_script_loader.cc 50 scoped_refptr<ContentVerifyJob> job(
52 if (job.get()) {
53 job->Start();
54 job->BytesRead(content.size(), content.data());
55 job->DoneReading();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.util_1.0.200.v20100503.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.util_1.0.500.v20130404-1337.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.util_1.0.500.v20130404-1337.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintViewPart.java 36 import org.eclipse.core.runtime.jobs.Job;
294 Job[] currentJobs = LintJob.getCurrentJobs();
299 for (Job job : currentJobs) {
300 job.addJobChangeListener(this);
469 Job[] jobs = LintJob.getCurrentJobs();
477 Job job = EclipseLintRunner.startLint(resources, null, null, local
479 if (job != null && workbench != null) {
480 job.addJobChangeListener(LintViewPart.this)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
pool.py 111 job, i, func, args, kwds = task
117 put((job, i, result))
122 put((job, i, (False, wrapped)))
390 job, i, obj = task
392 cache[job]._set(i, obj)
406 job, i, obj = task
408 cache[job]._set(i, obj)

Completed in 837 milliseconds

1 2 3 4 5 6 7 891011>>