/external/libunwind/tests/ |
test-ptrace-misc.c | 36 pid_t self; variable 102 kill (self, SIGUSR1); /* tell test-ptrace to start single-stepping */ 104 kill (self, SIGUSR2); /* tell test-ptrace to stop single-stepping */ 116 self = getpid ();
|
/external/libweave/src/notification/ |
xmpp_stream_parser.cc | 35 auto self = static_cast<XmppStreamParser*>(user_data); local 42 self->OnOpenElement(element, std::move(attributes)); 47 auto self = static_cast<XmppStreamParser*>(user_data); local 48 self->OnCloseElement(element); 54 auto self = static_cast<XmppStreamParser*>(user_data); local 55 self->OnCharData(std::string{content, static_cast<size_t>(length)});
|
/external/selinux/checkpolicy/ |
checkpolicy.h | 10 int self; member in struct:te_assert
|
/external/skia/include/private/ |
GrSingleOwner.h | 32 SkThreadID self = SkGetThreadID(); local 33 SkASSERT(fOwner == self || fOwner == kIllegalThreadID); 35 fOwner = self;
|
/external/webrtc/webrtc/common_audio/signal_processing/ |
real_fft.c | 22 struct RealFFT* self = NULL; local 28 self = malloc(sizeof(struct RealFFT)); 29 if (self == NULL) { 32 self->order = order; 34 return self; 37 void WebRtcSpl_FreeRealFFT(struct RealFFT* self) { 38 if (self != NULL) { 39 free(self); 47 int WebRtcSpl_RealForwardFFT(struct RealFFT* self, 53 int n = 1 << self->order [all...] |
/external/webrtc/webrtc/common_audio/vad/ |
webrtc_vad.c | 26 VadInstT* self = (VadInstT*)malloc(sizeof(VadInstT)); local 29 self->init_flag = 0; 31 return (VadInst*)self; 46 VadInstT* self = (VadInstT*) handle; local 51 if (self->init_flag != kInitCheck) { 55 return WebRtcVad_set_mode_core(self, mode); 61 VadInstT* self = (VadInstT*) handle; local 67 if (self->init_flag != kInitCheck) { 78 vad = WebRtcVad_CalcVad48khz(self, audio_frame, frame_length); 80 vad = WebRtcVad_CalcVad32khz(self, audio_frame, frame_length) [all...] |
/prebuilts/gdb/darwin-x86/include/python2.7/ |
weakrefobject.h | 67 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self); variable
|
/prebuilts/gdb/linux-x86/include/python2.7/ |
weakrefobject.h | 67 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self); variable
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
weakrefobject.h | 67 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self); variable
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
weakrefobject.h | 67 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self); variable
|
/system/core/healthd/ |
BatteryPropertiesRegistrar.cpp | 81 IPCThreadState* self = IPCThreadState::self(); local 82 const int pid = self->getCallingPid(); 83 const int uid = self->getCallingUid();
|
/system/update_engine/payload_generator/ |
xz_android.cc | 38 auto* self = local 40 *size = std::min(*size, self->data_.size() - self->pos_); 41 memcpy(buf, self->data_.data() + self->pos_, *size); 42 self->pos_ += *size; 59 auto* self = local 62 self->data_->reserve(self->data_->size() + size); 63 self->data_->insert(self->data_->end(), buffer, buffer + size) [all...] |
/art/runtime/arch/arm64/ |
fault_handler_arm64.cc | 48 Thread* self = Thread::Current(); local 49 CHECK(self != nullptr); // This will cause a SIGABRT if self is null. 51 sc->regs[0] = reinterpret_cast<uintptr_t>(*self->GetNestedSignalState());
|
/art/runtime/ |
barrier_test.cc | 35 void Run(Thread* self) { 36 LOG(INFO) << "Before barrier" << *self; 38 barrier_->Wait(self); 40 LOG(INFO) << "After barrier" << *self; 62 Thread* self = Thread::Current(); local 69 thread_pool.AddTask(self, new CheckWaitTask(&barrier, &count1, &count2)); 71 thread_pool.StartWorkers(self); 73 timeout_barrier.Increment(self, 1, 100); // sleep 100 msecs 78 barrier.Wait(self); 80 thread_pool.Wait(self, true, false) 113 Thread* self = Thread::Current(); local [all...] |
jni_env_ext.h | 37 static JNIEnvExt* Create(Thread* self, JavaVMExt* vm); 60 Thread* const self; member in struct:art::JNIEnvExt 107 JNIEnvExt(Thread* self, JavaVMExt* vm);
|
/art/runtime/entrypoints/quick/ |
quick_jni_entrypoints.cc | 26 Thread* self ATTRIBUTE_UNUSED) { 33 extern uint32_t JniMethodStart(Thread* self) { 34 JNIEnvExt* env = self->GetJniEnv(); 38 ArtMethod* native_method = *self->GetManagedStack()->GetTopQuickFrame(); 41 self->TransitionFromRunnableToSuspended(kNative); 46 extern uint32_t JniMethodStartSynchronized(jobject to_lock, Thread* self) { 47 self->DecodeJObject(to_lock)->MonitorEnter(self); 48 return JniMethodStart(self); 52 static void GoToRunnable(Thread* self) NO_THREAD_SAFETY_ANALYSIS 126 GoToRunnable(self); variable [all...] |
/art/runtime/gc/ |
task_processor_test.cc | 36 virtual void Run(Thread* self) OVERRIDE { 38 task_processor_->AddTask(self, 55 virtual void Run(Thread* self) OVERRIDE { 56 task_processor_->RunAllTasks(self); 67 Thread* const self = Thread::Current(); local 72 task_processor.AddTask(self, new RecursiveTask(&task_processor, &counter, kRecursion)); 73 task_processor.Start(self); 75 thread_pool.AddTask(self, new WorkUntilDoneTask(&task_processor, &done_running)); 76 thread_pool.StartWorkers(self); 83 task_processor.Stop(self); 121 Thread* const self = Thread::Current(); local [all...] |
/art/runtime/native/ |
java_lang_VMClassLoader.cc | 40 mirror::Class* c = cl->LookupClass(soa.Self(), descriptor.c_str(), descriptor_hash, loader); 47 Thread* self = soa.Self(); local 49 self->DecodeJObject(WellKnownClasses::java_lang_ExceptionInInitializerError)->AsClass(); 51 self->DecodeJObject(WellKnownClasses::java_lang_IllegalAccessError)->AsClass(); 53 self->DecodeJObject(WellKnownClasses::java_lang_NoClassDefFoundError)->AsClass(); 54 mirror::Class* exception = self->GetException()->GetClass(); 56 self->ThrowNewWrappedException("Ljava/lang/ClassNotFoundException;", 63 StackHandleScope<1> hs(soa.Self()); 64 cl->FindClassInPathClassLoader(soa, soa.Self(), descriptor.c_str(), descriptor_hash [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ForwardingSortedMap.java | 133 SortedMap<Object, V> self = (SortedMap<Object, V>) this; local 134 Object ceilingKey = self.tailMap(key).firstKey();
|
/external/webrtc/webrtc/voice_engine/ |
voice_engine_impl.cc | 34 VoiceEngineImpl* self = new VoiceEngineImpl(config, owns_config); local 35 if (self != NULL) { 36 self->AddRef(); // First reference. Released in VoiceEngine::Delete. 39 return self; 52 "VoiceEngineImpl self deleting (voiceEngine=0x%p)", this);
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
AsciiHprofWriter.java | 73 out.printf("rank self accum count trace method\n"); 80 double self = (double)count/(double)total; local 81 accum += self; 85 rank, self*100, accum*100, count, stackTrace.stackTraceId,
|
/system/weaved/buffet/ |
avahi_mdns_client.cc | 142 AvahiMdnsClient* self = static_cast<AvahiMdnsClient*>(userdata); local 143 self->RepublishService();
|
/libcore/ojluni/src/main/java/sun/security/ssl/ |
BaseSSLSocketImpl.java | 51 * Normally "self" is "this" ... but not when this connection is 58 final Socket self; field in class:BaseSSLSocketImpl 62 this.self = this; 67 this.self = socket; 98 if (self == this) { 101 return self.getChannel(); 113 if (self == this) { 127 if (self == this) { 130 return self.getLocalSocketAddress(); 139 if (self == this) [all...] |
/art/runtime/arch/ |
arch_test.cc | 46 Thread* const self = Thread::Current(); variable 47 ScopedObjectAccess soa(self); // So we can create callee-save methods.
|
/art/runtime/arch/arm/ |
fault_handler_arm.cc | 58 Thread* self = Thread::Current(); local 59 CHECK(self != nullptr); // This will cause a SIGABRT if self is null. 61 sc->arm_r0 = reinterpret_cast<uintptr_t>(*self->GetNestedSignalState());
|