HomeSort by relevance Sort by last modified time
    Searched refs:Current (Results 151 - 175 of 827) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakedtlsidentityservice.h 91 talk_base::Thread::Current()->Post(this, MSG_FAILURE, msg);
93 talk_base::Thread::Current()->Post(this, MSG_SUCCESS, msg);
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
pingtask_unittest.cc 96 talk_base::Thread::Current(),
111 talk_base::Thread::Current(),
  /external/llvm/include/llvm/Option/
ArgList.h 29 /// The current argument.
30 SmallVectorImpl<Arg*>::const_iterator Current;
57 : Current(it), Args(_Args), Id0(_Id0), Id1(_Id1), Id2(_Id2) {
61 operator const Arg*() { return *Current; }
62 reference operator*() const { return *Current; }
63 pointer operator->() const { return Current; }
66 ++Current;
78 return LHS.Current == RHS.Current;
  /art/runtime/base/
mutex.cc 316 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
317 Runtime* runtime = Runtime::Current();
331 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
332 Runtime* runtime = Runtime::Current();
340 DCHECK(self == NULL || self == Thread::Current());
382 DCHECK(self == NULL || self == Thread::Current());
422 DCHECK(self == NULL || self == Thread::Current());
465 DCHECK(self == NULL || self == Thread::Current());
537 MutexLock mu(Thread::Current(), *Locks::runtime_shutdown_lock_);
538 Runtime* runtime = Runtime::Current();
    [all...]
  /art/runtime/mirror/
art_field-inl.h 60 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
66 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
72 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
78 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
84 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
90 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
object_test.cc 57 Thread* self = Thread::Current();
93 ScopedObjectAccess soa(Thread::Current());
103 ScopedObjectAccess soa(Thread::Current());
136 ScopedObjectAccess soa(Thread::Current());
152 ScopedObjectAccess soa(Thread::Current());
206 ScopedObjectAccess soa(Thread::Current());
215 Object* array = CheckAndAllocArrayFromCode(type_idx, sort, 3, Thread::Current(), false);
223 ScopedObjectAccess soa(Thread::Current());
258 ScopedObjectAccess soa(Thread::Current());
260 const DexFile* dex_file = Runtime::Current()->GetCompileTimeClassPath(class_loader)[0]
    [all...]
art_method.cc 123 Runtime::Current()->GetClassLinker()->FindMethodForProxy(GetDeclaringClass(), this));
149 const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(this);
160 const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(this);
196 const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(this);
204 const void* code = Runtime::Current()->GetInstrumentation()->GetQuickCodeFor(this);
257 Runtime* runtime = Runtime::Current();
310 DCHECK(Thread::Current() == self);
  /art/runtime/
thread_pool.cc 46 Thread* self = Thread::Current();
57 Runtime* runtime = Runtime::Current();
86 Thread* self = Thread::Current();
96 MutexLock mu(Thread::Current(), task_queue_lock_);
103 Thread* self = Thread::Current();
203 Thread* self = Thread::Current();
dex_file_test.cc 27 ScopedObjectAccess soa(Thread::Current());
75 ScopedObjectAccess soa(Thread::Current());
115 ScopedObjectAccess soa(Thread::Current());
122 ScopedObjectAccess soa(Thread::Current());
128 ScopedObjectAccess soa(Thread::Current());
141 ScopedObjectAccess soa(Thread::Current());
197 ScopedObjectAccess soa(Thread::Current());
debugger.cc 200 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
284 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
461 ScopedObjectAccess soa(Thread::Current());
476 ScopedObjectAccess soa(Thread::Current());
481 ScopedObjectAccess soa(Thread::Current());
486 ScopedObjectAccess soa(Thread::Current());
497 return Thread::Current()->GetInvokeReq();
533 MutexLock mu(Thread::Current(), *Locks::breakpoint_lock_);
537 Runtime* runtime = Runtime::Current();
539 Thread* self = Thread::Current();
    [all...]
runtime.cc 109 Thread* self = Thread::Current();
151 if (Runtime::Current() == NULL) {
155 Thread* self = Thread::Current();
186 Runtime::Current()->GetThreadList()->DumpLocked(os);
195 MutexLock mu(Thread::Current(), *Locks::abort_lock_);
206 if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) {
208 Runtime::Current()->abort_();
236 ScopedThreadStateChange tsc(Thread::Current(), kNative);
670 if (Runtime::Current()->UseCompileTimeClassPath())
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient_unittest.cc 52 : local_pa_(talk_base::Thread::Current(), NULL),
53 remote_pa_(talk_base::Thread::Current(), NULL),
54 local_sm_(&local_pa_, talk_base::Thread::Current()),
55 remote_sm_(&remote_pa_, talk_base::Thread::Current()),
107 talk_base::Thread::Current()->Post(this, MSG_LSIGNAL,
110 talk_base::Thread::Current()->Post(this, MSG_RSIGNAL,
  /external/chromium_org/v8/src/
hydrogen-infer-representation.cc 33 void HInferRepresentationPhase::AddToWorklist(HValue* current) {
34 if (current->representation().IsTagged()) return;
35 if (!current->CheckFlag(HValue::kFlexibleRepresentation)) return;
36 if (in_worklist_.Contains(current->id())) return;
37 worklist_.Add(current, zone());
38 in_worklist_.Add(current->id());
90 int index = it.Current();
103 int index = it.Current();
112 int index = it.Current();
132 int index = it.Current();
147 HInstruction* current = it.Current(); local
154 HValue* current = worklist_.RemoveLast(); local
171 HInstruction* current = it.Current(); local
    [all...]
  /external/v8/test/cctest/
test-alloc.cc 40 Heap* heap = Isolate::Current()->heap();
64 *Isolate::Current()->object_function())->ToObjectChecked();
111 CHECK(!heap->CopyCode(Isolate::Current()->builtins()->builtin(
155 function->ReplaceCode(Isolate::Current()->builtins()->builtin(
207 Isolate::Current()->InitializeLoggingAndCounters();
208 CodeRange* code_range = new CodeRange(Isolate::Current());
  /external/v8/src/
api.cc 130 i::VMState __state__(i::Isolate::Current(), i::OTHER);
136 i::Isolate* isolate = i::Isolate::Current();
203 i::Isolate* isolate = i::Isolate::Current();
305 ASSERT(isolate == i::Isolate::Current());
312 // Isolate::Current() works. If it's a legacy case, then the thread
322 isolate = i::Isolate::Current();
486 i::Isolate* isolate = i::Isolate::Current();
537 i::Isolate* isolate = i::Isolate::Current();
547 i::Isolate* isolate = i::Isolate::Current();
557 i::Isolate* isolate = i::Isolate::Current();
667 v8::ImplementationUtilities::HandleScopeData* current = local
686 v8::ImplementationUtilities::HandleScopeData* current = local
3719 char* current = buffer; local
3732 char* current = buffer; local
4415 i::Handle<i::Object> current = isolate->global_context(); local
6313 v8::ImplementationUtilities::HandleScopeData* current = local
6357 v8::ImplementationUtilities::HandleScopeData* current = local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
channel.cc 107 ASSERT(worker_thread_ == talk_base::Thread::Current());
120 ASSERT(worker_thread_ == talk_base::Thread::Current());
181 talk_base::Thread::Current()));
239 ASSERT(worker_thread_ == talk_base::Thread::Current());
257 if (talk_base::Thread::Current() != worker_thread_) {
423 ASSERT(worker_thread_ == talk_base::Thread::Current());
433 ASSERT(worker_thread_ == talk_base::Thread::Current());
443 ASSERT(worker_thread_ == talk_base::Thread::Current());
454 ASSERT(worker_thread_ == talk_base::Thread::Current());
465 ASSERT(worker_thread_ == talk_base::Thread::Current());
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_maos_vbtmp.h 74 tc2 = (GLuint (*)[4])&ctx->Current.Attrib[VERT_ATTRIB_TEX2];
91 tc1 = (GLuint (*)[4])&ctx->Current.Attrib[VERT_ATTRIB_TEX1];
108 tc0 = (GLuint (*)[4])&ctx->Current.Attrib[VERT_ATTRIB_TEX0];
120 norm = (GLuint (*)[4])&ctx->Current.Attrib[VERT_ATTRIB_NORMAL];
129 col = (GLfloat (*)[4])ctx->Current.Attrib[VERT_ATTRIB_COLOR0];
139 spec = (GLfloat (*)[4])ctx->Current.Attrib[VERT_ATTRIB_COLOR1];
149 fog = (GLfloat (*)[4])ctx->Current.Attrib[VERT_ATTRIB_FOG];
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_maos_vbtmp.h 74 tc2 = (GLuint (*)[4])&ctx->Current.Attrib[VERT_ATTRIB_TEX2];
91 tc1 = (GLuint (*)[4])&ctx->Current.Attrib[VERT_ATTRIB_TEX1];
108 tc0 = (GLuint (*)[4])&ctx->Current.Attrib[VERT_ATTRIB_TEX0];
120 norm = (GLuint (*)[4])&ctx->Current.Attrib[VERT_ATTRIB_NORMAL];
129 col = (GLfloat (*)[4])ctx->Current.Attrib[VERT_ATTRIB_COLOR0];
139 spec = (GLfloat (*)[4])ctx->Current.Attrib[VERT_ATTRIB_COLOR1];
149 fog = (GLfloat (*)[4])ctx->Current.Attrib[VERT_ATTRIB_FOG];
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
p2ptransportchannel.cc 51 // If there is a current writable connection, then we will also try hard to
169 worker_thread_(talk_base::Thread::Current()),
180 ASSERT(worker_thread_ == talk_base::Thread::Current());
207 ASSERT(worker_thread_ == talk_base::Thread::Current());
218 ASSERT(worker_thread_ == talk_base::Thread::Current());
255 ASSERT(worker_thread_ == talk_base::Thread::Current());
301 ASSERT(worker_thread_ == talk_base::Thread::Current());
357 ASSERT(worker_thread_ == talk_base::Thread::Current());
372 ASSERT(worker_thread_ == talk_base::Thread::Current());
531 // the number of available connections and the current state so that w
    [all...]
  /art/compiler/dex/
mir_analysis.cc 958 if ((GetNumDalvikInsns() > Runtime::Current()->GetSmallMethodThreshold()) &&
984 if ((GetNumDalvikInsns() > Runtime::Current()->GetSmallMethodThreshold()) &&
1006 // Set up compilation cutoffs based on current filter mode.
1011 small_cutoff = Runtime::Current()->GetSmallMethodThreshold();
1012 default_cutoff = Runtime::Current()->GetLargeMethodThreshold();
1015 small_cutoff = Runtime::Current()->GetTinyMethodThreshold();
1016 default_cutoff = Runtime::Current()->GetSmallMethodThreshold();
1019 small_cutoff = Runtime::Current()->GetHugeMethodThreshold();
1020 default_cutoff = Runtime::Current()->GetHugeMethodThreshold();
1033 if (GetNumDalvikInsns() > Runtime::Current()->GetHugeMethodThreshold())
    [all...]
  /external/bison/examples/calc++/
calc++-parser.cc 78 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
79 If N is 0, then set CURRENT to the empty location which ends
83 # define YYLLOC_DEFAULT(Current, Rhs, N) \
87 (Current).begin = YYRHSLOC (Rhs, 1).begin; \
88 (Current).end = YYRHSLOC (Rhs, N).end; \
92 (Current).begin = (Current).end = YYRHSLOC (Rhs, 0).end; \
462 | yydefault -- do the default action for the current state. |
672 /* Pop the current state because it cannot handle the error token. */
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stunport_unittest.cc 58 socket_factory_(talk_base::Thread::Current()),
60 talk_base::Thread::Current(), kStunAddr)),
70 talk_base::Thread::Current(), &socket_factory_, &network_,
86 talk_base::Thread::Current(), &socket_factory_,
203 talk_base::Thread::Current()->ProcessMessages(1000);
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_BypassMix.c 77 LVM_INT32 Current;
111 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[0]);
112 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[0],(LVM_INT32)(Gain >> 15),Current);
119 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[1]);
120 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[1],(LVM_INT32)(Gain >> 15),Current);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_pair_schedule.c 134 struct schedule_instruction * Current;
135 /** Array of the previous writers of Current's destination register
844 * current index, then it is OK to read from more than one component.
1155 if (*v && (*v)->Writer == s->Current) {
1161 * register. In this case, the current instruction (s->Current)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_schedule.c 134 struct schedule_instruction * Current;
135 /** Array of the previous writers of Current's destination register
844 * current index, then it is OK to read from more than one component.
1155 if (*v && (*v)->Writer == s->Current) {
1161 * register. In this case, the current instruction (s->Current)
    [all...]

Completed in 285 milliseconds

1 2 3 4 5 67 8 91011>>