Home
last modified time | relevance | path

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

/external/google-breakpad/src/common/
Dsimple_string_dictionary.h71 bool is_active() const { in is_active() function
90 if (entry->is_active()) { in Next()
136 if (entries_[i].is_active()) { in GetCount()
181 if (!entries_[i].is_active()) { in SetKeyValue()
Dsimple_string_dictionary_unittest.cc58 EXPECT_FALSE(entry->is_active()); in TEST()
/external/autotest/frontend/afe/
Dmodels_test.py95 task.update_object(is_active=True)
98 task.update_object(is_active=False, is_complete=True, success=True)
108 self.assertTrue(task.is_active)
116 self.assertFalse(task.is_active)
Dmodels.py2030 is_active = dbmodels.BooleanField(default=False, blank=False, null=False) variable in SpecialTask
2059 self.is_complete, self.success, self.is_active)
2078 is_active=False,
2100 self.is_active = True
2111 self.is_active = False
2129 elif self.is_active:
Drpc_interface.py533 host_id=host_dict['id'], is_active=True, is_complete=False)
1029 special_tasks = query.filter(is_active=True)
Drpc_interface_unittest.py277 is_active=True, requested_by=models.User.current_user())
/external/autotest/scheduler/
Dmonitor_db.py463 is_active=False,
483 + self._get_special_task_agent_tasks(is_active=True))
526 def _get_special_task_agent_tasks(self, is_active=False): argument
528 is_active=is_active, is_complete=False)
901 models.SpecialTask.objects.filter(is_active=False,
930 aborted_tasks = models.SpecialTask.objects.filter(is_active=True,
Dquery_managers.py122 queued_tasks = models.SpecialTask.objects.filter(is_active=False,
164 is_active=1, is_complete=0, host_id__isnull=False,
Dhost_scheduler_unittests.py204 self.assertTrue(task.is_active == 0 and task.host_id == host.id)
263 task.is_active = 0
Dprejob_task.py172 host__id=self.host.id, is_active=False,
Dagent_task.py728 is_active=False, is_complete=False, queue_entry=None)
/external/v8/src/runtime/
Druntime-debug.cc1083 RUNTIME_ASSERT(isolate->debug()->is_active()); in RUNTIME_FUNCTION()
1111 RUNTIME_ASSERT(isolate->debug()->is_active()); in RUNTIME_FUNCTION()
1136 RUNTIME_ASSERT(isolate->debug()->is_active()); in RUNTIME_FUNCTION()
1168 RUNTIME_ASSERT(isolate->debug()->is_active()); in RUNTIME_FUNCTION()
1244 RUNTIME_ASSERT(isolate->debug()->is_active()); in RUNTIME_FUNCTION()
1300 RUNTIME_ASSERT(isolate->debug()->is_active()); in RUNTIME_FUNCTION()
1503 RUNTIME_ASSERT(isolate->debug()->is_active()); in RUNTIME_FUNCTION()
1689 return Smi::FromInt(isolate->debug()->is_active()); in RUNTIME_FUNCTION()
/external/autotest/server/
Dsite_utils.py508 def get_special_task_status(is_complete, success, is_active): argument
525 if is_active:
/external/opencv3/modules/core/src/
Dparallel.cpp334 return tbbScheduler.is_active() in getNumThreads()
384 if(tbbScheduler.is_active()) tbbScheduler.terminate(); in setNumThreads()
/external/v8/src/
Dglobal-handles.cc166 bool is_active() { in is_active() function in v8::internal::GlobalHandles::Node
680 node->is_active())) { in IterateNewSpaceStrongAndDependentRoots()
742 if ((node->is_independent() || !node->is_active()) && node->IsWeak() && in MarkNewSpaceWeakUnmodifiedObjectsPending()
754 if ((node->is_independent() || !node->is_active()) && in IterateNewSpaceWeakUnmodifiedRoots()
844 if (!node->is_independent() && (node->is_active())) { in PostScavengeProcessing()
Dcompiler.cc1040 (FLAG_turbo_asm_deoptimization || !isolate->debug()->is_active()) && in GetLazyCode()
/external/v8/src/debug/
Ddebug.cc762 if (!is_active()) return; in PrepareStepIn()
772 if (!is_active()) return; in PrepareStepOnThrow()
1898 if (!is_active()) { in NotifyMessageHandler()
1992 bool is_active = message_handler_ != NULL || !event_listener_.is_null(); in UpdateState() local
1993 if (is_active || in_debug_scope()) { in UpdateState()
1997 is_active = Load(); in UpdateState()
2002 is_active_ = is_active; in UpdateState()
2059 if (!is_active()) return; in HandleDebugBreak()
Ddebug.h458 return is_active() && !debug_context().is_null() && break_id() != 0 && in CheckExecutionState()
474 inline bool is_active() const { return is_active_; } in is_active() function
/external/llvm/test/DebugInfo/Generic/
DPR20038.ll75 %cleanup.is_active = load i1, i1* %cleanup.cond, !dbg !27
76 br i1 %cleanup.is_active, label %cleanup.action, label %cleanup.done, !dbg !27
/external/libnfc-nci/src/nfa/ee/
Dnfa_ee_act.c1804 BOOLEAN is_active = FALSE; in nfa_ee_is_active() local
1818 is_active = TRUE; in nfa_ee_is_active()
1823 return is_active; in nfa_ee_is_active()
/external/autotest/database/
Dschema_051.sql395 `is_active` tinyint(1) NOT NULL default '0',