Lines Matching refs:transaction

820     FragmentTransaction transaction = dialpadFragmentManager.beginTransaction();  in showDialpadFragment()  local
824 transaction.add(getDialpadContainerId(), dialpadFragment, Tags.DIALPAD_FRAGMENT); in showDialpadFragment()
826 transaction.show(dialpadFragment); in showDialpadFragment()
832 transaction.commitAllowingStateLoss(); in showDialpadFragment()
847 FragmentTransaction transaction = dialpadFragmentManager.beginTransaction(); in hideDialpadFragment() local
848 transaction.hide(dialpadFragment); in hideDialpadFragment()
849 transaction.commitAllowingStateLoss(); in hideDialpadFragment()
1200 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); in hideMainInCallFragment() local
1201 hideInCallScreenFragment(transaction); in hideMainInCallFragment()
1202 hideVideoCallScreenFragment(transaction); in hideMainInCallFragment()
1203 transaction.commitAllowingStateLoss(); in hideMainInCallFragment()
1246 FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); in showMainInCallFragment() local
1249 didChange = hideInCallScreenFragment(transaction); in showMainInCallFragment()
1250 didChange |= hideVideoCallScreenFragment(transaction); in showMainInCallFragment()
1251 didChange |= hideRttCallScreenFragment(transaction); in showMainInCallFragment()
1252 didChange |= hideSpeakEasyFragment(transaction); in showMainInCallFragment()
1253 didChange |= showAnswerScreenFragment(transaction, shouldShowAnswerUi.call); in showMainInCallFragment()
1255 didChange = hideInCallScreenFragment(transaction); in showMainInCallFragment()
1256 didChange |= showVideoCallScreenFragment(transaction, shouldShowVideoUi.call); in showMainInCallFragment()
1257 didChange |= hideRttCallScreenFragment(transaction); in showMainInCallFragment()
1258 didChange |= hideSpeakEasyFragment(transaction); in showMainInCallFragment()
1259 didChange |= hideAnswerScreenFragment(transaction); in showMainInCallFragment()
1261 didChange = hideInCallScreenFragment(transaction); in showMainInCallFragment()
1262 didChange |= hideVideoCallScreenFragment(transaction); in showMainInCallFragment()
1263 didChange |= hideAnswerScreenFragment(transaction); in showMainInCallFragment()
1264 didChange |= hideSpeakEasyFragment(transaction); in showMainInCallFragment()
1265 didChange |= showRttCallScreenFragment(transaction, shouldShowRttUi.call); in showMainInCallFragment()
1267 didChange = hideInCallScreenFragment(transaction); in showMainInCallFragment()
1268 didChange |= hideVideoCallScreenFragment(transaction); in showMainInCallFragment()
1269 didChange |= hideAnswerScreenFragment(transaction); in showMainInCallFragment()
1270 didChange |= hideRttCallScreenFragment(transaction); in showMainInCallFragment()
1271 didChange |= showSpeakEasyFragment(transaction, shouldShowSpeakEasyUi.call); in showMainInCallFragment()
1273 didChange = showInCallScreenFragment(transaction); in showMainInCallFragment()
1274 didChange |= hideVideoCallScreenFragment(transaction); in showMainInCallFragment()
1275 didChange |= hideRttCallScreenFragment(transaction); in showMainInCallFragment()
1276 didChange |= hideSpeakEasyFragment(transaction); in showMainInCallFragment()
1277 didChange |= hideAnswerScreenFragment(transaction); in showMainInCallFragment()
1282 transaction.commitNow(); in showMainInCallFragment()
1290 private boolean showSpeakEasyFragment(FragmentTransaction transaction, DialerCall call) { in showSpeakEasyFragment() argument
1297 hideSpeakEasyFragment(transaction); in showSpeakEasyFragment()
1303 transaction.add(R.id.main, speakEasyFragment.get(), Tags.SPEAK_EASY_SCREEN); in showSpeakEasyFragment()
1319 private boolean hideSpeakEasyFragment(FragmentTransaction transaction) { in hideSpeakEasyFragment() argument
1327 transaction.remove(speakEasyFragment); in hideSpeakEasyFragment()
1453 private boolean showAnswerScreenFragment(FragmentTransaction transaction, DialerCall call) { in showAnswerScreenFragment() argument
1485 hideAnswerScreenFragment(transaction); in showAnswerScreenFragment()
1500 transaction.add(R.id.main, answerScreen.getAnswerScreenFragment(), Tags.ANSWER_SCREEN); in showAnswerScreenFragment()
1531 private boolean hideAnswerScreenFragment(FragmentTransaction transaction) { in hideAnswerScreenFragment() argument
1537 transaction.remove(answerScreen.getAnswerScreenFragment()); in hideAnswerScreenFragment()
1544 private boolean showInCallScreenFragment(FragmentTransaction transaction) { in showInCallScreenFragment() argument
1549 transaction.add(R.id.main, inCallScreen.getInCallScreenFragment(), Tags.IN_CALL_SCREEN); in showInCallScreenFragment()
1555 private boolean hideInCallScreenFragment(FragmentTransaction transaction) { in hideInCallScreenFragment() argument
1561 transaction.remove(inCallScreen.getInCallScreenFragment()); in hideInCallScreenFragment()
1567 private boolean showRttCallScreenFragment(FragmentTransaction transaction, DialerCall call) { in showRttCallScreenFragment() argument
1573 hideRttCallScreenFragment(transaction); in showRttCallScreenFragment()
1576 transaction.add(R.id.main, rttCallScreen.getRttCallScreenFragment(), Tags.RTT_CALL_SCREEN); in showRttCallScreenFragment()
1589 private boolean hideRttCallScreenFragment(FragmentTransaction transaction) { in hideRttCallScreenFragment() argument
1595 transaction.remove(rttCallScreen.getRttCallScreenFragment()); in hideRttCallScreenFragment()
1601 private boolean showVideoCallScreenFragment(FragmentTransaction transaction, DialerCall call) { in showVideoCallScreenFragment() argument
1610 hideVideoCallScreenFragment(transaction); in showVideoCallScreenFragment()
1618 transaction.add( in showVideoCallScreenFragment()
1626 private boolean hideVideoCallScreenFragment(FragmentTransaction transaction) { in hideVideoCallScreenFragment() argument
1632 transaction.remove(videoCallScreen.getVideoCallScreenFragment()); in hideVideoCallScreenFragment()