Home
last modified time | relevance | path

Searched refs:lastError (Results 1 – 14 of 14) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-core/libxml/libxml2/
H A Druntest.patch245 - if ((lastError == 0) || (res != NULL))
246 + if ((lastError == 0) || (res != NULL)) {
255 - if ((lastError == 0) || (res != NULL))
256 + if ((lastError == 0) || (res != NULL)) {
264 - if ((lastError != XML_ERR_INVALID_CHAR) && (res != NULL))
265 + if ((lastError != XML_ERR_INVALID_CHAR) && (res != NULL)) {
291 - if ((lastError == 0) || (res != NULL))
292 + if ((lastError == 0) || (res != NULL)) {
305 - if ((lastError == 0) || (res != NULL))
306 + if ((lastError == 0) || (res != NULL)) {
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/database/
H A Dinitdb.h88 return db.lastError(); in initDb()
97 return q.lastError(); in initDb()
99 return q.lastError(); in initDb()
101 return q.lastError(); in initDb()
104 return q.lastError(); in initDb()
110 return q.lastError(); in initDb()
116 return q.lastError(); in initDb()
H A Dbookwindow.cpp99 showError(model->lastError()); in BookWindow()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dsqlite3.cpp35 QSqlError lastError = query.lastError(); in checkQueryError() local
36 if (lastError.type() != QSqlError::NoError) { in checkQueryError()
38 throw Exception { lastError.nativeErrorCode().toInt(), lastError.text().toStdString() }; in checkQueryError()
40 throw Exception { lastError.number(), lastError.text().toStdString() }; in checkQueryError()
46 QSqlError lastError = db.lastError(); in checkDatabaseError() local
47 if (lastError.type() != QSqlError::NoError) { in checkDatabaseError()
49 throw Exception { lastError.nativeErrorCode().toInt(), lastError.text().toStdString() }; in checkDatabaseError()
51 throw Exception { lastError.number(), lastError.text().toStdString() }; in checkDatabaseError()
/OK3568_Linux_fs/external/xserver/dix/
H A Dextension.c68 static int lastError = FirstExtensionError; variable
84 (unsigned) (lastError + NumErrors > LAST_ERROR)) { in AddExtension()
130 ext->errorBase = lastError; in AddExtension()
131 ext->errorLast = lastError + NumErrors; in AddExtension()
132 lastError += NumErrors; in AddExtension()
210 lastError = FirstExtensionError; in CloseDownExtensions()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/positionpoll/
H A Dqgeoareamonitor_polling.cpp324 lastError = QGeoAreaMonitorSource::NoError; in Q_GLOBAL_STATIC()
348 return lastError; in error()
468 lastError = QGeoAreaMonitorSource::AccessError; in positionError()
471 lastError = QGeoAreaMonitorSource::UnknownSourceError; in positionError()
474 lastError = QGeoAreaMonitorSource::InsufficientPositionInfo; in positionError()
480 emit QGeoAreaMonitorSource::error(lastError); in positionError()
H A Dqgeoareamonitor_polling.h86 QGeoAreaMonitorSource::Error lastError; variable
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dstyle_impl.cpp43 lastError = nullptr; in loadJSON()
51 lastError = nullptr; in loadURL()
300 lastError = error; in onSourceError()
324 lastError = error; in onSpriteError()
H A Dstyle_impl.hpp55 return lastError; in getLastError()
140 std::exception_ptr lastError; member in mbgl::style::Style::Impl
/OK3568_Linux_fs/buildroot/package/php-zmq/
H A D0001-updates-for-php7.4-and-php8.0.patch124 + $lastError = error_get_last();
125 + if(strpos($lastError['message'], 'ZMQDevice::__construct() expects at most 3 parameters, 4 giv…
129 + print_r($lastError);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/geoclue2/
H A Dqgeopositioninfosource_geoclue2.cpp261 const auto error = m_client->lastError(); in createClient()
407 const auto error = location.lastError(); in handleNewLocation()
/OK3568_Linux_fs/kernel/tools/perf/scripts/python/
H A Dexport-to-sqlite.py136 raise Exception("Query failed: " + q.lastError().text())
141 raise Exception("Query failed: " + q.lastError().text())
H A Dexport-to-postgresql.py318 raise Exception("Query failed: " + q.lastError().text())
H A Dexported-sql-viewer.py185 raise Exception("Query failed: " + query.lastError().text())
5064 raise Exception("Failed to open database " + dbname + " error: " + db.lastError().text())