HomeSort by relevance Sort by last modified time
    Searched defs:self (Results 201 - 225 of 437) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
SyncMessageBatch.java 158 final ParticipantData self = ParticipantData.getSelfParticipant(sms.getSubId()); local
160 BugleDatabaseOperations.getOrCreateParticipantInTransaction(db, self);
162 self :
252 final ParticipantData self = ParticipantData.getSelfParticipant(mms.getSubId()); local
254 BugleDatabaseOperations.getOrCreateParticipantInTransaction(db, self);
256 self : ParticipantData.getFromRawPhoneBySimLocale(senderId, mms.getSubId());
296 // conversations, participants (self), participants (sender). We'll query each one
326 + foundConversationId + ", found self participant = "
346 // Always attempt to auto-switch conversation self id for sync/import case.
DownloadMmsAction.java 123 final ParticipantData self = BugleDatabaseOperations local
125 final int subId = self.getSubId();
137 actionParameters.putString(KEY_SUB_PHONE_NUMBER, self.getNormalizedDestination());
SendMessageAction.java 107 final ParticipantData self = BugleDatabaseOperations.getExistingParticipant( local
132 actionParameters.putInt(KEY_SUB_ID, self.getSubId());
133 actionParameters.putString(KEY_SUB_PHONE_NUMBER, self.getNormalizedDestination());
  /art/compiler/optimizing/
reference_type_propagation.cc 26 static inline mirror::DexCache* FindDexCacheWithHint(Thread* self,
33 return Runtime::Current()->GetClassLinker()->FindDexCache(self, dex_file);
443 Thread* self = Thread::Current(); local
444 StackHandleScope<2> hs(self);
446 hs.NewHandle(FindDexCacheWithHint(self, invoke->GetDexFile(), hint_dex_cache_)));
479 mirror::DexCache* dex_cache = FindDexCacheWithHint(soa.Self(), dex_file, hint_dex_cache_);
492 static mirror::Class* GetClassFromDexCache(Thread* self,
497 mirror::DexCache* dex_cache = FindDexCacheWithHint(self, dex_file, hint_dex_cache);
506 mirror::Class* resolved_class = GetClassFromDexCache(soa.Self(),
564 mirror::Class* resolved_class = GetClassFromDexCache(soa.Self(),
    [all...]
  /art/runtime/arch/
stub_test.cc 63 Thread::tls_ptr_sized_values* GetTlsPtr(Thread* self) {
64 return &self->tlsPtr_;
68 size_t Invoke3(size_t arg0, size_t arg1, size_t arg2, uintptr_t code, Thread* self) {
69 return Invoke3WithReferrer(arg0, arg1, arg2, code, self, nullptr);
73 size_t Invoke3WithReferrer(size_t arg0, size_t arg1, size_t arg2, uintptr_t code, Thread* self,
75 return Invoke3WithReferrerAndHidden(arg0, arg1, arg2, code, self, referrer, 0);
80 Thread* self, ArtMethod* referrer, size_t hidden) {
83 self->PushManagedStackFragment(&fragment);
155 "str %[self], [sp, #16]\n\t"
173 : [arg0] "r"(arg0), [arg1] "r"(arg1), [arg2] "r"(arg2), [code] "r"(code), [self] "r"(self)
547 Thread* self = Thread::Current(); local
557 10 * sizeof(uint32_t), StubTest::GetEntrypoint(self, kQuickMemcpy), self); local
587 Thread* self = Thread::Current(); local
602 Invoke3(reinterpret_cast<size_t>(obj.Get()), 0U, 0U, art_quick_lock_object, self); local
610 Invoke3(reinterpret_cast<size_t>(obj.Get()), 0U, 0U, art_quick_lock_object, self); local
626 Invoke3(reinterpret_cast<size_t>(obj2.Get()), 0U, 0U, art_quick_lock_object, self); local
661 Thread* self = Thread::Current(); variable
676 test->Invoke3(reinterpret_cast<size_t>(obj.Get()), 0U, 0U, art_quick_unlock_object, self); variable
685 test->Invoke3(reinterpret_cast<size_t>(obj.Get()), 0U, 0U, art_quick_lock_object, self); variable
691 test->Invoke3(reinterpret_cast<size_t>(obj.Get()), 0U, 0U, art_quick_unlock_object, self); variable
746 self); variable
750 art_quick_unlock_object, self); variable
782 self); variable
816 Thread* self = Thread::Current(); local
833 art_quick_check_cast, self); local
838 art_quick_check_cast, self); local
843 art_quick_check_cast, self); local
850 art_quick_check_cast, self); local
866 Thread* self = Thread::Current(); local
901 art_quick_aput_obj_with_null_and_bound_check, self); local
907 art_quick_aput_obj_with_null_and_bound_check, self); local
913 art_quick_aput_obj_with_null_and_bound_check, self); local
919 art_quick_aput_obj_with_null_and_bound_check, self); local
927 art_quick_aput_obj_with_null_and_bound_check, self); local
933 art_quick_aput_obj_with_null_and_bound_check, self); local
939 art_quick_aput_obj_with_null_and_bound_check, self); local
945 art_quick_aput_obj_with_null_and_bound_check, self); local
974 art_quick_aput_obj_with_null_and_bound_check, self); local
982 art_quick_aput_obj_with_null_and_bound_check, self); local
1003 Thread* self = Thread::Current(); local
1128 Thread* self = Thread::Current(); local
1212 Thread* self = Thread::Current(); local
1685 self, local
1730 self, local
1762 self, local
1881 Thread* self = Thread::Current(); local
1893 Thread* self = Thread::Current(); local
1905 Thread* self = Thread::Current(); local
1916 Thread* self = Thread::Current(); local
1927 Thread* self = Thread::Current(); local
1945 Thread* self = Thread::Current(); local
2083 Thread* self = Thread::Current(); local
2158 Thread* self = Thread::Current(); local
2194 Thread* self = Thread::Current(); local
    [all...]
  /art/runtime/
class_linker_test.cc 51 Thread* self = Thread::Current(); local
52 EXPECT_TRUE(class_linker_->FindSystemClass(self, descriptor.c_str()) == nullptr);
53 EXPECT_TRUE(self->IsExceptionPending());
54 mirror::Object* exception = self->GetException();
55 self->ClearException();
57 class_linker_->FindSystemClass(self, "Ljava/lang/NoClassDefFoundError;");
63 Thread* self = Thread::Current(); local
64 AssertPrimitiveClass(descriptor, class_linker_->FindSystemClass(self, descriptor.c_str()));
107 Thread* self = Thread::Current(); local
108 StackHandleScope<2> hs(self);
128 Thread* self = Thread::Current(); local
336 Thread* self = Thread::Current(); local
402 Thread* self = Thread::Current(); local
    [all...]
common_runtime_test.cc 505 StackHandleScope<2> hs(soa.Self());
577 Thread* self = Thread::Current(); local
578 jobject class_loader = Runtime::Current()->GetClassLinker()->CreatePathClassLoader(self,
580 self->SetClassLoaderOverride(class_loader);
instrumentation.cc 593 Thread* const self = Thread::Current(); local
595 Locks::mutator_lock_->AssertExclusiveHeld(self);
596 Locks::thread_list_lock_->AssertNotHeld(self);
609 MutexLock mu(self, *Locks::thread_list_lock_);
619 ReaderMutexLock mu(self, deoptimized_methods_lock_);
623 MutexLock mu(self, *Locks::thread_list_lock_);
637 Thread* self = Thread::Current(); local
639 Locks::mutator_lock_->AssertNotHeld(self);
640 Locks::instrument_entrypoints_lock_->AssertHeld(self);
643 MutexLock mu(self, *Locks::runtime_shutdown_lock_)
764 Thread* self = Thread::Current(); local
787 Thread* self = Thread::Current(); local
    [all...]
thread_list.cc 80 Thread* self = Thread::Current(); local
82 MutexLock mu(self, *Locks::thread_list_lock_);
83 contains = Contains(self);
155 DIR* d = opendir("/proc/self/task");
160 Thread* self = Thread::Current(); local
168 MutexLock mu(self, *Locks::thread_list_lock_);
193 // Note thread and self may not be equal if thread was already suspended at the point of the
195 Thread* self = Thread::Current(); variable
198 ScopedObjectAccess soa(self);
204 MutexLock mu(self, *Locks::logging_lock_)
211 Thread* self = Thread::Current(); local
282 Thread* self = Thread::Current(); local
363 Thread* self = Thread::Current(); local
397 Thread* self = Thread::Current(); local
465 Thread* self = Thread::Current(); local
628 Thread* self = Thread::Current(); local
682 Thread* self = Thread::Current(); local
736 Thread* const self = Thread::Current(); local
842 Thread* const self = Thread::Current(); local
937 Thread* self = Thread::Current(); local
967 Thread* const self = Thread::Current(); local
1033 Thread* self = Thread::Current(); local
1083 Thread* self = Thread::Current(); local
1112 Thread* self = Thread::Current(); local
1144 Thread* self = Thread::Current(); local
    [all...]
  /art/runtime/gc/collector/
semi_space.cc 116 Thread* self = Thread::Current(); local
121 if (Locks::mutator_lock_->IsExclusiveHeld(self)) {
128 Locks::mutator_lock_->AssertNotHeld(self);
136 ReaderMutexLock mu(self, *Locks::mutator_lock_);
168 void SemiSpace::ProcessReferences(Thread* self) {
169 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
    [all...]
  /art/runtime/gc/space/
large_object_space.cc 52 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
56 LargeObjectMapSpace::Alloc(self, num_bytes + kMemoryToolRedZoneBytes * 2, bytes_allocated,
74 bool IsZygoteLargeObject(Thread* self, mirror::Object* obj) const OVERRIDE {
75 return LargeObjectMapSpace::IsZygoteLargeObject(self, ObjectWithRedzone(obj));
78 size_t Free(Thread* self, mirror::Object* obj) OVERRIDE {
81 return LargeObjectMapSpace::Free(self, object_with_rdz);
133 mirror::Object* LargeObjectMapSpace::Alloc(Thread* self, size_t num_bytes,
154 MutexLock mu(self, lock_);
176 bool LargeObjectMapSpace::IsZygoteLargeObject(Thread* self, mirror::Object* obj) const {
177 MutexLock mu(self, lock_)
241 Thread* self = Thread::Current(); local
584 Thread* self = context->self; local
    [all...]
  /art/runtime/jdwp/
jdwp_event.cc 114 explicit ModBasket(Thread* self)
115 : hs(self), pLoc(nullptr), thread(self),
621 Thread* const self = Thread::Current(); local
622 self->AssertThreadSuspensionIsAllowable();
626 ScopedThreadSuspension sts(self, kWaitingForDebuggerSend);
633 ScopedThreadStateChange stsc(self, kSuspended);
680 Thread* const self = Thread::Current(); local
682 CHECK_NE(self->GetState(), kRunnable);
683 Locks::mutator_lock_->AssertNotHeld(self);
716 Thread* const self = Thread::Current(); local
1313 Thread* self = Thread::Current(); local
    [all...]
jdwp_handler.cc 241 Thread* self = Thread::Current(); local
242 ScopedThreadSuspension sts(self, kWaitingForDebuggerSuspension);
942 LOG(INFO) << " Warning: ignoring request to suspend self";
946 Thread* self = Thread::Current(); local
947 ScopedThreadSuspension sts(self, kWaitingForDebuggerSend);
960 LOG(INFO) << " Warning: ignoring request to resume self";
1640 Thread* self = Thread::Current(); local
    [all...]
  /art/runtime/jit/
jit_code_cache.cc 196 uint8_t* JitCodeCache::CommitCode(Thread* self,
205 uint8_t* result = CommitCodeInternal(self,
216 GarbageCollectCache(self);
217 result = CommitCodeInternal(self,
230 bool JitCodeCache::WaitForPotentialCollectionToComplete(Thread* self) {
234 lock_cond_.Wait(self);
261 void JitCodeCache::RemoveMethodsIn(Thread* self, const LinearAlloc& alloc) {
263 MutexLock mu(self, lock_);
298 void JitCodeCache::ClearGcRootsInInlineCaches(Thread* self) {
299 MutexLock mu(self, lock_)
838 GarbageCollectCache(self); variable
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 83 runtime->GetClassLinker()->FindArrayClass(soa.Self(), &element_class);
88 mirror::Array* result = mirror::Array::Alloc<true>(soa.Self(), array_class, length,
107 mirror::Class* array_class = runtime->GetClassLinker()->FindArrayClass(soa.Self(),
113 mirror::Array* result = mirror::Array::Alloc<true, true>(soa.Self(), array_class, length,
301 Thread* self, mirror::DexCache* dex_cache, uint32_t type_idx)
313 klass = linker->LookupClass(self, class_name, ComputeModifiedUtf8Hash(class_name), nullptr);
338 Thread* const self = Thread::Current(); local
339 StackHandleScope<1> hs(self);
345 field = mirror::Class::FindStaticField(self, klass, dex_cache.Get(), field_idx);
438 Thread* const self = Thread::Current() local
    [all...]
  /external/aac/libSBRdec/src/
sbrdecoder.cpp 236 HANDLE_SBRDECODER self,
267 if (self->flags & SBRDEC_LOW_POWER)
270 if (self->coreCodec == AOT_ER_AAC_ELD) {
271 if (self->flags & SBRDEC_LD_MPS_QMF) {
287 self->flags |= SBRDEC_DOWNSAMPLE;
290 self->flags &= ~SBRDEC_DOWNSAMPLE;
293 self->synDownsampleFac = synDownsampleFac;
294 self->sampleRateOut = sampleRateOut;
301 hSbrHeader = &(self->sbrHeader[elementIndex][i]);
309 self->flag
373 HANDLE_SBRDECODER self = NULL; local
1659 HANDLE_SBRDECODER self = *pSelf; local
    [all...]
  /external/avahi/avahi-compat-howl/
compat.c 101 static sw_discovery discovery_ref(sw_discovery self);
102 static void discovery_unref(sw_discovery self);
156 sw_discovery self = userdata; local
159 assert(self);
161 ASSERT_SUCCESS(pthread_mutex_unlock(&self->mutex));
163 ASSERT_SUCCESS(pthread_mutex_lock(&self->mutex));
169 sw_discovery self = data; local
175 self->thread = pthread_self();
176 self->thread_running = 1;
181 if ((command = read_command(self->thread_fd)) < 0
307 sw_discovery self = userdata; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
protojson_test.py 42 def __init__(self, number, **kwargs):
43 super(CustomField, self).__init__(self.message_type, number, **kwargs)
45 def value_to_message(self, value):
46 return self.message_type()
89 def CompareEncoded(self, expected_encoded, actual_encoded):
91 self.assertEquals(simplejson.loads(expected_encoded),
158 def testConvertIntegerToFloat(self):
165 self.assertTrue(isinstance(message.a_float, float))
166 self.assertEquals(10.0, message.a_float
481 self.original_import = self.get_import() namespace
    [all...]
  /external/libxml2/
triostr.c 1274 trio_string_t *self; local
1276 self = (trio_string_t *)TRIO_MALLOC(sizeof(trio_string_t));
1277 if (self)
1279 self->content = NULL;
1280 self->length = 0;
1281 self->allocated = 0;
1283 return self;
1295 TRIO_ARGS2((self, delta),
1296 trio_string_t *self,
1304 ? ( (self->allocated == 0) ? 1 : self->allocated * 2
1352 trio_string_t *self; local
1699 trio_string_t *self; local
1730 trio_string_t *self; local
    [all...]
  /external/ltrace/sysdeps/linux-gnu/ppc/
plt.c 683 struct ppc_unresolve_data *self; /* A canary. */ member in struct:ppc_unresolve_data
801 libsym->arch.data->self = libsym->arch.data;
829 struct process_stopping_handler *self = proc->arch.handler; local
830 assert(self != NULL);
832 struct library_symbol *libsym = self->breakpoint_being_enabled->libsym;
853 cb_on_all_stopped(struct process_stopping_handler *self)
856 assert(self->task_enabling_breakpoint->arch.handler == NULL);
857 self->task_enabling_breakpoint->arch.handler = self;
859 linux_ptrace_disable_and_continue(self);
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
IntentTest.java 235 Intent self = intent.setFlags(1234); local
237 assertSame(self, intent);
243 Intent self = intent.addFlags(4); local
244 self.addFlags(8);
246 assertSame(self, intent);
252 Intent self = intent.addCategory("category.name.1"); local
271 assertSame(self, intent);
277 Intent self = intent.addCategory("foo"); local
279 assertSame(self, intent);
  /external/skia/src/ports/
SkFontMgr_android_parser.cpp 127 self->fFilename, \
128 XML_GetCurrentLineNumber(self->fParser), \
129 XML_GetCurrentColumnNumber(self->fParser), \
154 /*start*/[](FamilyData* self, const char* tag, const char** attributes) {
155 FontFileInfo& file = *self->fCurrentFontInfo;
202 /*start*/[](FamilyData* self, const char* tag, const char** attributes) {
207 FontFileInfo& file = self->fCurrentFamily->fFonts.push_back();
208 self->fCurrentFontInfo = &file;
231 /*end*/[](FamilyData* self, const char* tag) {
232 trim_string(&self->fCurrentFontInfo->fFileName)
532 FamilyData* self = static_cast<FamilyData*>(data); local
554 FamilyData* self = static_cast<FamilyData*>(data); local
584 FamilyData* self = static_cast<FamilyData*>(data); local
    [all...]
  /external/skia/tests/
ImageTest.cpp 102 RasterDataHolder* self = static_cast<RasterDataHolder*>(context); local
103 self->fReleaseCount++;
104 self->fData.reset();
675 static void Release(void* self) {
676 static_cast<TextureReleaseChecker*>(self)->fReleaseCount++;
  /frameworks/native/libs/binder/
IPCThreadState.cpp 282 IPCThreadState* IPCThreadState::self() function in class:android::IPCThreadState
293 ALOGW("Calling IPCThreadState::self() during shutdown is dangerous, expect a crash.\n");
302 ALOGW("IPCThreadState::self() unable to create TLS key, expect a crash: %s\n",
688 self()->mProcess->expungeHandle(handle, binder);
708 : mProcess(ProcessState::self()),
1187 IPCThreadState* const self = static_cast<IPCThreadState*>(st); local
    [all...]
  /packages/services/Car/vehicle_network_service/
VehicleNetworkService.cpp 91 sp<MessageHandler> self(this);
92 mLooper->removeMessages(self);
215 IPCThreadState::self()->getCallingPid(),
216 IPCThreadState::self()->getCallingUid());
265 const uid_t uid = IPCThreadState::self()->getCallingUid();
743 IPCThreadState* self = IPCThreadState::self(); local
744 pid_t pid = self->getCallingPid();
745 uid_t uid = self->getCallingUid();
    [all...]

Completed in 1925 milliseconds

1 2 3 4 5 6 7 891011>>