HomeSort by relevance Sort by last modified time
    Searched refs:Current (Results 126 - 150 of 773) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/base/
gunit.h 43 talk_base::Thread::Current()->ProcessMessages(1);
53 talk_base::Thread::Current()->ProcessMessages(1); \
testclient_unittest.cc 38 Thread *main = Thread::Current();
52 Thread *main = Thread::Current();
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
typingmonitor_unittest.cc 40 vc_.reset(new VoiceChannel(talk_base::Thread::Current(), &engine_,
46 talk_base::Thread::Current(),
  /external/chromium_org/third_party/webrtc/base/
asyncinvoker.h 94 this, Thread::Current(), functor, callback, callback_host);
108 this, Thread::Current(), functor, callback, callback_host);
gunit.h 26 rtc::Thread::Current()->ProcessMessages(1);
36 rtc::Thread::Current()->ProcessMessages(1); \
testclient_unittest.cc 21 Thread *main = Thread::Current();
35 Thread *main = Thread::Current();
  /external/chromium_org/v8/src/
hydrogen-canonicalize.cc 18 HInstruction* instr = it.Current();
48 HInstruction* instr = it.Current();
  /art/runtime/gc/space/
large_object_space_test.cc 52 mirror::Object* obj = los->Alloc(Thread::Current(), request_size, &allocation_size,
80 ASSERT_GE(los->Free(Thread::Current(), obj), request_size);
88 mirror::Object* obj = los->Alloc(Thread::Current(), 100 * MB, &bytes_allocated, nullptr);
90 los->Free(Thread::Current(), obj);
134 Thread* self = Thread::Current();
  /art/runtime/
monitor_test.cc 63 Runtime::Current()->GetHeap()->SetIdealFootprint(1 * GB);
84 size_t mem = Runtime::Current()->GetHeap()->GetFreeMemory();
294 StackHandleScope<3> hs(Thread::Current());
296 ScopedObjectAccess soa(Thread::Current());
297 test->object_ = hs.NewHandle(mirror::String::AllocFromModifiedUtf8(Thread::Current(),
299 test->watchdog_object_ = hs.NewHandle(mirror::String::AllocFromModifiedUtf8(Thread::Current(),
312 Thread* self = Thread::Current();
327 Thread* self = Thread::Current();
339 test->complete_barrier_->Wait(Thread::Current());
344 Thread* self = Thread::Current();
    [all...]
transaction_test.cc 30 ScopedObjectAccess soa(Thread::Current());
37 Runtime::Current()->EnterTransactionMode(&transaction);
41 Runtime::Current()->ExitTransactionMode();
49 ScopedObjectAccess soa(Thread::Current());
63 Runtime::Current()->EnterTransactionMode(&transaction);
67 Runtime::Current()->ExitTransactionMode();
77 ScopedObjectAccess soa(Thread::Current());
86 Runtime::Current()->EnterTransactionMode(&transaction);
93 Runtime::Current()->GetHeap()->GetCurrentAllocator())));
96 Runtime::Current()->ExitTransactionMode()
    [all...]
runtime.cc 161 Thread* self = Thread::Current();
217 if (Runtime::Current() == NULL) {
221 Thread* self = Thread::Current();
252 Runtime* runtime = Runtime::Current();
276 MutexLock mu(Thread::Current(), *Locks::abort_lock_);
287 if (Runtime::Current() != NULL && Runtime::Current()->abort_ != NULL) {
289 Runtime::Current()->abort_();
316 ScopedThreadStateChange tsc(Thread::Current(), kNative);
344 if (Runtime::Current()->UseCompileTimeClassPath())
    [all...]
thread_list.cc 51 // Detach the current thread if necessary. If we failed to start, there might not be any threads.
52 // We need to detach the current thread here in case there's another thread waiting to join with
56 Thread* self = Thread::Current();
61 Runtime::Current()->DetachCurrentThread();
88 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
98 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
123 Thread* self = Thread::Current();
157 << "self: <<" << *Thread::Current();
166 Runtime* runtime = Runtime::Current();
196 Thread* self = Thread::Current();
    [all...]
  /art/compiler/
image_test.cc 67 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
81 ScopedObjectAccess soa(Thread::Current());
116 gc::Heap* heap = Runtime::Current()->GetHeap();
154 runtime_.reset(Runtime::Current());
157 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
158 ScopedObjectAccess soa(Thread::Current());
162 gc::Heap* heap = Runtime::Current()->GetHeap();
  /art/runtime/base/
timing_logger.cc 50 MutexLock mu(Thread::Current(), lock_);
58 MutexLock mu(Thread::Current(), lock_);
63 MutexLock mu(Thread::Current(), lock_);
70 MutexLock mu(Thread::Current(), lock_);
82 MutexLock mu(Thread::Current(), lock_);
87 MutexLock mu(Thread::Current(), lock_);
99 const size_t max_buckets = Runtime::Current()->GetHeap()->IsLowMemoryMode() ?
  /art/compiler/optimizing/
ssa_liveness_analysis.cc 30 static bool IsLoopExit(HLoopInformation* current, HLoopInformation* to) {
31 // `to` is either not part of a loop, or `current` is an inner loop of `to`.
32 return to == nullptr || (current != to && current->IsIn(*to));
71 // Nothing to do. Current order is fine.
105 HBasicBlock* block = it.Current();
109 HInstruction* current = it.Current(); local
110 current->Accept(codegen_->GetLocationBuilder());
111 LocationSummary* locations = current->GetLocations()
126 HInstruction* current = it.Current(); local
191 HInstruction* current = instructions_from_ssa_index_.Get(idx); local
196 HInstruction* current = it.Current(); local
231 HInstruction* current = it.Current(); local
247 HInstruction* current = instructions_from_ssa_index_.Get(idx); local
    [all...]
ssa_builder.cc 29 VisitBasicBlock(it.Current());
36 HPhi* phi = it.Current()->AsPhi();
53 HInstruction* current = it.Current(); local
54 if (current->AsLocal() != nullptr) {
55 current->GetBlock()->RemoveInstruction(current);
93 HInstruction* current = ValueOfLocal(block->GetPredecessors().Get(i), local); local
94 if (current == nullptr) {
97 } else if (current != value)
    [all...]
  /art/runtime/mirror/
object_array-inl.h 50 Runtime::Current()->GetHeap()->GetCurrentAllocator());
56 DCHECK(Thread::Current()->IsExceptionPending());
76 if (Runtime::Current()->IsActiveTransaction()) {
89 DCHECK(Thread::Current()->IsExceptionPending());
151 Runtime::Current()->GetHeap()->WriteBarrierArray(this, dst_pos, count);
183 Runtime::Current()->GetHeap()->WriteBarrierArray(this, dst_pos, count);
227 Runtime::Current()->GetHeap()->WriteBarrierArray(this, dst_pos, count);
231 Thread* self = Thread::Current();
250 gc::Heap* heap = Runtime::Current()->GetHeap();
art_method-inl.h 193 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
206 DCHECK(!Runtime::Current()->IsStarted());
213 DCHECK(!Runtime::Current()->IsStarted());
219 DCHECK(!Runtime::Current()->IsStarted());
225 DCHECK(!Runtime::Current()->IsStarted());
234 Runtime* runtime = Runtime::Current();
290 DCHECK(!Runtime::Current()->IsStarted());
295 DCHECK(!Runtime::Current()->IsStarted());
307 Runtime* runtime = Runtime::Current();
319 bool result = this == Runtime::Current()->GetResolutionMethod()
    [all...]
  /art/compiler/utils/
scoped_arena_allocator.h 50 struct Current;
52 struct StatsAndPool : TaggedStats<Peak>, TaggedStats<Current> {
62 return static_cast<TaggedStats<Current>*>(&stats_and_pool_);
  /art/runtime/native/
java_lang_VMClassLoader.cc 34 ClassLinker* cl = Runtime::Current()->GetClassLinker();
54 return Runtime::Current()->GetClassLinker()->GetBootClassPath().size();
76 const std::vector<const DexFile*>& path = Runtime::Current()->GetClassLinker()->GetBootClassPath();
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portallocatorsessionproxy_unittest.cc 105 : socket_factory_(talk_base::Thread::Current()),
106 allocator_(talk_base::Thread::Current(), NULL),
108 talk_base::Thread::Current(), &socket_factory_,
p2ptransportchannel.cc 56 // If there is a current writable connection, then we will also try hard to
162 worker_thread_(talk_base::Thread::Current()),
178 ASSERT(worker_thread_ == talk_base::Thread::Current());
219 ASSERT(worker_thread_ == talk_base::Thread::Current());
230 ASSERT(worker_thread_ == talk_base::Thread::Current());
246 ASSERT(worker_thread_ == talk_base::Thread::Current());
257 ASSERT(worker_thread_ == talk_base::Thread::Current());
276 ASSERT(worker_thread_ == talk_base::Thread::Current());
300 ASSERT(worker_thread_ == talk_base::Thread::Current());
317 ASSERT(worker_thread_ == talk_base::Thread::Current());
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program.c 95 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
97 assert(ctx->VertexProgram.Current);
107 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
109 assert(ctx->FragmentProgram.Current);
116 _mesa_reference_geomprog(ctx, &ctx->GeometryProgram.Current,
124 ctx->ATIFragmentShader.Current = ctx->Shared->DefaultFragmentShader;
125 assert(ctx->ATIFragmentShader.Current);
126 ctx->ATIFragmentShader.Current->RefCount++;
138 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current, NULL);
142 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current, NULL)
    [all...]
  /external/mesa3d/src/mesa/program/
program.c 95 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
97 assert(ctx->VertexProgram.Current);
107 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
109 assert(ctx->FragmentProgram.Current);
116 _mesa_reference_geomprog(ctx, &ctx->GeometryProgram.Current,
124 ctx->ATIFragmentShader.Current = ctx->Shared->DefaultFragmentShader;
125 assert(ctx->ATIFragmentShader.Current);
126 ctx->ATIFragmentShader.Current->RefCount++;
138 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current, NULL);
142 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current, NULL)
    [all...]
  /art/compiler/dex/quick/
dex_file_to_method_inliner_map.cc 41 Thread* self = Thread::Current();

Completed in 534 milliseconds

1 2 3 4 56 7 8 91011>>