Lines Matching refs:videoState
158 public void answerVideo(String callId, int videoState) {
161 args.argi1 = videoState;
331 int videoState = args.argi1;
332 answerVideo(callId, videoState);
508 public void onVideoStateChanged(Conference c, int videoState) {
510 Log.d(this, "onVideoStateChanged set video state %d", videoState);
511 mAdapter.setVideoState(id, videoState);
582 public void onVideoStateChanged(Connection c, int videoState) {
584 Log.d(this, "Adapter set video state %d", videoState);
585 mAdapter.setVideoState(id, videoState);
800 private void answerVideo(String callId, int videoState) { in answerVideo() argument
802 findConnectionForAction(callId, "answer").onAnswer(videoState); in answerVideo()