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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/app/job/
JobInfo.aidl 17 package android.app.job;
JobParameters.aidl 17 package android.app.job;
JobWorkItem.aidl 17 package android.app.job;
IJobService.aidl 17 package android.app.job;
19 import android.app.job.JobParameters;
24 * service implementation will extend android.app.job.JobService.
28 /** Begin execution of application's job. */
30 /** Stop execution of application's job. */
IJobScheduler.aidl 17 package android.app.job;
19 import android.app.job.JobInfo;
20 import android.app.job.JobWorkItem;
27 int schedule(in JobInfo job);
28 int enqueue(in JobInfo job, in JobWorkItem work);
29 int scheduleAsPackage(in JobInfo job, String packageName, int userId, String tag);
IJobCallback.aidl 17 package android.app.job;
19 import android.app.job.JobWorkItem;
27 * which Job Service instance is reporting.
35 * @param jobId Unique integer used to identify this job.
36 * @param ongoing True to indicate that the client is processing the job. False if the job is
43 * @param jobId Unique integer used to identify this job.
44 * @param reschedule Whether or not to reschedule this job.
48 * Called to deqeue next work item for the job.
52 * Called to report that job has completed processing a work item
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_job.c 41 vc4_job_free(struct vc4_context *vc4, struct vc4_job *job)
43 struct vc4_bo **referenced_bos = job->bo_pointers.base;
44 for (int i = 0; i < cl_offset(&job->bo_handles) / 4; i++) {
48 remove_from_ht(vc4->jobs, &job->key);
50 if (job->color_write) {
51 remove_from_ht(vc4->write_jobs, job->color_write->texture);
52 pipe_surface_reference(&job->color_write, NULL);
54 if (job->msaa_color_write) {
55 remove_from_ht(vc4->write_jobs, job->msaa_color_write->texture);
56 pipe_surface_reference(&job->msaa_color_write, NULL)
79 struct vc4_job *job = rzalloc(vc4, struct vc4_job); local
102 struct vc4_job *job = entry->data; local
117 struct vc4_job *job = entry->data; local
178 struct vc4_job *job = vc4_job_create(vc4); local
226 struct vc4_job *job = vc4_get_job(vc4, cbuf, zsbuf); local
    [all...]
  /external/autotest/venv/lucifer/
jobx.py 5 """Extra functions for frontend.afe.models.Job objects.
13 It's not really a good idea to define these on the Job class either;
14 they are specialized and the Job class already suffers from method
19 def is_hostless(job):
20 """Return True if the job is hostless.
22 @param job: frontend.afe.models.Job instance
24 return bool(hostnames(job))
27 def hostnames(job):
28 """Return a list of hostnames for a job
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
job.h 6 * Job control interfaces
15 /** Job progress */
36 /** Job control interface operations */
38 /** Job completed
40 * @v job Job control interface
41 * @v rc Overall job status code
43 void ( * done ) ( struct job_interface *job, int rc );
44 /** Abort job
46 * @v job Job control interfac
    [all...]
  /frameworks/base/services/core/java/com/android/server/job/
JobCompletedListener.java 17 package com.android.server.job;
19 import com.android.server.job.controllers.JobStatus;
22 * Used for communication between {@link com.android.server.job.JobServiceContext} and the
23 * {@link com.android.server.job.JobSchedulerService}.
27 * Callback for when a job is completed.
28 * @param needsReschedule Whether the implementing class should reschedule this job.
StateChangedListener.java 17 package com.android.server.job;
19 import com.android.server.job.controllers.JobStatus;
22 * Interface through which a {@link com.android.server.job.controllers.StateController} informs
23 * the {@link com.android.server.job.JobSchedulerService} that there are some tasks potentially
  /external/autotest/client/bin/
profiler.py 5 def __init__(self, job):
6 self.job = job
harness_unittest.py 20 job = object()
24 harness_standalone.harness_standalone.expect_new(job, harness_args)
25 harness.select(None, job, harness_args)
30 job = object()
34 harness_standalone.harness_standalone.expect_new(job, harness_args)
35 harness.select('standalone', job, harness_args)
harness_standalone.py 14 job
15 The job object for this job
18 def __init__(self, job, harness_args):
20 job
21 The job object for this job
24 self.setup(job
  /external/syslinux/gpxe/src/core/
job.c 23 #include <gpxe/job.h>
27 * Job control interfaces
31 void job_done ( struct job_interface *job, int rc ) {
32 struct job_interface *dest = job_get_dest ( job );
34 job_unplug ( job );
39 void job_kill ( struct job_interface *job ) {
40 struct job_interface *dest = job_get_dest ( job );
42 job_unplug ( job );
47 void job_progress ( struct job_interface *job,
49 struct job_interface *dest = job_get_dest ( job );
    [all...]
  /test/vti/test_serving/gae/webapp/src/scheduler/
job_heartbeat.py 48 for job in jobs:
49 if job.heartbeat_stamp:
50 job_timestamp = job.heartbeat_stamp
52 job_timestamp = job.timestamp
55 lost_jobs.append(job)
57 for job in lost_jobs:
58 self.logger.Println("Lost job found")
61 job.hostname, job.device, job.test_name)
    [all...]
  /external/toolchain-utils/automation/server/
job_executer.py 9 from automation.common import job
22 self.job = job_to_execute
27 self.name = '%s-%s' % (self.__class__.__name__, self.job.id)
30 self._executer = LoggingCommandExecuter(self.job.dry_run)
35 self.job.primary_machine.hostname,
36 self.job.primary_machine.username,
40 raise job.JobFailure(fail_msg, exit_code)
47 raise job.JobFailure(fail_msg, exit_code)
53 self._logger.debug('Cleaning up %r work directory.', self.job)
54 self._RunRemotely(cmd.RmTree(self.job.work_dir), 'Cleanup workdir failed.'
    [all...]
  /packages/services/BuiltInPrintService/src/com/android/bips/
JobQueue.java 25 /** Manages a job queue, ensuring only one job is printed at a time */
30 /** Queue a print job for printing at the next available opportunity */
31 void print(LocalPrintJob job) {
32 mJobs.add(job);
36 /** Cancel a previously queued job */
38 // If a job hasn't started, kill it instantly.
39 for (LocalPrintJob job : mJobs) {
40 if (job.getPrintJobId().equals(id)) {
41 mJobs.remove(job);
    [all...]
  /test/vti/test_serving/gae/webapp/src/endpoint/
job_queue.py 14 """Job Queue Info APIs implemented using Google Cloud Endpoints."""
43 """Gets the job(s) based on the condition specified in `request`."""
70 job = priority_sorted_jobs[0]
71 job.status = Status.JOB_STATUS_DICT["leased"]
72 job.put()
74 job_message.hostname = job.hostname
75 job_message.priority = job.priority
76 job_message.test_name = job.test_name
78 job.require_signed_device_build)
79 job_message.device = job.devic
    [all...]
  /frameworks/base/core/java/android/app/
JobSchedulerImpl.java 20 import android.app.job.JobInfo;
21 import android.app.job.JobScheduler;
22 import android.app.job.IJobScheduler;
23 import android.app.job.JobWorkItem;
42 public int schedule(JobInfo job) {
44 return mBinder.schedule(job);
51 public int enqueue(JobInfo job, JobWorkItem work) {
53 return mBinder.enqueue(job, work);
60 public int scheduleAsPackage(JobInfo job, String packageName, int userId, String tag) {
62 return mBinder.scheduleAsPackage(job, packageName, userId, tag)
    [all...]
  /external/fio/unit_tests/
steadystate_tests.py 102 # check that runtime is less than job time
126 for job in reads:
129 parameters = [ "--name=job{0}".format(jobnum) ]
139 "--numjobs={0}".format(job['numjobs']),
141 "--runtime={0}".format(job['timeout']) ])
142 if job['s']:
143 if job['iops']:
147 if job['slope']:
149 ss += ":" + str(job['ss_limit'])
150 if job['pct']
    [all...]
  /packages/apps/TV/src/com/android/tv/data/epg/
EpgFetcher.java 19 import android.app.job.JobParameters;
20 import android.app.job.JobScheduler;
21 import android.app.job.JobService;
  /external/perfetto/gn/standalone/toolchain/
mac_find_llvm.py 21 job = subprocess.Popen(['xcrun', '-f', 'clang++'],
24 out, err = job.communicate()
25 if job.returncode != 0:
28 return job.returncode
  /cts/tests/tests/print/src/android/print/cts/
InterfaceForAppsTest.java 105 * Create mock service callback for a session. Once the job is queued the test function is
115 android.printservice.PrintJob job = (android.printservice.PrintJob) invocation
121 job.getInfo().getState()));
124 eventually(() -> assertTrue(job.isQueued()));
125 job.start();
128 eventually(() -> assertTrue(job.isQueued()));
131 eventually(() -> assertTrue(job.isQueued()));
132 job.start();
133 job.block("test block");
136 eventually(() -> assertTrue(job.isQueued()))
151 android.printservice.PrintJob job = (android.printservice.PrintJob) invocation external variable declarations
    [all...]
  /external/v8/src/compiler-dispatcher/
compiler-dispatcher.cc 12 #include "src/compiler-dispatcher/compiler-dispatcher-job.h"
24 bool DoNextStepOnMainThread(Isolate* isolate, CompilerDispatcherJob* job,
30 // Ensure we are in the correct context for the job.
32 isolate->set_context(job->context());
34 switch (job->status()) {
36 job->PrepareToParseOnMainThread();
40 job->Parse();
44 job->FinalizeParsingOnMainThread();
48 job->AnalyzeOnMainThread();
52 job->PrepareToCompileOnMainThread()
298 JobMap::const_iterator job = GetJobFor(function); local
349 JobMap::const_iterator job = GetJobFor(function); local
387 JobMap::const_iterator job = GetJobFor(function); local
463 auto job = it; local
581 CompilerDispatcherJob* job = nullptr; local
    [all...]

Completed in 438 milliseconds

1 2 3 4 5 6 7 8 91011>>