/art/runtime/gc/ |
reference_processor.cc | 52 void ReferenceProcessor::DisableSlowPath(Thread* self) { 54 condition_.Broadcast(self); 57 void ReferenceProcessor::BroadcastForSlowPath(Thread* self) { 59 MutexLock mu(self, *Locks::reference_processor_lock_); 60 condition_.Broadcast(self); 63 mirror::Object* ReferenceProcessor::GetReferent(Thread* self, mirror::Reference* reference) { 64 if (!kUseReadBarrier || self->GetWeakRefAccessEnabled()) { 75 MutexLock mu(self, *Locks::reference_processor_lock_); 77 (kUseReadBarrier && !self->GetWeakRefAccessEnabled())) { 101 condition_.WaitHoldingLocks(self); 123 Thread* self = Thread::Current(); local 198 Thread* self = Thread::Current(); local 264 Thread* self = Thread::Current(); local [all...] |
/art/runtime/jdwp/ |
object_registry.cc | 50 Thread* const self = Thread::Current(); local 51 StackHandleScope<1> hs(self); 79 Thread* const self = Thread::Current(); local 80 self->AssertNoPendingException(); 83 Locks::thread_list_lock_->AssertNotHeld(self); 84 Locks::thread_suspend_count_lock_->AssertNotHeld(self); 89 ScopedObjectAccessUnchecked soa(self); 90 MutexLock mu(soa.Self(), lock_); 92 if (ContainsLocked(soa.Self(), obj_h.Get(), identity_hash_code, &entry)) { 121 bool ObjectRegistry::ContainsLocked(Thread* self, mirror::Object* o, int32_t identity_hash_code 138 Thread* const self = Thread::Current(); local 171 Thread* self = Thread::Current(); local 187 Thread* self = Thread::Current(); local 196 Thread* self = Thread::Current(); local 204 Thread* self = Thread::Current(); local 213 Thread* self = Thread::Current(); local 224 Thread* self = Thread::Current(); local 234 Thread* self = Thread::Current(); local 248 Thread* self = Thread::Current(); local [all...] |
/art/runtime/jit/ |
debugger_interface.cc | 119 Thread* self = Thread::Current(); local 120 MutexLock mu(self, g_jit_debug_mutex); 125 Thread* self = Thread::Current(); local 126 MutexLock mu(self, g_jit_debug_mutex); 135 Thread* self = Thread::Current(); local 136 MutexLock mu(self, g_jit_debug_mutex); 144 Thread* self = Thread::Current(); local 145 MutexLock mu(self, g_jit_debug_mutex);
|
/art/runtime/ |
read_barrier-inl.h | 37 Thread* const self = Thread::Current(); local 38 if (self != nullptr) { 39 CHECK_EQ(self->GetDebugDisallowReadBarrierCount(), 0u); 103 Thread* const self = Thread::Current(); local 104 if (self != nullptr) { 105 CHECK_EQ(self->GetDebugDisallowReadBarrierCount(), 0u); 110 Thread* self = Thread::Current(); local 111 if (self != nullptr && self->GetIsGcMarking()) { 120 Thread* self = Thread::Current() local 151 Thread* self = Thread::Current(); local 161 Thread* self = Thread::Current(); local [all...] |
signal_catcher.cc | 48 // On Android, /proc/self/cmdline will have been rewritten to something like "system_server". 51 if (ReadFileToString("/proc/self/cmdline", ¤t_cmd_line)) { 77 Thread* self = Thread::Current(); local 78 MutexLock mu(self, lock_); 80 cond_.Wait(self); 148 if (ReadFileToString("/proc/self/maps", &maps)) { 149 os << "/proc/self/maps:\n" << maps; 161 int SignalCatcher::WaitForSignal(Thread* self, SignalSet& signals) { 162 ScopedThreadStateChange tsc(self, kWaitingInMainSignalCatcherLoop); 172 LOG(INFO) << *self << ": reacting to signal " << signal_number 189 Thread* self = Thread::Current(); local [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/ |
route53 | 162 self = sys.modules['__main__'] 165 cmd = getattr(self, fnc) 176 for cname in dir(self): 178 cmd = getattr(self, cname) 189 self = sys.modules['__main__'] variable 192 cmd = getattr(self, sys.argv[1])
|
/external/dbus/dbus/ |
dbus-socket-set-epoll.c | 58 DBusSocketSetEpoll *self = socket_set_epoll_cast (set); local 60 if (self == NULL) 63 if (self->epfd != -1) 64 close (self->epfd); 66 dbus_free (self); 72 DBusSocketSetEpoll *self; local 74 self = dbus_new0 (DBusSocketSetEpoll, 1); 76 if (self == NULL) 79 self->parent.cls = &_dbus_socket_set_epoll_class; 81 self->epfd = epoll_create1 (EPOLL_CLOEXEC) 143 DBusSocketSetEpoll *self = socket_set_epoll_cast (set); local 195 DBusSocketSetEpoll *self = socket_set_epoll_cast (set); local 234 DBusSocketSetEpoll *self = socket_set_epoll_cast (set); local 269 DBusSocketSetEpoll *self = socket_set_epoll_cast (set); local 293 DBusSocketSetEpoll *self = socket_set_epoll_cast (set); local [all...] |
dbus-socket-set-poll.c | 64 DBusSocketSetPoll *self = socket_set_poll_cast (set); local 66 dbus_free (self->fds); 67 dbus_free (self); 68 _dbus_verbose ("freed socket set %p\n", self); 121 DBusSocketSetPoll *self = socket_set_poll_cast (set); local 125 for (i = 0; i < self->n_fds; i++) 126 _dbus_assert (self->fds[i].fd != fd); 129 if (self->n_reserved >= self->n_allocated) 131 DBusPollFD *new_fds = dbus_realloc (self->fds 167 DBusSocketSetPoll *self = socket_set_poll_cast (set); local 192 DBusSocketSetPoll *self = socket_set_poll_cast (set); local 215 DBusSocketSetPoll *self = socket_set_poll_cast (set); local 274 DBusSocketSetPoll *self = socket_set_poll_cast (set); local [all...] |
/external/google-breakpad/src/client/mac/crash_generation/ |
crash_generation_server.cc | 94 CrashGenerationServer *self = local 96 while (self->WaitForOneMessage()) {}
|
/external/guava/guava/src/com/google/common/collect/ |
ForwardingSortedSet.java | 115 SortedSet<Object> self = (SortedSet<Object>) this; local 116 Object ceiling = self.tailSet(object).first(); 138 SortedSet<Object> self = (SortedSet<Object>) this; local 139 Iterator<Object> iterator = self.tailSet(object).iterator();
|
/external/jemalloc/src/ |
tsd.c | 168 pthread_t self = pthread_self(); local 174 if (iter->thread == self) { 181 block->thread = self;
|
/external/ltrace/ |
lens_enum.c | 52 struct enum_lens *self = (void *)lens; local 54 VECT_DESTROY(&self->entries, struct enum_entry, 124 struct enum_lens *self = (void *)lens; local 126 const char *name = enum_get(self, value, arguments);
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
TabSpecTest.java | 35 TabHost.TabSpec self = spec.setIndicator(view); local 36 assertThat(self, is(spec)); 44 TabHost.TabSpec self = spec.setContent(intent); local 45 assertThat(self, is(spec));
|
/frameworks/native/include/ui/ |
ANativeObjectBase.h | 75 static inline TYPE* getSelf(NATIVE_TYPE* self) { 76 return static_cast<TYPE*>(self); 78 static inline TYPE const* getSelf(NATIVE_TYPE const* self) { 79 return static_cast<TYPE const *>(self); 88 ANativeObjectBase* self = getSelf(base); local 89 self->incStrong(self); 92 ANativeObjectBase* self = getSelf(base); local 93 self->decStrong(self); [all...] |
/hardware/intel/common/libmix/mix_video/src/ |
mixvideocaps.c | 34 mix_videocaps_init (MixVideoCaps * self) 37 self->mix_caps = NULL; 38 self->video_hw_caps = NULL; 40 self->reserved1 = NULL; 41 self->reserved2 = NULL; 42 self->reserved3 = NULL; 43 self->reserved4 = NULL; 74 MixVideoCaps *self = MIX_VIDEOCAPS (obj); local 75 SAFE_FREE (self->mix_caps); 76 SAFE_FREE (self->video_hw_caps) [all...] |
mixvideoinitparams.c | 33 static void mix_videoinitparams_init(MixVideoInitParams * self) { 36 self->display = NULL; 37 self->reserved1 = NULL; 38 self->reserved2 = NULL; 39 self->reserved3 = NULL; 40 self->reserved4 = NULL; 66 MixVideoInitParams *self = MIX_VIDEOINITPARAMS(obj); local 69 if (self->display) { 70 mix_display_unref(self->display); 71 self->display = NULL [all...] |
/libcore/ojluni/src/main/java/java/lang/ |
Enum.java | 182 Enum self = this; local 183 if (self.getClass() != other.getClass() && // optimization 184 self.getDeclaringClass() != other.getDeclaringClass()) 186 return self.ordinal - other.ordinal;
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/ |
SelfParticipantsData.java | 28 * A class that contains the list of all self participants potentially involved in a conversation. 29 * This class contains both active/inactive self entries when there is multi-SIM support. 33 * The map from self participant ids to self-participant data entries in the participants table. 54 * Gets the list of self participants for all subscriptions. 55 * @param activeOnly if set, returns active self entries only (i.e. those with SIMs plugged in). 59 for (final ParticipantData self : mSelfParticipantMap.values()) { 60 if (!activeOnly || self.isActiveSubscription()) { 61 list.add(self); 68 * Gets the self participant corresponding to the given self id 81 final ParticipantData self = getSelfParticipantById(selfId); local [all...] |
SettingsData.java | 40 * Services SettingsFragment's data needs for loading active self participants to display 89 final ParticipantData self) { 90 Assert.isTrue(self.isSelf()); 91 Assert.isTrue(self.isActiveSubscription()); 92 final String displayDetail = TextUtils.isEmpty(self.getDisplayDestination()) ? 94 self.getDisplayDestination(); 96 self.getSubscriptionName()); 98 TYPE_PER_SUBSCRIPTION_SETTINGS, self.getSubId()); 145 LogUtil.w(LogUtil.BUGLE_TAG, "Creating self loader after unbinding"); 159 LogUtil.w(LogUtil.BUGLE_TAG, "Self loader finished after unbinding") [all...] |
/system/connectivity/shill/dbus/ |
chromeos_dhcpcd_listener.cc | 88 ChromeosDHCPCDListener* self = local 90 return self->HandleMessage(connection, raw_message);
|
/external/clang/utils/ |
clang-completion-mode.el | 175 (defun clang-complete-self-insert (arg) 177 (self-insert-command arg) 192 (defun clang-filter-self-insert (arg) 194 (self-insert-command arg) 227 (define-key clang-completion-mode-map char 'clang-complete-self-insert)) 236 (define-key clang-completion-mode-map char 'clang-filter-self-insert))
|
/art/runtime/gc/collector/ |
garbage_collector.cc | 83 Thread* self = Thread::Current(); local 97 if (Locks::mutator_lock_->IsExclusiveHeld(self)) { 105 MutexLock mu(self, pause_histogram_lock_);
|
/art/runtime/gc/space/ |
bump_pointer_space.cc | 103 Thread* self = Thread::Current(); local 104 MutexLock mu(self, *Locks::runtime_shutdown_lock_); 105 MutexLock mu2(self, *Locks::thread_list_lock_); 123 Thread* self = Thread::Current(); local 124 MutexLock mu(self, *Locks::runtime_shutdown_lock_); 125 MutexLock mu2(self, *Locks::thread_list_lock_); 216 Thread* self = Thread::Current(); local 217 MutexLock mu(self, *Locks::runtime_shutdown_lock_); 218 MutexLock mu2(self, *Locks::thread_list_lock_); 234 Thread* self = Thread::Current() local [all...] |
large_object_space_test.cc | 37 Thread* const self = Thread::Current(); local 55 mirror::Object* obj = los->Alloc(self, request_size, &allocation_size, nullptr, 78 ASSERT_FALSE(los->IsZygoteLargeObject(self, obj)); 80 los->SetAllLargeObjectsAsZygoteObjects(self); 83 ASSERT_TRUE(los->IsZygoteLargeObject(self, obj)); 105 mirror::Object* obj = los->Alloc(self, 100 * MB, &bytes_allocated, nullptr, 121 void Run(Thread* self) { 124 mirror::Object* ptr = los_->Alloc(self, size_, &alloc_size, nullptr, 129 los_->Free(self, ptr); 153 Thread* self = Thread::Current() local [all...] |
malloc_space.cc | 234 Thread* self = context->self; local 235 Locks::heap_bitmap_lock_->AssertExclusiveHeld(self); 248 context->freed.bytes += space->FreeList(self, num_ptrs, ptrs);
|