Home | History | Annotate | Download | only in media

Lines Matching defs:host

53         PlaybackGlueHostImpl host = new PlaybackGlueHostImpl();
55 glue.setHost(host);
56 Mockito.verify(glue, times(1)).onAttachedToHost(host);
57 assertSame(glue, host.mGlue);
58 assertSame(host, glue.getHost());
60 host.notifyOnStart();
63 host.notifyOnResume();
66 host.notifyOnPause();
69 host.notifyOnStop();
73 glue2.setHost(host);
75 Mockito.verify(glue2, times(1)).onAttachedToHost(host);
76 assertSame(glue2, host.mGlue);
77 assertSame(host, glue2.getHost());
80 host.notifyOnDestroy();
82 assertNull(host.mGlue);
90 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl();
92 glue.setHost(host);
125 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl();
128 glue.setHost(host);