Home
last modified time | relevance | path

Searched refs:ChangeDisc (Results 1 – 13 of 13) sorted by relevance

/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/Core/HW/DVD/
H A DDVDInterface.h123 void ChangeDisc(const std::vector<std::string>& paths); // Must only be called on the CPU thread
124 void ChangeDisc(const std::string& new_path); // Must only be called on the CPU thread
H A DDVDInterface.cpp500 void ChangeDisc(const std::vector<std::string>& paths) in ChangeDisc() function
510 ChangeDisc(paths[0]); in ChangeDisc()
514 void ChangeDisc(const std::string& new_path) in ChangeDisc() function
547 ChangeDisc(s_auto_disc_change_paths[s_auto_disc_change_index]); in AutoChangeDisc()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/DolphinQt/
H A DHotkeyScheduler.h26 void ChangeDisc();
H A DMainWindow.cpp453 connect(m_menu_bar, &MenuBar::ChangeDisc, this, &MainWindow::ChangeDisc); in ConnectMenuBar()
534 connect(m_hotkey_scheduler, &HotkeyScheduler::ChangeDisc, this, &MainWindow::ChangeDisc); in ConnectHotkeys()
703 void MainWindow::ChangeDisc() in ChangeDisc() function in MainWindow
708 Core::RunAsCPUThread([&paths] { DVDInterface::ChangeDisc(paths); }); in ChangeDisc()
H A DMenuBar.h50 void ChangeDisc();
H A DMainWindow.h180 void ChangeDisc();
H A DHotkeyScheduler.cpp171 emit ChangeDisc(); in Run()
H A DMenuBar.cpp211 m_change_disc = file_menu->addAction(tr("Change &Disc..."), this, &MenuBar::ChangeDisc); in AddFileMenu()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/DolphinQt/GameList/
H A DGameList.h69 void ChangeDisc();
H A DGameList.cpp306 QAction* change_disc = menu->addAction(tr("Change &Disc"), this, &GameList::ChangeDisc); in ShowContextMenu()
662 void GameList::ChangeDisc() in ChangeDisc() function in GameList
668 Core::RunAsCPUThread([file_path = game->GetFilePath()] { DVDInterface::ChangeDisc(file_path); }); in ChangeDisc()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/
H A DNativeLibrary.java374 public static native void ChangeDisc(String path); in ChangeDisc() method in NativeLibrary
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Android/jni/
H A DMainAndroid.cpp637 Core::RunAsCPUThread([&path] { DVDInterface::ChangeDisc(path); }); in Java_org_dolphinemu_dolphinemu_NativeLibrary_ChangeDisc()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/activities/
H A DEmulationActivity.java415 NativeLibrary.ChangeDisc(newDiscPath); in onActivityResult()