HomeSort by relevance Sort by last modified time
    Searched refs:self_ (Results 1 - 25 of 46) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_processing/aec/
system_delay_unittest.cc 45 Aec* self_; member in class:__anon27007::SystemDelayTest
57 : handle_(NULL), self_(NULL), samples_per_frame_(0) {
71 self_ = reinterpret_cast<Aec*>(handle_);
101 EXPECT_EQ(0, WebRtcAec_system_delay(self_->aec));
128 WebRtcAec_system_delay(self_->aec));
139 if (WebRtcAec_delay_agnostic_enabled(self_->aec) == 1) {
145 EXPECT_EQ(0, self_->startup_phase);
153 if (self_->startup_phase == 0) {
163 WebRtcAec_system_delay(self_->aec));
200 WebRtcAec_enable_extended_filter(self_->aec, extended_filter)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
attribute.swg 152 template < class C > inline AttributeType %mangle(Class) ##_## AttributeName ## _get(const C* self_) {
155 template < class C > inline AttributeType %mangle(Class) ##_## AttributeName ## _get(C* self_) {
158 template < class C > inline void %mangle(Class) ##_## AttributeName ## _set(C* self_, AttributeType val_) {
164 #define %mangle(Class) ##_## AttributeName ## _get(self_) GetMethodCall
165 #define %mangle(Class) ##_## AttributeName ## _set(self_, val_) SetMethodCall
179 template < class C > inline AttributeType %mangle(Class) ##_## AttributeName ## _get(const C* self_) {
182 template < class C > inline AttributeType %mangle(Class) ##_## AttributeName ## _get(C* self_) {
188 #define %mangle(Class) ##_## AttributeName ## _get(self_) GetMethodCall
198 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, SetMethod, self_->GetMethod(), self_->SetMethod(val_)
    [all...]
  /art/runtime/
object_lock.cc 25 ObjectLock<T>::ObjectLock(Thread* self, Handle<T> object) : self_(self), obj_(object) {
27 obj_->MonitorEnter(self_);
32 obj_->MonitorExit(self_);
37 Monitor::Wait(self_, obj_.Get(), 0, 0, false, kWaiting);
42 obj_->Notify(self_);
47 obj_->NotifyAll(self_);
scoped_thread_state_change.h 38 : self_(self), thread_state_(new_thread_state), expected_has_no_thread_(false) {
39 if (UNLIKELY(self_ == nullptr)) {
43 CHECK(runtime == nullptr || !runtime->IsStarted() || runtime->IsShuttingDown(self_));
51 self_->TransitionFromSuspendedToRunnable();
53 self_->TransitionFromRunnableToSuspended(new_thread_state);
56 self_->SetState(new_thread_state);
63 if (UNLIKELY(self_ == nullptr)) {
72 self_->TransitionFromSuspendedToRunnable();
74 self_->TransitionFromRunnableToSuspended(old_thread_state_);
77 self_->SetState(old_thread_state_)
93 Thread* const self_; member in class:art::ScopedThreadStateChange
199 Thread* const self_; member in class:art::ScopedObjectAccessAlreadyRunnable
298 Thread* const self_; member in class:art::ScopedThreadSuspension
    [all...]
object_lock.h 42 Thread* const self_; member in class:art::ObjectLock
handle_scope.h 162 return self_;
177 Thread* const self_; variable
199 self_(self),
214 new StackHandleScope<kNumReferencesPerScope>(self_);
225 Thread* const self_; member in class:art::StackHandleScopeCollection
handle_scope-inl.h 31 : HandleScope(self->GetTopHandleScope(), kNumReferences), self_(self), pos_(0) {
42 self_->PushHandleScope(this);
47 HandleScope* top_handle_scope = self_->PopHandleScope();
50 Locks::mutator_lock_->AssertSharedHeld(self_);
quick_exception_handler.cc 41 : self_(self),
145 self_->DumpStack(LOG(INFO) << "Delivering exception: " << PrettyTypeOf(exception)
148 StackHandleScope<1> hs(self_);
152 CatchBlockStackVisitor visitor(self_, context_, &exception_ref, this);
167 DCHECK(!self_->IsExceptionPending());
170 self_->SetException(exception_ref.Get());
218 self_->DumpStack(LOG(INFO) << "Setting catch phis: ");
488 self_->DumpStack(LOG(INFO) << "Deoptimizing: ");
491 DeoptimizeStackVisitor visitor(self_, context_, this, false);
495 self_->SetException(Thread::GetDeoptimizationException())
    [all...]
quick_exception_handler.h 112 Thread* const self_; member in class:art::QuickExceptionHandler
thread.h 1547 Thread* const self_; member in class:art::ScopedAssertNoThreadSuspension
1562 Thread* const self_; member in class:art::ScopedStackedShadowFramePusher
1579 Thread* const self_; member in class:art::ScopedDebugDisallowReadBarriers
    [all...]
  /art/runtime/gc/
scoped_gc_critical_section.cc 30 : self_(self) {
35 self_->EndAssertNoThreadSuspension(old_cause_);
36 Runtime::Current()->GetHeap()->FinishGC(self_, collector::kGcTypeNone);
scoped_gc_critical_section.h 40 Thread* const self_; member in class:art::gc::ScopedGCCriticalSection
  /art/runtime/entrypoints/quick/
callee_save_frame.h 42 SHARED_REQUIRES(Locks::mutator_lock_) : self_(self), exit_check_(exit_check) {
49 : self_(kIsDebugBuild ? Thread::Current() : nullptr), exit_check_(kIsDebugBuild) {
63 Locks::mutator_lock_->AssertSharedHeld(self_);
64 self_->VerifyStack();
68 Locks::mutator_lock_->AssertSharedHeld(self_);
69 self_->VerifyStack();
72 Thread* const self_; member in class:art::ScopedQuickEntrypointChecks
  /cts/tests/aslr/src/
AslrMallocTest.cpp 57 std::string self_; member in class:AslrMallocTest
69 self_ = path;
89 ASSERT_TRUE(execl(self_.c_str(), self_.c_str(), argPrint.c_str(),
  /external/v8/test/mjsunit/
arguments-apply-deopt.js 41 var sssss = c.self_;
49 y.apply({ self_ : 3 });
50 y.apply({ self_ : 3 });
51 y.apply({ self_ : 3 });
55 assertEquals(y.apply({ self_ : 3, uuu : 4 }), 3);
  /art/runtime/base/
mutex.h 484 MutexLock(Thread* self, Mutex& mu) ACQUIRE(mu) : self_(self), mu_(mu) {
485 mu_.ExclusiveLock(self_);
489 mu_.ExclusiveUnlock(self_);
493 Thread* const self_; member in class:art::MutexLock
505 self_(self), mu_(mu) {
506 mu_.SharedLock(self_);
510 mu_.SharedUnlock(self_);
514 Thread* const self_; member in class:art::ReaderMutexLock
527 self_(self), mu_(mu) {
528 mu_.ExclusiveLock(self_);
536 Thread* const self_; member in class:art::WriterMutexLock
    [all...]
  /frameworks/base/packages/MtpDocumentsProvider/jni/
com_android_mtp_AppFuse.cpp 113 jobject self_; member in class:__anon28812::AppFuse
121 env_(env), self_(self), handle_counter_(0) {}
326 return env_->CallIntMethod(self_, app_fuse_close_file_handle, file_handle_to_jlong(in->fh));
332 return env_->CallIntMethod(self_, app_fuse_flush_file_handle, file_handle_to_jlong(in->fh));
356 self_,
367 self_,
376 env_, static_cast<jbyteArray>(env_->GetObjectField(self_, app_fuse_buffer)));
394 static_cast<jbyteArray>(env_->GetObjectField(self_, app_fuse_buffer)));
403 self_,
  /art/runtime/gc/collector/
semi_space.cc 64 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
99 self_(nullptr),
153 self_ = Thread::Current();
176 CHECK(Locks::mutator_lock_->IsExclusiveHeld(self_));
178 Locks::mutator_lock_->AssertExclusiveHeld(self_);
181 ThreadState old_state = self_->SetStateUnsafe(kRunnable);
187 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable);
214 Locks::mutator_lock_->AssertExclusiveHeld(self_);
238 heap_->RevokeAllThreadLocalAllocationStacks(self_);
242 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_)
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_unittest.cc 52 DelayEstimator* self_; member in class:__anon27058::DelayEstimatorTest
68 self_(NULL),
95 self_ = reinterpret_cast<DelayEstimator*>(handle_);
105 self_ = NULL;
121 EXPECT_EQ(0, self_->near_spectrum_initialized);
402 EXPECT_EQ(0, self_->near_spectrum_initialized);
405 EXPECT_EQ(1, self_->near_spectrum_initialized);
418 EXPECT_EQ(0, self_->near_spectrum_initialized);
421 EXPECT_EQ(1, self_->near_spectrum_initialized);
  /art/runtime/mirror/
object.cc 111 : self_(self), orig_(orig), num_bytes_(num_bytes) {
116 Object::CopyObject(self_, obj, orig_->Get(), num_bytes_);
120 Thread* const self_; member in class:art::mirror::CopyObjectVisitor
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_richcmp.py 195 def __lt__(self_, other): return 0
196 def __gt__(self_, other): return 0
197 def __eq__(self_, other): return 0
198 def __le__(self_, other): self.fail("This shouldn't happen")
199 def __ge__(self_, other): self.fail("This shouldn't happen")
200 def __ne__(self_, other): self.fail("This shouldn't happen")
201 def __cmp__(self_, other): raise RuntimeError, "expected"
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_richcmp.py 195 def __lt__(self_, other): return 0
196 def __gt__(self_, other): return 0
197 def __eq__(self_, other): return 0
198 def __le__(self_, other): self.fail("This shouldn't happen")
199 def __ge__(self_, other): self.fail("This shouldn't happen")
200 def __ne__(self_, other): self.fail("This shouldn't happen")
201 def __cmp__(self_, other): raise RuntimeError, "expected"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 195 def __lt__(self_, other): return 0
196 def __gt__(self_, other): return 0
197 def __eq__(self_, other): return 0
198 def __le__(self_, other): self.fail("This shouldn't happen")
199 def __ge__(self_, other): self.fail("This shouldn't happen")
200 def __ne__(self_, other): self.fail("This shouldn't happen")
201 def __cmp__(self_, other): raise RuntimeError, "expected"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 195 def __lt__(self_, other): return 0
196 def __gt__(self_, other): return 0
197 def __eq__(self_, other): return 0
198 def __le__(self_, other): self.fail("This shouldn't happen")
199 def __ge__(self_, other): self.fail("This shouldn't happen")
200 def __ne__(self_, other): self.fail("This shouldn't happen")
201 def __cmp__(self_, other): raise RuntimeError, "expected"
  /prebuilts/gdb/darwin-x86/include/python2.7/
pystate.h 192 typedef struct _frame *(*PyThreadFrameGetter)(PyThreadState *self_);

Completed in 828 milliseconds

1 2