Home
last modified time | relevance | path

Searched refs:queue_entry (Results 1 – 21 of 21) sorted by relevance

/external/autotest/frontend/afe/
Drpc_utils.py365 for queue_entry in host_queue_entries:
366 key = _execution_key_for(queue_entry)
370 for queue_entry in host_queue_entries:
371 if not queue_entry.execution_subdir:
373 execution_count = count_per_execution[_execution_key_for(queue_entry)]
374 if execution_count < queue_entry.job.synch_count:
378 % (queue_entry.job.id, queue_entry.execution_subdir,
379 execution_count, queue_entry.job.synch_count)})
456 for queue_entry in queue_entries:
457 if (queue_entry.host and (preserve_metahosts or
[all …]
Dmodels.py87 queue_entry = HostQueueEntry.create(atomic_group=self, job=job,
89 queue_entry.save()
142 queue_entry = HostQueueEntry.create(meta_host=self, job=job,
144 queue_entry.save()
762 for queue_entry in self.hostqueueentry_set.all():
763 logging.info(' Deleting and aborting hqe %s...', queue_entry)
764 queue_entry.deleted = True
765 queue_entry.abort()
766 logging.info(' ... done with hqe %s.', queue_entry)
788 queue_entry = HostQueueEntry.create(host=self, job=job,
[all …]
Dmodels_test.py204 queue_entry=job.hostqueueentry_set.all()[0])
Drpc_interface_unittest.py918 queue_entry=entry2, # ran with job 2
/external/AFLplusplus/include/
Dafl-fuzz.h194 struct queue_entry { struct
246 struct queue_entry *mother; /* queue entry this based on */ argument
693 struct queue_entry *queue, /* Fuzzing queue (linked list) */
698 struct queue_entry **queue_buf;
700 struct queue_entry **top_rated; /* Top entries for bitmap bytes */
829 struct queue_entry **q_testcase_cache;
1127 u8 trim_case_custom(afl_state_t *, struct queue_entry *q, u8 *in_buf,
1129 void run_afl_custom_queue_new_entry(afl_state_t *, struct queue_entry *, u8 *,
1157 void mark_as_det_done(afl_state_t *, struct queue_entry *);
1158 void mark_as_variable(afl_state_t *, struct queue_entry *);
[all …]
/external/llvm/test/CodeGen/X86/
D2009-09-23-LiveVariablesBug.ll11 %struct.queue_entry = type { %struct.queue_entry*, %struct.queue_entry* }
14queue_entry, %struct._lck_rw_t_internal_, i64, %struct.vm_page*, i32, i32, i32, i32, %struct.vm_ob…
15 %struct.vm_page = type { %struct.queue_entry, %struct.queue_entry, %struct.vm_page*, %struct.vm_obj…
/external/AFLplusplus/src/
Dafl-fuzz-queue.c37 void run_afl_custom_queue_new_entry(afl_state_t *afl, struct queue_entry *q, in run_afl_custom_queue_new_entry()
63 double compute_weight(afl_state_t *afl, struct queue_entry *q, in compute_weight()
125 struct queue_entry *q = afl->queue_buf[i]; in create_alias_table()
145 struct queue_entry *q = afl->queue_buf[i]; in create_alias_table()
164 struct queue_entry *q = afl->queue_buf[i]; in create_alias_table()
191 struct queue_entry *q = afl->queue_buf[i]; in create_alias_table()
314 void mark_as_det_done(afl_state_t *afl, struct queue_entry *q) { in mark_as_det_done()
333 void mark_as_variable(afl_state_t *afl, struct queue_entry *q) { in mark_as_variable()
358 void mark_as_redundant(afl_state_t *afl, struct queue_entry *q, u8 state) { in mark_as_redundant()
476 static u8 check_if_text(afl_state_t *afl, struct queue_entry *q) { in check_if_text()
[all …]
Dafl-fuzz-mutators.c34 void run_afl_custom_queue_new_entry(afl_state_t *afl, struct queue_entry *q, in run_afl_custom_queue_new_entry()
453 u8 trim_case_custom(afl_state_t *afl, struct queue_entry *q, u8 *in_buf, in trim_case_custom()
Dafl-fuzz-skipdet.c34 u8 should_det_fuzz(afl_state_t *afl, struct queue_entry *q) { in should_det_fuzz()
Dafl-fuzz-run.c402 u8 calibrate_case(afl_state_t *afl, struct queue_entry *q, u8 *use_mem, in calibrate_case()
873 u8 trim_case(afl_state_t *afl, struct queue_entry *q, u8 *in_buf) { in trim_case()
Dafl-fuzz-init.c881 struct queue_entry *q;
1290 struct queue_entry *p = afl->queue_buf[i];
1407 struct queue_entry *q;
1453 struct queue_entry *s = afl->queue_buf[src_id];
Dafl-fuzz-stats.c434 struct queue_entry *q = afl->queue_buf[id];
507 void plot_profile_data(afl_state_t *afl, struct queue_entry *q) {
2253 struct queue_entry *q;
Dafl-fuzz-one.c1881 struct queue_entry *target = NULL; in fuzz_one_original()
3179 struct queue_entry *target = afl->queue_buf[tid]; in fuzz_one_original()
3231 struct queue_entry *target = afl->queue_buf[tid]; in fuzz_one_original()
3342 struct queue_entry *target; in fuzz_one_original()
5631 struct queue_entry *target = afl->queue_buf[tid]; in mopt_common_fuzzing()
5813 struct queue_entry *target; in mopt_common_fuzzing()
Dafl-showmap.c161 void update_bitmap_score(afl_state_t *afl, struct queue_entry *q) { in update_bitmap_score()
/external/autotest/server/
Dautoserv_utils.py25 queue_entry=None, argument
132 if job or queue_entry:
134 job = queue_entry.job
/external/coreboot/util/sconfig/
Dmain.c142 struct queue_entry { struct
144 struct queue_entry *next; argument
145 struct queue_entry *prev; argument
163 static struct queue_entry *new_queue_entry(void *data) in new_queue_entry()
165 struct queue_entry *e = S_ALLOC(sizeof(*e)); in new_queue_entry()
172 static void enqueue_tail(struct queue_entry **q_head, void *data) in enqueue_tail()
174 struct queue_entry *tmp = new_queue_entry(data); in enqueue_tail()
175 struct queue_entry *q = *q_head; in enqueue_tail()
188 static void *dequeue_tail(struct queue_entry **q_head) in dequeue_tail()
190 struct queue_entry *q = *q_head; in dequeue_tail()
[all …]
/external/autotest/site_utils/
Djob_history.py184 return [task for task in self.tasks if task.queue_entry and
185 task.queue_entry.job.id == job_id]
282 tasks = [task for task in tasks if task.queue_entry and
283 task.queue_entry.job.id == self.id]
/external/bcc/libbpf-tools/x86/
Dvmlinux.h62969 struct list_head queue_entry; member
Dvmlinux_518.h62969 struct list_head queue_entry; member
/external/bcc/libbpf-tools/riscv/
Dvmlinux_602.h114349 struct list_head queue_entry; member
Dvmlinux.h114349 struct list_head queue_entry; member