Home
last modified time | relevance | path

Searched refs:nextSessionUrl (Results 1 – 6 of 6) sorted by relevance

/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/model/
H A DSessionOpener.java85 public void switchSession(String nextSessionUrl) in switchSession() argument
89 if (!StringUtil.isNullOrEmpty(nextSessionUrl)) in switchSession()
95 nextSessionUrl = nextSessionUrl + "?" + query; in switchSession()
97 pApplication_.get().navigateWindowWithDelay(nextSessionUrl); in switchSession()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/node/desktop/src/main/
H A Dsession-launcher.ts104 private nextSessionUrl?: string;
424 this.nextSessionUrl = launchContext.url;
433 if (this.nextSessionUrl) {
434 this.mainWindow?.loadUrl(this.nextSessionUrl);
435 this.nextSessionUrl = undefined;
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/
H A DSessionHttpMethods.hpp58 std::string nextSessionUrl();
H A DSessionHttpMethods.cpp985 std::string nextSessionUrl() in nextSessionUrl() function
H A DSessionMain.cpp1163 switchProjects = !http_methods::nextSessionUrl().empty(); in rQuit()
1176 jsonData["next_session_url"] = http_methods::nextSessionUrl(); in rQuit()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/application/
H A DApplication.java720 String nextSessionUrl = event.getNextSessionUrl(); in onQuit() local
721 sessionOpener_.switchSession(nextSessionUrl); in onQuit()