HomeSort by relevance Sort by last modified time
    Searched defs:self (Results 126 - 150 of 304) sorted by null

1 2 3 4 56 7 8 91011>>

  /art/runtime/
intern_table.cc 215 Thread* self = Thread::Current(); local
216 MutexLock mu(self, *Locks::intern_table_lock_);
218 new_intern_condition_.Broadcast(self);
222 Thread* self = Thread::Current(); local
223 MutexLock mu(self, *Locks::intern_table_lock_);
238 Thread* self = Thread::Current(); local
239 MutexLock mu(self, *Locks::intern_table_lock_);
241 new_intern_condition_.WaitHoldingLocks(self);
oat_file_assistant_test.cc 962 Thread* self = Thread::Current(); local
    [all...]
reflection.cc 358 Thread* const self = Thread::Current(); local
363 CHECK(self->IsExceptionPending());
366 << self->GetException()->Dump();
367 self->ClearException();
434 method->Invoke(soa.Self(), args, arg_array->GetNumBytes(), result, shorty);
443 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
444 ThrowStackOverflowError(soa.Self());
463 UpdateReference(soa.Self(), obj, result.GetL());
473 if (UNLIKELY(__builtin_frame_address(0) < soa.Self()->GetStackEnd())) {
474 ThrowStackOverflowError(soa.Self());
    [all...]
class_linker_test.cc 50 Thread* self = Thread::Current(); local
51 EXPECT_TRUE(class_linker_->FindSystemClass(self, descriptor.c_str()) == nullptr);
52 EXPECT_TRUE(self->IsExceptionPending());
53 mirror::Object* exception = self->GetException();
54 self->ClearException();
56 class_linker_->FindSystemClass(self, "Ljava/lang/NoClassDefFoundError;");
62 Thread* self = Thread::Current(); local
63 AssertPrimitiveClass(descriptor, class_linker_->FindSystemClass(self, descriptor.c_str()));
106 Thread* self = Thread::Current(); local
107 StackHandleScope<2> hs(self);
127 Thread* self = Thread::Current(); local
324 Thread* self = Thread::Current(); local
389 Thread* self = Thread::Current(); local
    [all...]
common_runtime_test.cc 481 StackHandleScope<2> hs(soa.Self());
553 Thread* self = Thread::Current(); local
554 jobject class_loader = Runtime::Current()->GetClassLinker()->CreatePathClassLoader(self, class_path);
555 self->SetClassLoaderOverride(class_loader);
instrumentation.cc 566 Thread* const self = Thread::Current(); local
568 Locks::mutator_lock_->AssertExclusiveHeld(self);
569 Locks::thread_list_lock_->AssertNotHeld(self);
581 MutexLock mu(self, *Locks::thread_list_lock_);
590 ReaderMutexLock mu(self, deoptimized_methods_lock_);
595 MutexLock mu(self, *Locks::thread_list_lock_);
606 Thread* self = Thread::Current(); local
609 Locks::mutator_lock_->AssertNotHeld(self);
610 Locks::instrument_entrypoints_lock_->AssertHeld(self);
615 MutexLock mu(self, *Locks::runtime_shutdown_lock_)
722 Thread* self = Thread::Current(); local
745 Thread* self = Thread::Current(); local
    [all...]
  /art/runtime/mirror/
object_test.cc 59 Thread* self = Thread::Current(); local
60 StackHandleScope<1> hs(self);
62 hs.NewHandle(String::AllocFromModifiedUtf8(self, expected_utf16_length, utf8_in)));
98 StackHandleScope<2> hs(soa.Self());
100 hs.NewHandle(class_linker_->AllocObjectArray<Object>(soa.Self(), 256)));
102 Object* clone = a1->Clone(soa.Self());
109 StackHandleScope<2> hs(soa.Self());
111 hs.NewHandle(class_linker_->AllocObjectArray<Object>(soa.Self(), 2)));
122 Class* aioobe = class_linker_->FindSystemClass(soa.Self(),
126 EXPECT_TRUE(soa.Self()->IsExceptionPending())
    [all...]
  /external/aac/libAACdec/src/
aacdecoder.cpp 177 void CAacDecoder_SyncQmfMode(HANDLE_AACDECODER self)
181 self->qmfModeCurr = self->qmfModeUser;
183 if ( self->qmfModeCurr == NOT_DEFINED )
185 if ( (IS_LOWDELAY(self->streamInfo.aot) && (self->flags & AC_MPS_PRESENT))
186 || ( (self->streamInfo.aacNumChannels == 1)
187 && ( (CAN_DO_PS(self->streamInfo.aot) && !(self->flags & AC_MPS_PRESENT))
188 || ( IS_USAC(self->streamInfo.aot) && (self->flags & AC_MPS_PRESENT)) ) )
740 HANDLE_AACDECODER self; local
    [all...]
  /external/google-breakpad/src/client/mac/handler/
exception_handler.cc 479 ExceptionHandler* self = local
485 receive.header.msgh_local_port = self->handler_port_;
490 self->handler_port_,
507 // Don't touch self, since this message could have been sent
512 self->SuspendThreads();
537 self->last_minidump_write_result_ =
538 self->WriteMinidumpWithException(exception_type, exception_code,
547 self->ResumeThreads();
549 if (self->use_minidump_write_mutex_)
550 pthread_mutex_unlock(&self->minidump_write_mutex_)
    [all...]
  /external/google-breakpad/src/client/windows/handler/
exception_handler.cc 385 ExceptionHandler* self = reinterpret_cast<ExceptionHandler *>(lpParameter); local
386 assert(self);
387 assert(self->handler_start_semaphore_ != NULL);
388 assert(self->handler_finish_semaphore_ != NULL);
391 if (WaitForSingleObject(self->handler_start_semaphore_, INFINITE) ==
394 if (self->is_shutdown_) {
398 self->handler_return_value_ =
399 self->WriteMinidumpWithException(self->requesting_thread_id_,
400 self->exception_info_
    [all...]
  /external/linux-tools-perf/src/tools/perf/
builtin-report.c 367 struct perf_session *self = rep->session; local
368 u64 sample_type = perf_evlist__combined_sample_type(self->evlist);
370 if (!self->fd_pipe && !(sample_type & PERF_SAMPLE_CALLCHAIN)) {
393 if (!self->fd_pipe &&
410 struct hists *self,
415 unsigned long nr_samples = self->stats.nr_events[PERF_RECORD_SAMPLE];
416 u64 nr_events = self->stats.total_period;
417 struct perf_evsel *evsel = hists_to_evsel(self);
  /external/ltrace/
prototype.c 335 struct protolib_cache *self; member in struct:load_config_data
358 data->result = consider_config_dir(data->self,
439 struct protolib_cache *self = data; local
444 = protolib_cache_file(self, entry->pathname, 0);
447 || protolib_add_import(&self->imports, new_import) < 0)
  /external/selinux/policycoreutils/sandbox/
seunshare.c 557 pid_t *pid_table, pid, self; local
561 self = getpid();
577 if (!(pid = (pid_t)atoi(de->d_name)) || pid == self)
  /frameworks/wilhelm/src/
sles.c 545 void *self = (char *) thiz + x->mOffset; local
548 ((IObject **) self)[1] = thiz;
551 (*init)(self);
555 ((size_t *) self)[0] ^= ~0;
559 state = (exposedMask & 1) && ((NULL == (expose = mi->mExpose)) || (*expose)(self)) ?
  /hardware/intel/common/libmix/mix_video/src/
mixvideoformat_h264.c 31 static void mix_videoformat_h264_init(MixVideoFormat_H264 * self) {
32 MixVideoFormat *parent = MIX_VIDEOFORMAT(self);
37 self->dpb_surface_table = NULL;
86 MixVideoFormat_H264 *self = MIX_VIDEOFORMAT_H264(obj); local
89 parent = MIX_VIDEOFORMAT(self);
97 g_hash_table_remove_all(self->dpb_surface_table);
99 g_hash_table_unref(self->dpb_surface_table);
100 self->dpb_surface_table = NULL;
205 MixVideoFormat_H264 *self = MIX_VIDEOFORMAT_H264(mix); local
528 self->dpb_surface_table = g_hash_table_new_full(NULL, NULL, mix_videofmt_h264_destroy_DPB_key, mix_vide (…)
806 MixVideoFormat_H264 *self = MIX_VIDEOFORMAT_H264(mix); local
946 MixVideoFormat_H264 *self = MIX_VIDEOFORMAT_H264(mix); local
1488 MixVideoFormat_H264 *self = MIX_VIDEOFORMAT_H264(mix); local
    [all...]
mixvideoformat_mp42.c 52 static void mix_videoformat_mp42_init(MixVideoFormat_MP42 * self) {
53 MixVideoFormat *parent = MIX_VIDEOFORMAT(self);
55 self->reference_frames[0] = NULL;
56 self->reference_frames[1] = NULL;
58 self->last_frame = NULL;
59 self->last_vop_coding_type = -1;
61 self->packed_stream_queue = NULL;
106 MixVideoFormat_MP42 *self = NULL; local
120 self = MIX_VIDEOFORMAT_MP42(obj);
121 parent = MIX_VIDEOFORMAT(self);
205 MixVideoFormat_MP42 *self = MIX_VIDEOFORMAT_MP42(mix); local
594 MixVideoFormat_MP42 *self = NULL; local
1123 MixVideoFormat_MP42 *self = MIX_VIDEOFORMAT_MP42(mix); local
1251 MixVideoFormat_MP42 *self = MIX_VIDEOFORMAT_MP42(mix); local
    [all...]
mixvideoformat_vc1.c 39 static void mix_videoformat_vc1_init(MixVideoFormat_VC1 * self) {
40 MixVideoFormat *parent = MIX_VIDEOFORMAT(self);
45 self->reference_frames[0] = NULL;
46 self->reference_frames[1] = NULL;
95 MixVideoFormat_VC1 *self = MIX_VIDEOFORMAT_VC1(obj); local
98 parent = MIX_VIDEOFORMAT(self);
110 if (self->reference_frames[i] != NULL)
112 mix_videoframe_unref(self->reference_frames[i]);
113 self->reference_frames[i] = NULL;
254 MixVideoFormat_VC1 *self = NULL local
929 MixVideoFormat_VC1 *self = MIX_VIDEOFORMAT_VC1(mix); local
1328 MixVideoFormat_VC1 *self = MIX_VIDEOFORMAT_VC1(mix); local
1502 MixVideoFormat_VC1 *self = MIX_VIDEOFORMAT_VC1(mix); local
1649 MixVideoFormat_VC1 *self = MIX_VIDEOFORMAT_VC1(mix); local
    [all...]
mixvideoformatenc_h264.c 38 static void mix_videoformatenc_h264_init(MixVideoFormatEnc_H264 * self) {
39 MixVideoFormatEnc *parent = MIX_VIDEOFORMATENC(self);
44 self->encoded_frames = 0;
45 self->pic_skipped = FALSE;
46 self->is_intra = TRUE;
47 self->cur_fame = NULL;
48 self->ref_fame = NULL;
49 self->rec_fame = NULL;
51 self->ci_shared_surfaces = NULL;
52 self->surfaces= NULL
189 MixVideoFormatEnc_H264 *self = MIX_VIDEOFORMATENC_H264(mix); local
733 MixVideoFormatEnc_H264 *self = MIX_VIDEOFORMATENC_H264 (mix); local
790 MixVideoFormatEnc_H264 *self = MIX_VIDEOFORMATENC_H264(mix); local
863 MixVideoFormatEnc_H264 *self = MIX_VIDEOFORMATENC_H264(mix); local
1778 MixVideoFormatEnc_H264 *self = MIX_VIDEOFORMATENC_H264(mix); local
    [all...]
mixvideoformatenc_mpeg4.c 38 static void mix_videoformatenc_mpeg4_init(MixVideoFormatEnc_MPEG4 * self) {
39 MixVideoFormatEnc *parent = MIX_VIDEOFORMATENC(self);
44 self->encoded_frames = 0;
45 self->pic_skipped = FALSE;
46 self->is_intra = TRUE;
47 self->cur_fame = NULL;
48 self->ref_fame = NULL;
49 self->rec_fame = NULL;
51 self->ci_shared_surfaces = NULL;
52 self->surfaces= NULL;
189 MixVideoFormatEnc_MPEG4 *self = MIX_VIDEOFORMATENC_MPEG4(mix); local
718 MixVideoFormatEnc_MPEG4 *self = MIX_VIDEOFORMATENC_MPEG4 (mix); local
774 MixVideoFormatEnc_MPEG4 *self = MIX_VIDEOFORMATENC_MPEG4(mix); local
845 MixVideoFormatEnc_MPEG4 *self = MIX_VIDEOFORMATENC_MPEG4(mix); local
1671 MixVideoFormatEnc_MPEG4 *self = MIX_VIDEOFORMATENC_MPEG4 (mix); local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ReceiveMmsMessageAction.java 69 final ParticipantData self = BugleDatabaseOperations.getOrCreateSelf(db, subId); local
78 context, pushData, self.getSubId(), self.getNormalizedDestination());
111 BugleDatabaseOperations.getOrCreateParticipantInTransaction(db, self);
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.
  /art/runtime/arch/
stub_test.cc 62 Thread::tls_ptr_sized_values* GetTlsPtr(Thread* self) {
63 return &self->tlsPtr_;
67 size_t Invoke3(size_t arg0, size_t arg1, size_t arg2, uintptr_t code, Thread* self) {
68 return Invoke3WithReferrer(arg0, arg1, arg2, code, self, nullptr);
72 size_t Invoke3WithReferrer(size_t arg0, size_t arg1, size_t arg2, uintptr_t code, Thread* self,
76 self->PushManagedStackFragment(&fragment);
111 "str %[self], [sp, #16]\n\t"
127 : [arg0] "r"(arg0), [arg1] "r"(arg1), [arg2] "r"(arg2), [code] "r"(code), [self] "r"(self),
150 "str %[self], [sp, #32]\n\t
810 Thread* self = Thread::Current(); local
820 10 * sizeof(uint32_t), StubTest::GetEntrypoint(self, kQuickMemcpy), self); local
850 Thread* self = Thread::Current(); local
865 Invoke3(reinterpret_cast<size_t>(obj.Get()), 0U, 0U, art_quick_lock_object, self); local
873 Invoke3(reinterpret_cast<size_t>(obj.Get()), 0U, 0U, art_quick_lock_object, self); local
889 Invoke3(reinterpret_cast<size_t>(obj2.Get()), 0U, 0U, art_quick_lock_object, self); local
924 Thread* self = Thread::Current(); variable
939 test->Invoke3(reinterpret_cast<size_t>(obj.Get()), 0U, 0U, art_quick_unlock_object, self); variable
948 test->Invoke3(reinterpret_cast<size_t>(obj.Get()), 0U, 0U, art_quick_lock_object, self); variable
954 test->Invoke3(reinterpret_cast<size_t>(obj.Get()), 0U, 0U, art_quick_unlock_object, self); variable
1009 self); variable
1013 art_quick_unlock_object, self); variable
1045 self); variable
1079 Thread* self = Thread::Current(); local
1096 art_quick_check_cast, self); local
1101 art_quick_check_cast, self); local
1106 art_quick_check_cast, self); local
1113 art_quick_check_cast, self); local
1131 Thread* self = Thread::Current(); local
1166 art_quick_aput_obj_with_null_and_bound_check, self); local
1172 art_quick_aput_obj_with_null_and_bound_check, self); local
1178 art_quick_aput_obj_with_null_and_bound_check, self); local
1184 art_quick_aput_obj_with_null_and_bound_check, self); local
1192 art_quick_aput_obj_with_null_and_bound_check, self); local
1198 art_quick_aput_obj_with_null_and_bound_check, self); local
1204 art_quick_aput_obj_with_null_and_bound_check, self); local
1210 art_quick_aput_obj_with_null_and_bound_check, self); local
1239 art_quick_aput_obj_with_null_and_bound_check, self); local
1247 art_quick_aput_obj_with_null_and_bound_check, self); local
1270 Thread* self = Thread::Current(); local
1397 Thread* self = Thread::Current(); local
1482 Thread* self = Thread::Current(); local
1955 self, local
1998 self, local
2030 self, local
2157 Thread* self = Thread::Current(); local
2171 Thread* self = Thread::Current(); local
2185 Thread* self = Thread::Current(); local
2198 Thread* self = Thread::Current(); local
2211 Thread* self = Thread::Current(); local
2226 Thread* self = Thread::Current(); local
2347 Thread* self = Thread::Current(); local
    [all...]
  /art/runtime/gc/collector/
semi_space.cc 105 Thread* self = Thread::Current(); local
110 if (Locks::mutator_lock_->IsExclusiveHeld(self)) {
117 Locks::mutator_lock_->AssertNotHeld(self);
125 ReaderMutexLock mu(self, *Locks::mutator_lock_);
157 void SemiSpace::ProcessReferences(Thread* self) {
158 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
    [all...]
  /art/runtime/gc/space/
large_object_space.cc 49 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
53 LargeObjectMapSpace::Alloc(self, num_bytes + kValgrindRedZoneBytes * 2, bytes_allocated,
70 bool IsZygoteLargeObject(Thread* self, mirror::Object* obj) const OVERRIDE {
71 return LargeObjectMapSpace::IsZygoteLargeObject(self, ObjectWithRedzone(obj));
74 size_t Free(Thread* self, mirror::Object* obj) OVERRIDE {
77 return LargeObjectMapSpace::Free(self, object_with_rdz);
129 mirror::Object* LargeObjectMapSpace::Alloc(Thread* self, size_t num_bytes,
150 MutexLock mu(self, lock_);
172 bool LargeObjectMapSpace::IsZygoteLargeObject(Thread* self, mirror::Object* obj) const {
173 MutexLock mu(self, lock_)
236 Thread* self = Thread::Current(); local
579 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 self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend);
633 ScopedThreadStateChange stsc(self, kSuspended);
636 self->TransitionFromSuspendedToRunnable();
681 Thread* const self = Thread::Current(); local
683 CHECK_NE(self->GetState(), kRunnable)
717 Thread* const self = Thread::Current(); local
1314 Thread* self = Thread::Current(); local
    [all...]

Completed in 3076 milliseconds

1 2 3 4 56 7 8 91011>>