Home
last modified time | relevance | path

Searched refs:refs (Results 1 – 15 of 15) sorted by relevance

/frameworks/native/libs/binder/
DIPCThreadState.cpp553 RefBase::weakref_type* refs = mPendingWeakDerefs[0]; in processPendingDerefs() local
555 refs->decWeak(mProcess.get()); in processPendingDerefs()
574 RefBase::weakref_type* refs = mPostWriteWeakDerefs[i]; in processPostWriteDerefs() local
575 refs->decWeak(mProcess.get()); in processPostWriteDerefs()
1076 RefBase::weakref_type* refs; in executeCommand() local
1088 refs = (RefBase::weakref_type*)mIn.readPointer(); in executeCommand()
1090 ALOG_ASSERT(refs->refBase() == obj, in executeCommand()
1092 refs, obj, refs->refBase()); in executeCommand()
1099 mOut.writePointer((uintptr_t)refs); in executeCommand()
1104 refs = (RefBase::weakref_type*)mIn.readPointer(); in executeCommand()
[all …]
DProcessState.cpp232 e.refs = nullptr; in lookupHandleLocked()
256 if (b == nullptr || !e->refs->attemptIncWeak(this)) { in getStrongProxyForHandle()
286 if (b) e->refs = b->getWeakRefs(); in getStrongProxyForHandle()
293 e->refs->decWeak(this); in getStrongProxyForHandle()
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
DGraphReader.java61 public void addReferencesByMap(KeyValueMap refs) { in addReferencesByMap() argument
62 mReferences.putAll(refs); in addReferencesByMap()
/frameworks/native/opengl/libs/EGL/
Degl_display.h84 inline bool isReady() const { return (refs > 0); } in isReady()
95 inline uint32_t getRefsCount() const { return refs; } in getRefsCount()
123 uint32_t refs; variable
Degl_display.cpp88 … magic('_dpy'), finishOnSwap(false), traceGpuCompletion(false), refs(0), eglIsInitialized(false) { in egl_display_t()
228 refs++; in initialize()
229 if (refs > 1) { in initialize()
397 if (refs == 0) { in terminate()
408 refs--; in terminate()
409 if (refs > 0) { in terminate()
/frameworks/base/core/java/android/widget/
DRemoteViewsAdapter.java431 LinkedList<RemoteViewsFrameLayout> refs = get(position); in add() local
434 if (refs == null) { in add()
435 refs = new LinkedList<>(); in add()
436 put(position, refs); in add()
441 refs.add(layout); in add()
452 final LinkedList<RemoteViewsFrameLayout> refs = removeReturnOld(position); in notifyOnRemoteViewsLoaded()
453 if (refs != null) { in notifyOnRemoteViewsLoaded()
455 for (final RemoteViewsFrameLayout ref : refs) { in notifyOnRemoteViewsLoaded()
468 final LinkedList<RemoteViewsFrameLayout> refs = get(rvfl.cacheIndex); in removeView() local
469 if (refs != null) { in removeView()
[all …]
/frameworks/base/core/xsd/schema/
DREADME.md1 Please see the [README](https://android.googlesource.com/platform/system/tools/xsdc/+/refs/heads/ma…
/frameworks/base/services/core/xsd/schema/
DREADME.md1 Please see the [README](https://android.googlesource.com/platform/system/tools/xsdc/+/refs/heads/ma…
/frameworks/base/core/java/android/security/net/config/
DNetworkSecurityConfig.java290 public Builder addCertificatesEntryRefs(Collection<? extends CertificatesEntryRef> refs) {
294 mCertificatesEntryRefs.addAll(refs);
/frameworks/rs/cpp/util/
DRefBase.h225 void set_object_and_refs(T* other, weakref_type* refs);
422 void wp<T>::set_object_and_refs(T* other, weakref_type* refs) in set_object_and_refs() argument
424 if (other) refs->incWeak(this); in set_object_and_refs()
427 m_refs = refs; in set_object_and_refs()
/frameworks/native/include/binder/
DProcessState.h104 RefBase::weakref_type* refs; member
/frameworks/native/libs/binder/include/binder/
DProcessState.h104 RefBase::weakref_type* refs; member
/frameworks/av/media/codec2/vndk/util/
DC2InterfaceHelper.cpp169 void setDependencies(std::vector<C2Param::Index> indices, std::vector<ParamRef> refs) { in setDependencies() argument
171 mDependenciesAsRefs = refs; in setDependencies()
317 std::vector<C2Param::Index> indices, std::vector<ParamRef> refs) { in setDependencies() argument
318 mImpl->setDependencies(indices, refs); in setDependencies()
/frameworks/av/media/libstagefright/
DMPEG4Writer.cpp5019 const ItemRefs &refs = item.refsList[r]; in writeIrefBox() local
5020 beginBox(refs.key); in writeIrefBox()
5022 size_t refCount = refs.value.size(); in writeIrefBox()
5024 ALOGW("too many entries in %s", refs.key); in writeIrefBox()
5029 writeInt16(refs.value[refIndex]); in writeIrefBox()
5237 void MPEG4Writer::addRefs_l(uint16_t itemId, const ItemRefs &refs) { in addRefs_l() argument
5238 if (refs.value.empty()) { in addRefs_l()
5251 it->second.refsList.push_back(refs); in addRefs_l()
/frameworks/av/media/codec2/vndk/include/util/
DC2InterfaceHelper.h364 void setDependencies(std::vector<C2Param::Index> indices, std::vector<ParamRef> refs);