HomeSort by relevance Sort by last modified time
    Searched defs:mirror (Results 76 - 100 of 330) sorted by null

1 2 34 5 6 7 8 91011>>

  /art/runtime/verifier/
reg_type_cache.h 30 namespace mirror { namespace in namespace:art
33 } // namespace mirror
77 const RegType& From(mirror::ClassLoader* loader, const char* descriptor, bool precise)
80 const RegType* FindClass(mirror::Class* klass, bool precise) const
83 const RegType* InsertClass(const StringPiece& descriptor, mirror::Class* klass, bool precise)
86 const RegType& FromClass(const char* descriptor, mirror::Class* klass, bool precise)
94 const RegType& FromDescriptor(mirror::ClassLoader* loader, const char* descriptor, bool precise)
149 const RegType& GetComponentType(const RegType& array, mirror::ClassLoader* loader)
161 mirror::Class* ResolveClass(const char* descriptor, mirror::ClassLoader* loader
    [all...]
  /art/runtime/
verify_object.h 27 namespace mirror { namespace in namespace:art
30 } // namespace mirror
56 void VerifyObjectImpl(ObjPtr<mirror::Object> obj) NO_THREAD_SAFETY_ANALYSIS;
60 static inline void VerifyObject(ObjPtr<mirror::Object> obj) NO_THREAD_SAFETY_ANALYSIS {
67 ALWAYS_INLINE bool VerifyClassClass(ObjPtr<mirror::Class> c) NO_THREAD_SAFETY_ANALYSIS;
intern_table.h 45 namespace mirror { namespace in namespace:art
47 } // namespace mirror
65 ObjPtr<mirror::String> InternStrong(int32_t utf16_length, const char* utf8_data)
71 ObjPtr<mirror::String> InternStrongImageString(ObjPtr<mirror::String> s)
75 ObjPtr<mirror::String> InternStrong(const char* utf8_data) REQUIRES_SHARED(Locks::mutator_lock_)
79 ObjPtr<mirror::String> InternStrong(ObjPtr<mirror::String> s)
84 ObjPtr<mirror::String> InternWeak(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_
    [all...]
java_vm_ext.h 30 namespace mirror { namespace in namespace:art
32 } // namespace mirror
143 jobject AddGlobalRef(Thread* self, ObjPtr<mirror::Object> obj)
147 jweak AddWeakGlobalRef(Thread* self, ObjPtr<mirror::Object> obj)
159 ObjPtr<mirror::Object> DecodeGlobal(IndirectRef ref)
162 void UpdateGlobal(Thread* self, IndirectRef ref, ObjPtr<mirror::Object> result)
166 ObjPtr<mirror::Object> DecodeWeakGlobal(Thread* self, IndirectRef ref)
170 ObjPtr<mirror::Object> DecodeWeakGlobalLocked(Thread* self, IndirectRef ref)
176 ObjPtr<mirror::Object> DecodeWeakGlobalDuringShutdown(Thread* self, IndirectRef ref)
185 void UpdateWeakGlobal(Thread* self, IndirectRef ref, ObjPtr<mirror::Object> result
    [all...]
scoped_thread_state_change.h 34 namespace mirror { namespace in namespace:art
36 } // namespace mirror
95 T AddLocalReference(ObjPtr<mirror::Object> obj) const
120 static void DCheckObjIsNotClearedJniWeakGlobal(ObjPtr<mirror::Object> obj)
  /frameworks/av/media/libaudiohal/2.0/
EffectBufferHalHidl.cpp 42 return mirror(nullptr, size, buffer);
45 status_t EffectBufferHalHidl::mirror( function in class:android::EffectBufferHalHidl
  /frameworks/base/core/jni/
android_text_AndroidCharacter.cpp 148 static jboolean mirror(JNIEnv* env, jobject obj, jcharArray charArray, jint start, jint count) function in namespace:android
188 { "mirror", "([CII)Z",
189 (void*) mirror },
  /art/compiler/optimizing/
instruction_builder.h 45 namespace mirror { namespace in namespace:art
47 } // namespace mirror
230 Handle<mirror::Class> klass,
236 ObjPtr<mirror::Class> GetOutermostCompilingClass() const;
239 ObjPtr<mirror::Class> GetCompilingClass() const;
288 bool IsInitialized(Handle<mirror::Class> cls) const
299 ObjPtr<mirror::Class> LookupResolvedType(dex::TypeIndex type_index,
303 ObjPtr<mirror::Class> LookupReferrerClass() const REQUIRES_SHARED(Locks::mutator_lock_);
  /art/runtime/gc/accounting/
card_table.h 29 namespace mirror { namespace in namespace:art
31 } // namespace mirror
65 bool IsDirty(const mirror::Object* obj) const {
70 uint8_t GetCard(const mirror::Object* obj) const {
card_table_test.cc 25 #include "mirror/class-inl.h"
26 #include "mirror/string-inl.h" // Strings are easiest to allocate
32 namespace mirror { namespace in namespace:art
34 } // namespace mirror
84 auto obj = reinterpret_cast<const mirror::Object*>(addr);
126 EXPECT_EQ(card_table_->GetCard(reinterpret_cast<mirror::Object*>(cur)),
131 EXPECT_EQ(card_table_->GetCard(reinterpret_cast<mirror::Object*>(cur)),
mod_union_table.h 26 #include "mirror/object_reference.h"
33 namespace mirror { namespace in namespace:art
35 } // namespace mirror
53 using ObjectCallback = void (*)(mirror::Object*, void*);
146 virtual bool ShouldAddReference(const mirror::Object* ref) const = 0;
161 AllocationTrackingSafeMap<const uint8_t*, std::vector<mirror::HeapReference<mirror::Object>*>,
  /art/runtime/gc/collector/
mark_compact.h 37 namespace mirror { namespace in namespace:art
40 } // namespace mirror
48 typedef AtomicStack<mirror::Object> ObjectStack;
89 void ScanObject(mirror::Object* obj)
116 virtual void VisitRoots(mirror::Object*** roots, size_t count, const RootInfo& info)
119 virtual void VisitRoots(mirror::CompressedReference<mirror::Object>** roots, size_t count,
124 void DelayReferenceReferent(ObjPtr<mirror::Class> klass, ObjPtr<mirror::Reference> reference)
130 mirror::Object* GetMarkedForwardAddress(mirror::Object* object
    [all...]
  /art/runtime/gc/space/
bump_pointer_space.h 24 namespace mirror { namespace in namespace:art
53 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
56 mirror::Object* AllocThreadUnsafe(Thread* self, size_t num_bytes, size_t* bytes_allocated,
60 mirror::Object* AllocNonvirtual(size_t num_bytes);
61 mirror::Object* AllocNonvirtualWithoutAccounting(size_t num_bytes);
64 size_t AllocationSize(mirror::Object* obj, size_t* usable_size) OVERRIDE
70 size_t Free(Thread*, mirror::Object*) OVERRIDE {
74 size_t FreeList(Thread*, size_t, mirror::Object**) OVERRIDE {
78 size_t AllocationSizeNonvirtual(mirror::Object* obj, size_t* usable_size)
129 bool Contains(const mirror::Object* obj) const
    [all...]
  /art/runtime/jit/
jit_code_cache.h 50 namespace mirror { namespace in namespace:art
54 } // namespace mirror
62 namespace mirror { namespace in namespace:art
66 } // namespace mirror
144 Handle<mirror::ObjectArray<mirror::Object>> roots,
210 void CopyInlineCacheInto(const InlineCache& ic, Handle<mirror::ObjectArray<mirror::Class>> array)
292 Handle<mirror::ObjectArray<mirror::Object>> roots
    [all...]
profiling_info.h 34 namespace mirror { namespace in namespace:art
36 } // namespace mirror
46 GcRoot<mirror::Class> classes_[kIndividualCacheSize];
66 void AddInvokeInfo(uint32_t dex_pc, mirror::Class* cls)
107 InlineCache::kIndividualCacheSize * sizeof(GcRoot<mirror::Class>));
  /art/runtime/mirror/
dex_cache.cc 35 namespace mirror { namespace in namespace:art
38 ObjPtr<mirror::DexCache> dex_cache,
39 ObjPtr<mirror::String> location,
106 GcRoot<mirror::CallSite>* call_sites = (dex_file->NumCallSiteIds() == 0)
145 mirror::StringDexCachePair::Initialize(strings);
148 mirror::TypeDexCachePair::Initialize(types);
151 mirror::FieldDexCachePair::Initialize(fields, image_pointer_size);
154 mirror::MethodDexCachePair::Initialize(methods, image_pointer_size);
157 mirror::MethodTypeDexCachePair::Initialize(method_types);
214 void DexCache::SetLocation(ObjPtr<mirror::String> location)
    [all...]
method_type.cc 24 namespace mirror { namespace in namespace:art
155 } // namespace mirror
object-readbarrier-inl.h 30 namespace mirror { namespace in namespace:art
253 } // namespace mirror
reference.h 41 namespace mirror { namespace in namespace:art
43 // C++ mirror of java.lang.ref.Reference
127 // C++ mirror of java.lang.ref.FinalizerReference
150 } // namespace mirror
string.h 31 namespace mirror { namespace in namespace:art
40 // C++ mirror of java.lang.String
150 // need this in mirror::String just for that one usage ?
228 static std::string PrettyStringDescriptor(ObjPtr<mirror::String> descriptor)
277 } // namespace mirror
  /cts/tests/tests/text/src/android/text/cts/
AndroidCharacterTest.java 138 assertFalse(AndroidCharacter.mirror(src, 0, 0));
139 assertTrue(AndroidCharacter.mirror(src, 40, 24));
141 AndroidCharacter.mirror(src, 65, 1);
147 AndroidCharacter.mirror(src, 60, 10);
153 AndroidCharacter.mirror(src, -1024, 1);
159 AndroidCharacter.mirror(src, 0, -1);
166 assertTrue(AndroidCharacter.mirror(strChar, 0, str.length()));
168 assertFalse(AndroidCharacter.mirror(str.toCharArray(), 0, 2));
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
BreakpointMultipleTest.java 114 VmMirror mirror = debuggeeWrapper.vmMirror; local
115 return mirror.setBreakpointAtMethodBegin(classID, "breakpointTest");
  /external/iproute2/tc/
m_mirred.c 2 * m_egress.c ingress/egress packet mirror/redir actions module
35 fprintf(stderr, "\tACTION := <mirror | redirect>\n");
56 return "Egress Mirror";
58 return "Ingress Mirror";
71 int ok = 0, iok = 0, mirror = 0, redir = 0, ingress = 0, egress = 0; local
116 } else if (!mirror && matches(*argv, "mirror") == 0) {
117 mirror = 1;
119 fprintf(stderr, "Can't have both mirror and redir\n");
128 if (mirror) {
    [all...]
  /frameworks/av/media/libaudiohal/4.0/
EffectBufferHalHidl.cpp 43 return mirror(nullptr, size, buffer);
46 status_t EffectBufferHalHidl::mirror( function in class:android::V4_0::EffectBufferHalHidl
  /art/compiler/driver/
dex_compilation_unit.h 29 namespace mirror { namespace in namespace:art
32 } // namespace mirror
38 DexCompilationUnit(Handle<mirror::ClassLoader> class_loader,
46 Handle<mirror::DexCache> dex_cache);
48 Handle<mirror::ClassLoader> GetClassLoader() const {
112 Handle<mirror::DexCache> GetDexCache() const {
121 const Handle<mirror::ClassLoader> class_loader_;
133 const Handle<mirror::DexCache> dex_cache_;

Completed in 535 milliseconds

1 2 34 5 6 7 8 91011>>