Searched defs:refs (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DGraphReader.java61 public void addReferencesByMap(KeyValueMap refs) { argument
62 mReferences.putAll(refs);
/frameworks/native/include/binder/
H A DProcessState.h77 RefBase::weakref_type* refs; member in struct:android::ProcessState::handle_entry
/frameworks/base/tests/CoreTests/android/core/
H A DHeapTest.java49 private static void makeRefs(Object objects[], SoftReference<Object> refs[]) { argument
52 refs[i] = new SoftReference<Object>(objects[i]);
56 private static <T> int checkRefs(SoftReference<T> refs[], int last) { argument
59 for (i = 0; i < refs.length; i++) {
60 Object o = refs[i].get();
81 private static <T> void checkRefs(T objects[], SoftReference<T> refs[]) { argument
85 if (refs[i].get() != objects[i]) {
90 throw new RuntimeException("Test failed: soft refs not cleared");
99 SoftReference<Object> refs[] = new SoftReference[objects.length];
104 makeRefs(objects, refs);
177 makeRefs(Object objects[], WeakReference<Object> refs[]) argument
184 checkRefs(T objects[], WeakReference<T> refs[]) argument
229 makeRefs(Object objects[], PhantomReference<Object> refs[], ReferenceQueue<Object> queue) argument
237 checkRefs(T objects[], PhantomReference<T> refs[], ReferenceQueue<T> queue) argument
359 makeRefs(FinalizableObject objects[], WeakReference<FinalizableObject> refs[]) argument
[all...]
/frameworks/native/opengl/libagl/
H A DTextureObjectManager.cpp288 const uint32_t refs = old->getStrongCount(); local
289 if (ggl_likely(refs == 1)) {
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h93 inline bool isReady() const { return (refs > 0); }
104 inline uint32_t getRefsCount() const { return refs; }
133 uint32_t refs; member in class:android::egl_display_t
149 // STRONG refs cancel (inc) or initiate (dec) a hibernation attempt
150 // the next time the wakecount reaches zero. WEAK refs don't affect
151 // whether a hibernation attempt will be made. Use STRONG refs only
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp457 RefBase::weakref_type* refs = mPendingWeakDerefs[i]; local
458 refs->decWeak(mProcess.get());
947 RefBase::weakref_type* refs; local
959 refs = (RefBase::weakref_type*)mIn.readPointer();
961 ALOG_ASSERT(refs->refBase() == obj,
963 refs, obj, refs->refBase());
970 mOut.writePointer((uintptr_t)refs);
975 refs = (RefBase::weakref_type*)mIn.readPointer();
977 ALOG_ASSERT(refs
[all...]

Completed in 4742 milliseconds