/frameworks/rs/ |
D | rsObjectBase.cpp | 23 pthread_mutex_t ObjectBase::gObjectInitMutex = PTHREAD_MUTEX_INITIALIZER; 25 ObjectBase::ObjectBase(Context *rsc) { in ObjectBase() function in ObjectBase 43 ObjectBase::~ObjectBase() { in ~ObjectBase() 67 void ObjectBase::dumpLOGV(const char *op) const { in dumpLOGV() 77 void ObjectBase::incUserRef() const { in incUserRef() 82 void ObjectBase::incSysRef() const { in incSysRef() 87 void ObjectBase::preDestroy() const { in preDestroy() 90 bool ObjectBase::freeChildren() { in freeChildren() 94 bool ObjectBase::checkDelete(const ObjectBase *ref) { in checkDelete() 117 bool ObjectBase::decUserRef() const { in decUserRef() [all …]
|
D | rsObjectBase.h | 31 class ObjectBase { 33 ObjectBase(Context *rsc); 42 static bool checkDelete(const ObjectBase *); 62 static bool isValid(const Context *rsc, const ObjectBase *obj); 75 virtual ~ObjectBase(); 87 mutable const ObjectBase * mPrev; 88 mutable const ObjectBase * mNext;
|
D | rsElement.cpp | 24 Element::Element(Context *rsc) : ObjectBase(rsc) { in Element() 89 ObjectBase::dumpLOGV(prefix); in dumpLOGV() 225 ObjectBase::asyncLock(); in createRef() 235 ObjectBase::asyncUnlock(); in createRef() 239 ObjectBase::asyncUnlock(); in createRef() 246 ObjectBase::asyncLock(); in createRef() 248 ObjectBase::asyncUnlock(); in createRef() 258 ObjectBase::asyncLock(); in createRef() 285 ObjectBase::asyncUnlock(); in createRef() 290 ObjectBase::asyncUnlock(); in createRef() [all …]
|
D | rsSampler.cpp | 25 Sampler::Sampler(Context *rsc) : ObjectBase(rsc) { in Sampler() 36 float aniso) : ObjectBase(rsc) { in Sampler() 86 ObjectBase::asyncLock(); in getSampler() 96 ObjectBase::asyncUnlock(); in getSampler() 99 ObjectBase::asyncUnlock(); in getSampler() 110 ObjectBase::asyncLock(); in getSampler() 112 ObjectBase::asyncUnlock(); in getSampler()
|
D | rsFileA3D.h | 33 class FileA3D : public ObjectBase { 49 ObjectBase *mRsObj; 68 ObjectBase *initializeFromEntry(size_t index); 70 void appendToFile(Context *rsc, ObjectBase *obj);
|
D | rsProgramRaster.cpp | 82 ObjectBase::asyncLock(); in getProgramRaster() 88 ObjectBase::asyncUnlock(); in getProgramRaster() 91 ObjectBase::asyncUnlock(); in getProgramRaster() 96 ObjectBase::asyncLock(); in getProgramRaster() 98 ObjectBase::asyncUnlock(); in getProgramRaster()
|
D | rsContext.h | 60 if (!ObjectBase::isValid(rsc, (const ObjectBase *)o)) { \ 66 if (o && !ObjectBase::isValid(rsc, (const ObjectBase *)o)) { \ 158 void assignName(ObjectBase *obj, const char *name, uint32_t len); 159 void removeName(ObjectBase *obj); 238 mutable const ObjectBase * mObjHead; 299 Vector<ObjectBase *> mNames;
|
D | rsProgramStore.cpp | 93 ObjectBase::asyncLock(); in getProgramStore() 107 ObjectBase::asyncUnlock(); in getProgramStore() 110 ObjectBase::asyncUnlock(); in getProgramStore() 120 ObjectBase::asyncLock(); in getProgramStore() 122 ObjectBase::asyncUnlock(); in getProgramStore()
|
D | rsPath.cpp | 24 Path::Path(Context *rsc) : ObjectBase(rsc) { in Path() 29 : ObjectBase(rsc) { in Path() 42 : ObjectBase(rsc) { in Path()
|
D | rsScript.h | 35 class ScriptKernelID : public ObjectBase { 49 class ScriptFieldID : public ObjectBase { 61 class Script : public ObjectBase { 107 void setVarObj(uint32_t slot, ObjectBase *val);
|
D | rsProgramBase.h | 27 class ProgramBase : public ObjectBase { 29 ProgramBase(Context *rsc) : ObjectBase(rsc) { in ProgramBase()
|
D | rsAdapter.cpp | 24 Adapter1D::Adapter1D(Context *rsc) : ObjectBase(rsc) { in Adapter1D() 28 Adapter1D::Adapter1D(Context *rsc, Allocation *a) : ObjectBase(rsc) { in Adapter1D() 95 Adapter2D::Adapter2D(Context *rsc) : ObjectBase(rsc) { in Adapter2D() 99 Adapter2D::Adapter2D(Context *rsc, Allocation *a) : ObjectBase(rsc) { in Adapter2D()
|
D | rsScript.cpp | 23 Script::Script(Context *rsc) : ObjectBase(rsc) { in Script() 84 void Script::setVarObj(uint32_t slot, ObjectBase *val) { in setVarObj() 102 : ObjectBase(rsc) { in ScriptKernelID() 122 ScriptFieldID::ScriptFieldID(Context *rsc, Script *s, int slot) : ObjectBase(rsc) { in ScriptFieldID() 221 ObjectBase *o = static_cast<ObjectBase *>(value); in rsi_ScriptSetVarObj()
|
D | rsType.cpp | 30 Type::Type(Context *rsc) : ObjectBase(rsc) { in Type() 136 ObjectBase::dumpLOGV(prefix); in dumpLOGV() 213 ObjectBase::asyncLock(); in getTypeRef() 224 ObjectBase::asyncUnlock(); in getTypeRef() 227 ObjectBase::asyncUnlock(); in getTypeRef() 241 ObjectBase::asyncLock(); in getTypeRef() 243 ObjectBase::asyncUnlock(); in getTypeRef()
|
D | rsScriptC_Lib.cpp | 137 void rsrSetObject(const Context *rsc, ObjectBase **dst, ObjectBase * src) { in rsrSetObject() 150 void rsrClearObject(const Context *rsc, ObjectBase **dst) { in rsrClearObject() 159 bool rsrIsObject(const Context *rsc, const ObjectBase *src) { in rsrIsObject()
|
D | rsContext.cpp | 460 ObjectBase::zeroAllUserRef(this); in destroyWorkerThreadResources() 478 ObjectBase::freeAllChildren(this); in destroyWorkerThreadResources() 726 void Context::assignName(ObjectBase *obj, const char *name, uint32_t len) { in assignName() 732 void Context::removeName(ObjectBase *obj) { in removeName() 838 ObjectBase *ob = static_cast<ObjectBase *>(obj); in rsi_AssignName() 843 ObjectBase *ob = static_cast<ObjectBase *>(optr); in rsi_ObjDestroy() 867 ObjectBase::dumpAll(rsc); in rsi_ContextDump() 966 ObjectBase *ob = static_cast<ObjectBase *>(obj); in rsaGetName()
|
D | rsAdapter.h | 27 class Adapter1D : public ObjectBase { 61 class Adapter2D : public ObjectBase {
|
D | rsRuntime.h | 138 void rsrSetObject(const Context *, ObjectBase **dst, ObjectBase * src); 139 void rsrClearObject(const Context *, ObjectBase **dst); 140 bool rsrIsObject(const Context *, const ObjectBase *src);
|
D | rsFileA3D.cpp | 32 FileA3D::FileA3D(Context *rsc) : ObjectBase(rsc) { in FileA3D() 229 ObjectBase *FileA3D::initializeFromEntry(size_t index) { in initializeFromEntry() 367 void FileA3D::appendToFile(Context *con, ObjectBase *obj) { in appendToFile() 393 ObjectBase *obj = fa3d->initializeFromEntry(index); in rsaFileA3DGetEntryByIndex()
|
D | rsAnimation.h | 28 class Animation : public ObjectBase {
|
D | rsPath.h | 27 class Path : public ObjectBase {
|
D | rsSampler.h | 37 class Sampler : public ObjectBase {
|
D | rsMesh.h | 36 class Mesh : public ObjectBase {
|
/frameworks/rs/cpu_ref/ |
D | rsCpuIntrinsicLUT.cpp | 33 virtual void setGlobalObj(uint32_t slot, ObjectBase *data); 50 void RsdCpuScriptIntrinsicLUT::setGlobalObj(uint32_t slot, ObjectBase *data) { in setGlobalObj()
|
D | rsCpuIntrinsicYuvToRGB.cpp | 41 virtual void setGlobalObj(uint32_t slot, ObjectBase *data); 58 void RsdCpuScriptIntrinsicYuvToRGB::setGlobalObj(uint32_t slot, ObjectBase *data) { in setGlobalObj()
|