Home | History | Annotate | Download | only in onemedia

Lines Matching refs:cb

124         public void sendRequest(String action, Bundle params, IRequestCallback cb) {
133 public void registerCallback(final IPlayerCallback cb) throws RemoteException {
134 if (!mCbs.contains(cb)) {
135 mCbs.add(cb);
136 cb.asBinder().linkToDeath(new IBinder.DeathRecipient() {
139 mCbs.remove(cb);
144 cb.onSessionChanged(getSessionToken());
146 mCbs.remove(cb);
152 public void unregisterCallback(IPlayerCallback cb) throws RemoteException {
153 mCbs.remove(cb);