Home
last modified time | relevance | path

Searched refs:decodePath (Results 1 – 25 of 267) sorted by relevance

1234567891011

/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/utils/
H A DFileUtils.cpp274 std::string decodePath = CURL::Decode(filePath); in CheckFileAccessAllowed() local
275 size_t pos = decodePath.find("image://"); in CheckFileAccessAllowed()
279 decodePath.erase(pos, 8); in CheckFileAccessAllowed()
280 URIUtils::RemoveSlashAtEnd(decodePath); in CheckFileAccessAllowed()
281 …if (StringUtils::StartsWith(decodePath, "music@") || StringUtils::StartsWith(decodePath, "video@")) in CheckFileAccessAllowed()
282 decodePath.erase(pos, 6); in CheckFileAccessAllowed()
288 if (decodePath.find(b) != std::string::npos) in CheckFileAccessAllowed()
297 char *fullpath = realpath(decodePath.c_str(), nullptr); in CheckFileAccessAllowed()
321 CURL url(decodePath); in CheckFileAccessAllowed()
325 g_charsetConverter.utf8ToW(decodePath, decodePathW, false); in CheckFileAccessAllowed()
[all …]
/dports/www/baikal/baikal/vendor/sabre/http/tests/HTTP/
H A DURLUtilTest.php29 $this->assertEquals($str, decodePath($newStr));
60 $newStr = decodePath($str);
70 $newStr = decodePath($str);
80 $newStr = decodePath($str);
92 $newStr = decodePath($str);
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/includes/sabre/sabre/http/tests/HTTP/
H A DURLUtilTest.php25 $this->assertEquals($str, URLUtil::decodePath($newStr));
56 $newStr = URLUtil::decodePath($str);
67 $newStr = URLUtil::decodePath($str);
78 $newStr = URLUtil::decodePath($str);
91 $newStr = URLUtil::decodePath($str);
/dports/audio/ampache/ampache-php74-5.0.0/vendor/sabre/http/tests/HTTP/
H A DURLUtilTest.php25 $this->assertEquals($str, URLUtil::decodePath($newStr));
56 $newStr = URLUtil::decodePath($str);
67 $newStr = URLUtil::decodePath($str);
78 $newStr = URLUtil::decodePath($str);
91 $newStr = URLUtil::decodePath($str);
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/sabre/http/tests/HTTP/
H A DURLUtilTest.php25 $this->assertEquals($str, URLUtil::decodePath($newStr));
56 $newStr = URLUtil::decodePath($str);
67 $newStr = URLUtil::decodePath($str);
78 $newStr = URLUtil::decodePath($str);
91 $newStr = URLUtil::decodePath($str);
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/sabre/http/tests/HTTP/
H A DURLUtilTest.php25 $this->assertEquals($str, URLUtil::decodePath($newStr));
56 $newStr = URLUtil::decodePath($str);
67 $newStr = URLUtil::decodePath($str);
78 $newStr = URLUtil::decodePath($str);
91 $newStr = URLUtil::decodePath($str);
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/internal/location/
H A DLocationHelper.java112 public static File decodePath(File file) { in decodePath() method in LocationHelper
117 String decodePath = LocationHelper.decode(absolute, true); in decodePath() local
118 File f = new File(decodePath); in decodePath()
122 decodePath = LocationHelper.decode(absolute, false); in decodePath()
123 f = new File(decodePath); in decodePath()
/dports/deskutils/egroupware/egroupware/api/src/Vfs/Filesystem/
H A DStreamWrapper.php170 …if (!($this->opened_stream = fopen($path=Vfs::decodePath(Vfs::parse_url($url,PHP_URL_PATH)),$mode,…
312 $path = Vfs::decodePath(Vfs::parse_url($url,PHP_URL_PATH));
371 return rename(Vfs::decodePath($from['path']),Vfs::decodePath($to['path']));
389 $path = Vfs::decodePath(Vfs::parse_url($url,PHP_URL_PATH));
423 $path = Vfs::decodePath(Vfs::parse_url($url,PHP_URL_PATH));
456 $path = Vfs::decodePath(Vfs::parse_url($url, PHP_URL_PATH));
483 $path = Vfs::decodePath(Vfs::parse_url($this->opened_dir_url = $url,PHP_URL_PATH));
524 $path = Vfs::decodePath($parts['path']);
/dports/deskutils/kdepim-addons/kdepim-addons-21.12.3/plugins/messageviewer/bodypartformatter/gnupgwks/
H A Dpgpkeyurlhandler.cpp27 QUrlQuery ApplicationPgpKeyUrlHandler::decodePath(const QString &path) const in decodePath() function in ApplicationPgpKeyUrlHandler
44 const QUrlQuery q = decodePath(path); in statusBarMessage()
59 const QUrlQuery q = decodePath(path); in handleClick()
/dports/audio/ampache/ampache-php74-5.0.0/vendor/sabre/http/lib/
H A DURLUtil.php57 static function decodePath($path) { function in Sabre\\HTTP\\URLUtil
59 return decodePath($path);
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/includes/sabre/sabre/http/lib/
H A DURLUtil.php57 static function decodePath($path) { function in Sabre\\HTTP\\URLUtil
59 return decodePath($path);
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/includes/sabre/sabre/http/lib/
H A DURLUtil.php57 static function decodePath($path) { function in Sabre\\HTTP\\URLUtil
59 return decodePath($path);
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/sabre/http/lib/
H A DURLUtil.php57 static function decodePath($path) { function in Sabre\\HTTP\\URLUtil
59 return decodePath($path);
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/sabre/http/lib/
H A DURLUtil.php57 static function decodePath($path) { function in Sabre\\HTTP\\URLUtil
59 return decodePath($path);
/dports/devel/hadoop2/jetty-6.1.14/modules/util/src/test/java/org/mortbay/util/
H A DURITest.java66 assertEquals("foo%23;,:=b a r",URIUtil.decodePath("foo%2523%3b%2c:%3db%20a%20r")); in testDecodePath()
67 …assertEquals("foo%23;,:=b a r=",URIUtil.decodePath("xxxfoo%2523%3b%2c:%3db%20a%20r%3Dxxx".getBytes… in testDecodePath()
68 assertEquals("fää%23;,:=b a r=",URIUtil.decodePath("fää%2523%3b%2c:%3db%20a%20r%3D")); in testDecodePath()
69 …assertEquals("f\u0629\u0629%23;,:=b a r",URIUtil.decodePath("f%d8%a9%d8%a9%2523%3b%2c:%3db%20a%20r… in testDecodePath()
/dports/devel/hadoop/jetty-6.1.14/modules/util/src/test/java/org/mortbay/util/
H A DURITest.java66 assertEquals("foo%23;,:=b a r",URIUtil.decodePath("foo%2523%3b%2c:%3db%20a%20r")); in testDecodePath()
67 …assertEquals("foo%23;,:=b a r=",URIUtil.decodePath("xxxfoo%2523%3b%2c:%3db%20a%20r%3Dxxx".getBytes… in testDecodePath()
68 assertEquals("fää%23;,:=b a r=",URIUtil.decodePath("fää%2523%3b%2c:%3db%20a%20r%3D")); in testDecodePath()
69 …assertEquals("f\u0629\u0629%23;,:=b a r",URIUtil.decodePath("f%d8%a9%d8%a9%2523%3b%2c:%3db%20a%20r… in testDecodePath()
/dports/www/bolt/bolt-2.2.24/vendor/justinrainbow/json-schema/src/JsonSchema/Entity/
H A DJsonPointer.php49 $path = $this->decodePath($path);
73 private function decodePath($path) function in JsonSchema\\Entity\\JsonPointer
/dports/www/grafana8/grafana-8.3.6/vendor/golang.org/x/exp/sumdb/internal/sumweb/
H A Dencode_test.go46 _, err := decodePath(bad)
58 path, err := decodePath(enc)
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/golang.org/x/exp/sumdb/internal/sumweb/
H A Dencode_test.go46 _, err := decodePath(bad)
58 path, err := decodePath(enc)
/dports/www/nextcloud/nextcloud/3rdparty/justinrainbow/json-schema/src/JsonSchema/Entity/
H A DJsonPointer.php59 $path = $this->decodePath($path);
84 private function decodePath($path) function in JsonSchema\\Entity\\JsonPointer
/dports/irc/kvirc/KVIrc-5.0.0-73-gbdeac0429/src/kvilib/ext/
H A DKviStringConversion.cpp73 void decodePath(QString & szBuffer) in decodePath() function
102 void decodePath(QStringList & buffer) in decodePath() function
105 decodePath(it); in decodePath()
184 decodePath(szPath); in fromString()
/dports/www/gitea/gitea-1.16.5/vendor/github.com/blevesearch/bleve/v2/mapping/
H A Dreflect.go23 pathParts := decodePath(path)
68 func decodePath(path string) []string { func
/dports/security/keybase/client-v5.7.1/go/vendor/github.com/blevesearch/bleve/mapping/
H A Dreflect.go23 pathParts := decodePath(path)
68 func decodePath(path string) []string { func
/dports/www/mattermost-server/mattermost-server-6.0.2/vendor/github.com/blevesearch/bleve/mapping/
H A Dreflect.go23 pathParts := decodePath(path)
68 func decodePath(path string) []string { func
/dports/audio/pms-devel/pms-c94e3c6/vendor/github.com/blevesearch/bleve/mapping/
H A Dreflect.go23 pathParts := decodePath(path)
65 func decodePath(path string) []string {

1234567891011