Home
last modified time | relevance | path

Searched refs:ResultCode (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Dsqlite3.hpp18 enum class ResultCode : int { enum
49 : std::runtime_error(msg), code(static_cast<ResultCode>(err)) { in Exception()
51 Exception(ResultCode err, const char* msg) in Exception()
55 : std::runtime_error(msg), code(static_cast<ResultCode>(err)) { in Exception()
57 Exception(ResultCode err, const std::string& msg) in Exception()
60 const ResultCode code = ResultCode::OK;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dsqlite3.cpp28 static_assert(mbgl::underlying_type(ResultCode::OK) == 0, "error");
30 static_assert(mbgl::underlying_type(ResultCode::CantOpen) == 14, "error");
32 static_assert(mbgl::underlying_type(ResultCode::NotADB) == 26, "error");
104 return Exception { ResultCode::CantOpen, "SQLite driver not found." }; in tryOpen()
124 return Exception { ResultCode::CantOpen, "Error opening the database." }; in tryOpen()
180 throw Exception { ResultCode::CantOpen, "Error opening the database." }; in setBusyTimeout()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/
H A Doffline_database.cpp36 if (ex.code == mapbox::sqlite::ResultCode::NotADB) { in ensureSchema()
79 if (ex.code == mapbox::sqlite::ResultCode::NotADB) { in ensureSchema()