/external/mesa3d/src/gallium/drivers/vc5/ |
vc5_context.c | 48 struct vc5_job *job = entry->data; local 49 vc5_job_submit(vc5, job); 83 struct vc5_job *job = entry->data; local 84 if (job->key.zsbuf && job->key.zsbuf->texture == prsc) 85 job->resolve &= ~(PIPE_CLEAR_DEPTH | PIPE_CLEAR_STENCIL);
|
/external/skia/tools/skqp/ |
find_commit_with_best_gold_results.py | 37 for job in jobs: 38 m = reg.match(job) 43 def gold_export_url(job, config, first_commit, last_commit): 44 qq = [('source_type', 'gm'), ('config', config)] + job 71 all_urls = [gold_export_url(job, config, commit, commit) 72 for job in jobs for config in CONFIGS]
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
JobWorkServiceActivity.java | 20 import android.app.job.JobInfo; 21 import android.app.job.JobScheduler; 22 import android.app.job.JobWorkItem;
|
/external/autotest/server/site_tests/hardware_TPMFirmwareServer/ |
hardware_TPMFirmwareServer.py | 27 cstatus = self.job.get_state("client_status") 29 self.job.set_state("client_status", None) 49 self.job.set_state("client_status", None)
|
/cts/tests/JobScheduler/src/android/jobscheduler/ |
TriggerContentJobService.java | 20 import android.app.job.JobInfo; 21 import android.app.job.JobParameters; 22 import android.app.job.JobScheduler; 23 import android.app.job.JobService; 32 * Handles callback from the framework {@link android.app.job.JobScheduler}. The behaviour of this 43 /** How long to delay before rescheduling the job each time we repeat. */ 75 Log.i(TAG, "Test job executing: " + params.getJobId()); 132 * job on this service. 168 Log.d(TAG, "Job executed:" + params.getJobId());
|
/cts/tests/JobSchedulerSharedUid/src/android/jobscheduler/ |
TriggerContentJobService.java | 20 import android.app.job.JobInfo; 21 import android.app.job.JobParameters; 22 import android.app.job.JobScheduler; 23 import android.app.job.JobService; 32 * Handles callback from the framework {@link android.app.job.JobScheduler}. The behaviour of this 43 /** How long to delay before rescheduling the job each time we repeat. */ 75 Log.i(TAG, "Test job executing: " + params.getJobId()); 132 * job on this service. 168 Log.d(TAG, "Job executed:" + params.getJobId());
|
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
MediaContentJob.java | 19 import android.app.job.JobInfo; 20 import android.app.job.JobParameters; 21 import android.app.job.JobScheduler; 22 import android.app.job.JobService; 36 * Example stub job to monitor when there is a change to any media: content URI. 58 Log.i("MediaContentJob", "JOB SCHEDULED!"); 82 Log.i("MediaContentJob", "JOB STARTED!");
|
/external/autotest/client/bin/ |
partition.py | 81 def wipe_filesystem(job, mountpoint): 86 job.record('FAIL', None, wipe_cmd, error.format_error()) 89 job.record('GOOD', None, wipe_cmd) 119 def get_partition_list(job, min_blocks=0, filter_func=None, exclude_swap=True, 126 @param job: The job instance to pass to the partition object 175 partitions.append(partition(job, device)) 223 def get_unmounted_partition_list(root_part, job=None, min_blocks=0, 236 @param job, min_blocks, filter_func, exclude_swap, open_func: Forwarded 240 partitions = get_partition_list(job=job, min_blocks=min_blocks [all...] |
/external/autotest/client/common_lib/ |
profiler_manager.py | 14 def __init__(self, job): 15 self.job = job 17 self.tmpdir = job.tmpdir 52 """ Returns True if job is supposed to be run only with profiling 58 """ Changes the flag which determines whether or not the job is to be
|
/external/autotest/client/profilers/blktrace/ |
blktrace.py | 19 self.job.require_gcc() 20 self.job.setup_dep(['libaio']) 21 ldflags = '-L ' + self.job.autodir + '/deps/libaio/lib' 22 cflags = '-I ' + self.job.autodir + '/deps/libaio/include'
|
/external/autotest/client/site_tests/dummy_Fail/ |
dummy_Fail.py | 35 self.job.record('INFO', self.tagged_testname,
|
/external/autotest/client/tests/flail/ |
flail.py | 19 self.job.require_gcc()
|
/external/autotest/client/tests/fs_mark/ |
fs_mark.py | 9 self.job.require_gcc()
|
/external/autotest/client/tests/fsfuzzer/ |
fsfuzzer.py | 9 self.job.require_gcc()
|
/external/autotest/client/tests/interbench/ |
interbench.py | 9 self.job.require_gcc()
|
/external/autotest/client/tests/pi_tests/ |
pi_tests.py | 9 self.job.require_gcc()
|
/external/autotest/client/tests/posixtest/ |
posixtest.py | 13 self.job.require_gcc()
|
/external/autotest/client/tests/rmaptest/ |
rmaptest.py | 18 self.job.require_gcc()
|
/external/autotest/client/tests/rtc/ |
rtc.py | 16 self.job.require_gcc()
|
/external/autotest/client/tests/synctest/ |
synctest.py | 11 self.job.require_gcc()
|
/external/autotest/site_utils/ |
diagnosis_utils.py | 94 """Add name of build of job that needed the DUTs. 139 """Utility class capable of measuring job timeouts. 148 @param job_created_time: float representing the time a job was 172 """Get the time elapsed since this job was created. 182 @return: True if more than timeout_hours has elapsed since the suite job 197 after a job's elapsed time is past half its timeout. 244 status_history.UNKNOWN: 'No job history', 251 for job in history: 253 time_utils.epoch_time_to_date_string(job.start_time)) 255 (job.id, job.name, start_time, job.job_status) [all...] |
/external/grpc-grpc/tools/run_tests/python_utils/ |
dockerjob.py | 79 for job in jobs: 80 job.kill(suppress_failure=True) 82 while any(job.is_running() for job in jobs): 112 """Encapsulates a job""" 116 self._job = jobset.Job( 134 """Polls a job and returns True if given job is still running."""
|
/external/autotest/frontend/afe/ |
models_test.py | 201 job = self._create_job(hosts=[0]) 204 queue_entry=job.hostqueueentry_set.all()[0]) 281 job = self._create_job(hosts=[1]) 282 self.assertEqual(1, models.Job.objects.all().count()) 284 job.delete() 285 self.assertEqual(0, models.Job.objects.all().count()) 292 self.assertEqual(2, models.Job.objects.all().count()) 294 models.Job.objects.all().delete() 295 self.assertEqual(0, models.Job.objects.all().count()) 573 jobs = [models.Job.deserialize(job) for job in jobs_serialized [all...] |
/external/autotest/server/ |
profilers.py | 28 def __init__(self, job): 29 super(profilers, self).__init__(job) 63 Install autotest on any current job hosts. 67 for host in self.job.hosts: 68 if host.hostname not in self.job.machines: 69 # job.hosts include all host instances created on the fly. 70 # We only care DUTs in job.machines which are 99 # drop any installs from hosts no longer in job.hosts 121 os.path.basename(test.job.resultdir) in test.job.machines [all...] |
/external/autotest/tko/ |
models.py | 10 class job(object): class in inherits:object 11 """Represents a job.""" 35 # This table is used to refer to skylab task / afe job corresponding to 42 Read job keyval files. 44 @param dir: String name of directory containing job keyval files. 46 @return A dictionary containing job keyvals. 145 def parse_test(cls, job, subdir, testname, status, reason, test_kernel, 150 Given a job and the basic metadata about the test that can be 155 @param job: A job object [all...] |