Home
last modified time | relevance | path

Searched refs:savePath (Results 1 – 25 of 704) sorted by relevance

12345678910>>...29

/dports/games/libretro-scummvm/scummvm-7b1e929/backends/saves/posix/
H A Dposix-saves.cpp45 Common::String savePath; in POSIXSaveFileManager() local
50 savePath = home; in POSIXSaveFileManager()
63 savePath = envVar; in POSIXSaveFileManager()
64 savePath += "/.scummvm"; in POSIXSaveFileManager()
68 savePath.clear(); in POSIXSaveFileManager()
72 if (savePath.empty()) { in POSIXSaveFileManager()
83 savePath = ".local/share/"; in POSIXSaveFileManager()
90 savePath += "scummvm/saves"; in POSIXSaveFileManager()
93 savePath.clear(); in POSIXSaveFileManager()
95 savePath = prefix + '/' + savePath; in POSIXSaveFileManager()
[all …]
/dports/games/scummvm/scummvm-2.5.1/backends/saves/posix/
H A Dposix-saves.cpp45 Common::String savePath; in POSIXSaveFileManager() local
50 savePath = home; in POSIXSaveFileManager()
63 savePath = envVar; in POSIXSaveFileManager()
64 savePath += "/.scummvm"; in POSIXSaveFileManager()
68 savePath.clear(); in POSIXSaveFileManager()
72 if (savePath.empty()) { in POSIXSaveFileManager()
83 savePath = ".local/share/"; in POSIXSaveFileManager()
90 savePath += "scummvm/saves"; in POSIXSaveFileManager()
93 savePath.clear(); in POSIXSaveFileManager()
95 savePath = prefix + '/' + savePath; in POSIXSaveFileManager()
[all …]
/dports/games/residualvm/residualvm-0.3.1/backends/saves/posix/
H A Dposix-saves.cpp52 Common::String savePath; in POSIXSaveFileManager()
57 savePath = home; in POSIXSaveFileManager()
70 savePath = envVar; in POSIXSaveFileManager()
71 savePath += "/.residualvm"; in POSIXSaveFileManager()
75 savePath.clear(); in POSIXSaveFileManager()
79 if (savePath.empty()) { in POSIXSaveFileManager()
90 savePath = ".local/share/"; in POSIXSaveFileManager()
97 savePath += "residualvm/saves"; in POSIXSaveFileManager()
100 savePath.clear(); in POSIXSaveFileManager()
102 savePath = prefix + '/' + savePath; in POSIXSaveFileManager()
[all …]
/dports/devel/gitlist/gitlist/vendor/symfony/http-foundation/Session/Storage/
H A DMockFileSessionStorage.php30 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
35 * @param string $savePath Path of directory to save session files
39 public function __construct($savePath = null, $name = 'MOCKSESSID', MetadataBag $metaBag = null) argument
41 if (null === $savePath) {
42 $savePath = sys_get_temp_dir();
45 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
46 …new \RuntimeException(sprintf('Session Storage was not able to create directory "%s"', $savePath));
49 $this->savePath = $savePath;
125 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/www/webtrees/webtrees-1.7.18/webtrees/vendor/symfony/http-foundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
34 public function __construct($savePath = null, $name = 'MOCKSESSID', MetadataBag $metaBag = null) argument
36 if (null === $savePath) {
37 $savePath = sys_get_temp_dir();
40 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
41 …new \RuntimeException(sprintf('Session Storage was not able to create directory "%s"', $savePath));
44 $this->savePath = $savePath;
120 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/www/bolt/bolt-2.2.24/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Storage/Handler/
H A DNativeFileSessionHandler.php26 * @param string $savePath Path of directory to save session files.
34 public function __construct($savePath = null) argument
36 if (null === $savePath) {
37 $savePath = ini_get('session.save_path');
40 $baseDir = $savePath;
42 if ($count = substr_count($savePath, ';')) {
44 … throw new \InvalidArgumentException(sprintf('Invalid argument $savePath \'%s\'', $savePath));
48 $baseDir = ltrim(strrchr($savePath, ';'), ';');
55 ini_set('session.save_path', $savePath);
/dports/www/itop/web/lib/silex/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Storage/Handler/
H A DNativeFileSessionHandler.php26 * @param string $savePath Path of directory to save session files.
34 public function __construct($savePath = null) argument
36 if (null === $savePath) {
37 $savePath = ini_get('session.save_path');
40 $baseDir = $savePath;
42 if ($count = substr_count($savePath, ';')) {
44 … throw new \InvalidArgumentException(sprintf('Invalid argument $savePath \'%s\'', $savePath));
48 $baseDir = ltrim(strrchr($savePath, ';'), ';');
55 ini_set('session.save_path', $savePath);
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Component/HttpFoundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
34 public function __construct($savePath = null, $name = 'MOCKSESSID', MetadataBag $metaBag = null) argument
36 if (null === $savePath) {
37 $savePath = sys_get_temp_dir();
40 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
41 …ew \RuntimeException(sprintf('Session Storage was not able to create directory "%s".', $savePath));
44 $this->savePath = $savePath;
139 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/www/elgg/elgg-3.3.23/vendor/symfony/http-foundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
34 public function __construct($savePath = null, $name = 'MOCKSESSID', MetadataBag $metaBag = null) argument
36 if (null === $savePath) {
37 $savePath = sys_get_temp_dir();
40 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
41 …ew \RuntimeException(sprintf('Session Storage was not able to create directory "%s".', $savePath));
44 $this->savePath = $savePath;
139 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/www/phpbb3/phpBB3/vendor/symfony/http-foundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
34 public function __construct($savePath = null, $name = 'MOCKSESSID', MetadataBag $metaBag = null) argument
36 if (null === $savePath) {
37 $savePath = sys_get_temp_dir();
40 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
41 …ew \RuntimeException(sprintf('Session Storage was not able to create directory "%s".', $savePath));
44 $this->savePath = $savePath;
139 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/deskutils/egroupware/egroupware/vendor/symfony/http-foundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
33 …public function __construct(string $savePath = null, string $name = 'MOCKSESSID', MetadataBag $met… argument
35 if (null === $savePath) {
36 $savePath = sys_get_temp_dir();
39 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
40 …ew \RuntimeException(sprintf('Session Storage was not able to create directory "%s".', $savePath));
43 $this->savePath = $savePath;
136 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/audio/ampache/ampache-php74-5.0.0/vendor/symfony/http-foundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
34 public function __construct($savePath = null, $name = 'MOCKSESSID', MetadataBag $metaBag = null) argument
36 if (null === $savePath) {
37 $savePath = sys_get_temp_dir();
40 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
41 …ew \RuntimeException(sprintf('Session Storage was not able to create directory "%s".', $savePath));
44 $this->savePath = $savePath;
139 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Component/HttpFoundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
34 public function __construct($savePath = null, $name = 'MOCKSESSID', MetadataBag $metaBag = null) argument
36 if (null === $savePath) {
37 $savePath = sys_get_temp_dir();
40 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
41 …ew \RuntimeException(sprintf('Session Storage was not able to create directory "%s".', $savePath));
44 $this->savePath = $savePath;
139 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/www/typo3-9/typo3_src-9.5.31/vendor/symfony/http-foundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
32 …public function __construct(string $savePath = null, string $name = 'MOCKSESSID', MetadataBag $met… argument
34 if (null === $savePath) {
35 $savePath = sys_get_temp_dir();
38 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
39 …ew \RuntimeException(sprintf('Session Storage was not able to create directory "%s".', $savePath));
42 $this->savePath = $savePath;
135 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/www/drupal8/drupal-8.9.20/vendor/symfony/http-foundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
34 public function __construct($savePath = null, $name = 'MOCKSESSID', MetadataBag $metaBag = null) argument
36 if (null === $savePath) {
37 $savePath = sys_get_temp_dir();
40 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
41 …ew \RuntimeException(sprintf('Session Storage was not able to create directory "%s".', $savePath));
44 $this->savePath = $savePath;
139 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/www/itop/web/lib/silex/vendor/symfony/http-foundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
34 public function __construct($savePath = null, $name = 'MOCKSESSID', MetadataBag $metaBag = null) argument
36 if (null === $savePath) {
37 $savePath = sys_get_temp_dir();
40 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
41 …new \RuntimeException(sprintf('Session Storage was not able to create directory "%s"', $savePath));
44 $this->savePath = $savePath;
139 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/www/typo3-10/typo3_src-10.4.25/vendor/symfony/http-foundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
32 …public function __construct(string $savePath = null, string $name = 'MOCKSESSID', MetadataBag $met… argument
34 if (null === $savePath) {
35 $savePath = sys_get_temp_dir();
38 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
39 …ew \RuntimeException(sprintf('Session Storage was not able to create directory "%s".', $savePath));
42 $this->savePath = $savePath;
135 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/sysutils/ldap-account-manager/ldap-account-manager-7.3/lib/3rdParty/composer/symfony/http-foundation/Session/Storage/
H A DMockFileSessionStorage.php27 private $savePath; variable in Symfony\\Component\\HttpFoundation\\Session\\Storage\\MockFileSessionStorage
30 * @param string $savePath Path of directory to save session files
32 …public function __construct(string $savePath = null, string $name = 'MOCKSESSID', MetadataBag $met… argument
34 if (null === $savePath) {
35 $savePath = sys_get_temp_dir();
38 if (!is_dir($savePath) && !@mkdir($savePath, 0777, true) && !is_dir($savePath)) {
39 …ew \RuntimeException(sprintf('Session Storage was not able to create directory "%s".', $savePath));
42 $this->savePath = $savePath;
135 return $this->savePath.'/'.$this->id.'.mocksess';
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/symfony/http-foundation/Session/Storage/Handler/
H A DNativeFileSessionHandler.php22 * @param string $savePath Path of directory to save session files
31 public function __construct(string $savePath = null) argument
33 if (null === $savePath) {
34 $savePath = ini_get('session.save_path');
37 $baseDir = $savePath;
39 if ($count = substr_count($savePath, ';')) {
41 … throw new \InvalidArgumentException(sprintf('Invalid argument $savePath \'%s\'.', $savePath));
45 $baseDir = ltrim(strrchr($savePath, ';'), ';');
52 ini_set('session.save_path', $savePath);
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Component/HttpFoundation/Session/Storage/Handler/
H A DNativeFileSessionHandler.php22 * @param string $savePath Path of directory to save session files
31 public function __construct($savePath = null) argument
33 if (null === $savePath) {
34 $savePath = ini_get('session.save_path');
37 $baseDir = $savePath;
39 if ($count = substr_count($savePath, ';')) {
41 … throw new \InvalidArgumentException(sprintf('Invalid argument $savePath \'%s\'.', $savePath));
45 $baseDir = ltrim(strrchr($savePath, ';'), ';');
52 ini_set('session.save_path', $savePath);
/dports/www/elgg/elgg-3.3.23/vendor/symfony/http-foundation/Session/Storage/Handler/
H A DNativeFileSessionHandler.php22 * @param string $savePath Path of directory to save session files
31 public function __construct($savePath = null) argument
33 if (null === $savePath) {
34 $savePath = ini_get('session.save_path');
37 $baseDir = $savePath;
39 if ($count = substr_count($savePath, ';')) {
41 … throw new \InvalidArgumentException(sprintf('Invalid argument $savePath \'%s\'.', $savePath));
45 $baseDir = ltrim(strrchr($savePath, ';'), ';');
52 ini_set('session.save_path', $savePath);
/dports/deskutils/egroupware/egroupware/vendor/symfony/http-foundation/Session/Storage/Handler/
H A DNativeFileSessionHandler.php22 * @param string $savePath Path of directory to save session files
31 public function __construct(string $savePath = null) argument
33 if (null === $savePath) {
34 $savePath = ini_get('session.save_path');
37 $baseDir = $savePath;
39 if ($count = substr_count($savePath, ';')) {
41 … throw new \InvalidArgumentException(sprintf('Invalid argument $savePath \'%s\'.', $savePath));
45 $baseDir = ltrim(strrchr($savePath, ';'), ';');
52 ini_set('session.save_path', $savePath);
/dports/audio/ampache/ampache-php74-5.0.0/vendor/symfony/http-foundation/Session/Storage/Handler/
H A DNativeFileSessionHandler.php22 * @param string $savePath Path of directory to save session files
31 public function __construct($savePath = null) argument
33 if (null === $savePath) {
34 $savePath = ini_get('session.save_path');
37 $baseDir = $savePath;
39 if ($count = substr_count($savePath, ';')) {
41 … throw new \InvalidArgumentException(sprintf('Invalid argument $savePath \'%s\'.', $savePath));
45 $baseDir = ltrim(strrchr($savePath, ';'), ';');
52 ini_set('session.save_path', $savePath);
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Component/HttpFoundation/Session/Storage/Handler/
H A DNativeFileSessionHandler.php22 * @param string $savePath Path of directory to save session files
31 public function __construct($savePath = null) argument
33 if (null === $savePath) {
34 $savePath = ini_get('session.save_path');
37 $baseDir = $savePath;
39 if ($count = substr_count($savePath, ';')) {
41 … throw new \InvalidArgumentException(sprintf('Invalid argument $savePath \'%s\'.', $savePath));
45 $baseDir = ltrim(strrchr($savePath, ';'), ';');
52 ini_set('session.save_path', $savePath);
/dports/www/phpbb3/phpBB3/vendor/symfony/http-foundation/Session/Storage/Handler/
H A DNativeFileSessionHandler.php22 * @param string $savePath Path of directory to save session files
31 public function __construct($savePath = null) argument
33 if (null === $savePath) {
34 $savePath = ini_get('session.save_path');
37 $baseDir = $savePath;
39 if ($count = substr_count($savePath, ';')) {
41 … throw new \InvalidArgumentException(sprintf('Invalid argument $savePath \'%s\'.', $savePath));
45 $baseDir = ltrim(strrchr($savePath, ';'), ';');
52 ini_set('session.save_path', $savePath);

12345678910>>...29