Home
last modified time | relevance | path

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

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
DCachedFrameManager.java54 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) { in newBoundFrame() argument
55 Frame result = findAvailableFrame(format, bindingType, bindingId); in newBoundFrame()
57 result = super.newBoundFrame(format, bindingType, bindingId); in newBoundFrame()
130 private Frame findAvailableFrame(FrameFormat format, int bindingType, long bindingId) { in findAvailableFrame() argument
139 && (bindingType == Frame.NO_BINDING || bindingId == frame.getBindingId())) { in findAvailableFrame()
DSimpleFrameManager.java42 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) { in newBoundFrame() argument
46 GLFrame glFrame = new GLFrame(format, this, bindingType, bindingId); in newBoundFrame()
DFrame.java50 Frame(FrameFormat format, FrameManager frameManager, int bindingType, long bindingId) { in Frame() argument
54 mBindingId = bindingId; in Frame()
DFrameManager.java33 public abstract Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId); in newBoundFrame() argument
DGLFrame.java74 GLFrame(FrameFormat format, FrameManager frameManager, int bindingType, long bindingId) { in GLFrame() argument
75 super(format, frameManager, bindingType, bindingId); in GLFrame()