Home | History | Annotate | Download | only in filterfw

Lines Matching refs:holder

48         public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
49 // This just makes sure the holder is still the one we expect.
50 onSurfaceCreated(holder);
54 public void surfaceCreated (SurfaceHolder holder) {
55 onSurfaceCreated(holder);
59 public void surfaceDestroyed (SurfaceHolder holder) {
71 SurfaceHolder holder = ((SurfaceView)view).getHolder();
72 if (holder == null) {
76 setSurfaceHolder(holder);
82 public void setSurfaceHolder(SurfaceHolder holder) {
86 mSurfaceHolder = holder;
128 // Synchronize the surface holder in case another filter is accessing this surface.
189 private synchronized void onSurfaceCreated(SurfaceHolder holder) {
190 if (mSurfaceHolder != holder) {
191 throw new RuntimeException("Unexpected Holder!");