Searched refs:isProtected (Results 1 - 25 of 29) sorted by relevance

12

/frameworks/native/services/surfaceflinger/RenderEngine/
H A DImage.cpp39 static std::vector<EGLint> buildAttributeList(bool isProtected, int32_t cropWidth, argument
47 if (isProtected && GLExtensions::getInstance().hasProtectedContent()) {
68 bool Image::setNativeWindowBuffer(ANativeWindowBuffer* buffer, bool isProtected, int32_t cropWidth, argument
78 std::vector<EGLint> attrs = buildAttributeList(isProtected, cropWidth, cropHeight);
H A DImage.h32 virtual bool setNativeWindowBuffer(ANativeWindowBuffer* buffer, bool isProtected,
48 bool setNativeWindowBuffer(ANativeWindowBuffer* buffer, bool isProtected, int32_t cropWidth,
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
H A DJavaMethod.java71 public boolean isProtected() { method in class:JavaMethod
72 return Modifier.isProtected(mMethod.getModifiers());
/frameworks/support/lifecycle/compiler/src/main/kotlin/androidx/lifecycle/
H A Delements_ext.kt37 fun ExecutableElement.isProtected() = modifiers.contains(Modifier.PROTECTED)
H A Dtransformation.kt84 && (executable.isPackagePrivate() || executable.isProtected())
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DInjectedMethod.java91 public boolean isProtected() { method in class:InjectedMethod
H A DModelMethod.java35 public abstract boolean isProtected(); method in class:ModelMethod
H A DModelClass.java257 if ((method.isPublic() || (allowProtected && method.isProtected())) &&
/frameworks/native/include/gui/
H A DBufferHubConsumer.h81 status_t setConsumerIsProtected(bool isProtected) override;
H A DBufferQueueConsumer.h135 virtual status_t setConsumerIsProtected(bool isProtected);
H A DIGraphicBufferConsumer.h250 virtual status_t setConsumerIsProtected(bool isProtected) = 0;
/frameworks/native/libs/gui/include/gui/
H A DBufferHubConsumer.h81 status_t setConsumerIsProtected(bool isProtected) override;
H A DBufferQueueConsumer.h135 virtual status_t setConsumerIsProtected(bool isProtected);
H A DIGraphicBufferConsumer.h250 virtual status_t setConsumerIsProtected(bool isProtected) = 0;
/frameworks/native/services/surfaceflinger/
H A DBufferLayer.h81 * isProtected - true if the layer may contain protected content in the
84 bool isProtected() const;
H A DLayerStats.cpp69 base::StringAppendF(&key, ",%d", layer->isProtected);
H A DBufferLayer.cpp100 bool BufferLayer::isProtected() const { function in class:android::BufferLayer
201 bool blackOutLayer = isProtected() || (isSecure() && !renderArea.isSecure());
/frameworks/native/services/surfaceflinger/tests/unittests/mock/RenderEngine/
H A DMockRenderEngine.h102 bool(ANativeWindowBuffer* buffer, bool isProtected, int32_t cropWidth,
/frameworks/base/core/jni/android/graphics/
H A DSurfaceTexture.cpp74 EGLint isProtected = EGL_FALSE; local
75 eglQueryContext(dpy, ctx, EGL_PROTECTED_CONTENT_EXT, &isProtected);
77 return isProtected;
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
H A DAnnotationMethod.java130 public boolean isProtected() { method in class:AnnotationMethod
/frameworks/native/include/layerproto/
H A DLayerProtoParser.h116 bool isProtected; member in class:android::surfaceflinger::LayerProtoParser::Layer
/frameworks/native/services/surfaceflinger/layerproto/include/layerproto/
H A DLayerProtoParser.h116 bool isProtected; member in class:android::surfaceflinger::LayerProtoParser::Layer
/frameworks/native/libs/gui/
H A DIGraphicBufferConsumer.cpp140 status_t setConsumerIsProtected(bool isProtected) override {
142 return callRemote<Signature>(Tag::SET_CONSUMER_IS_PROTECTED, isProtected);
H A DBufferQueueConsumer.cpp717 status_t BufferQueueConsumer::setConsumerIsProtected(bool isProtected) { argument
719 BQ_LOGV("setConsumerIsProtected: %s", isProtected ? "true" : "false");
721 mCore->mConsumerIsProtected = isProtected;
/frameworks/native/services/surfaceflinger/layerproto/
H A DLayerProtoParser.cpp125 layer->isProtected = layerProto.is_protected();

Completed in 726 milliseconds

12