Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/gl/
H A Dprogram.hpp64 optional<std::string> cachePath = programParameters.cachePath(name); in createProgram() local
65 if (cachePath && context.supportsProgramBinaries()) { in createProgram()
69 if (auto cachedBinaryProgram = util::readFile(*cachePath)) { in createProgram()
90 util::write_file(*cachePath, binaryProgram->serialize()); in createProgram()
91 Log::Warning(Event::OpenGL, "Caching program in: %s", (*cachePath).c_str()); in createProgram()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Ddefault_file_source.cpp22 …Impl(std::shared_ptr<FileSource> assetFileSource_, std::string cachePath, uint64_t maximumCacheSiz… in Impl() argument
25 , offlineDatabase(std::make_unique<OfflineDatabase>(cachePath, maximumCacheSize)) { in Impl()
202 DefaultFileSource::DefaultFileSource(const std::string& cachePath, in DefaultFileSource() argument
205 : DefaultFileSource(cachePath, std::make_unique<AssetFileSource>(assetRoot), maximumCacheSize) { in DefaultFileSource()
208 DefaultFileSource::DefaultFileSource(const std::string& cachePath, in DefaultFileSource() argument
212 …, impl(std::make_unique<util::Thread<Impl>>("DefaultFileSource", assetFileSource, cachePath, maxim… in DefaultFileSource()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/storage/
H A Ddefault_file_source.hpp29 DefaultFileSource(const std::string& cachePath,
32 DefaultFileSource(const std::string& cachePath,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dprogram_parameters.hpp15 optional<std::string> cachePath(const char* name) const;
H A Dprogram_parameters.cpp28 optional<std::string> ProgramParameters::cachePath(const char* name) const { in cachePath() function in mbgl::ProgramParameters
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl.cpp96 const std::string& cachePath, const std::string& assetRoot, uint64_t maximumCacheSize) { in sharedDefaultFileSource() argument
112 auto sharedFileSource = fileSources.find(cachePath); in sharedDefaultFileSource()
119 cachePath, assetRoot, maximumCacheSize); in sharedDefaultFileSource()
121 fileSources[cachePath] = newFileSource; in sharedDefaultFileSource()