| /OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/ |
| H A D | ODbL-1.0 | 2 ## ODC Open Database License (ODbL) 6 The Open Database License (ODbL) is a license agreement intended to 7 allow users to freely share, modify, and use this Database while 12 the ODbL is also an agreement in contract for users of this Database to 13 act in certain ways in return for accessing this Database. 17 and so the ODbL only governs the rights over the Database, and not the 18 contents of the Database individually. Licensors should use the ODbL 44 "Collective Database" – Means this Database in unmodified form as part 47 Database will not be considered a Derivative Database. 49 "Convey" – As a verb, means Using the Database, a Derivative Database, [all …]
|
| H A D | ODC-By-1.0 | 5 …agreement intended to allow users to freely share, modify, and use this Database subject only to t… 7 …and so this license only governs the rights over the Database, and not the contents of the Databas… 23 …Database" – Means this Database in unmodified form as part of a collection of independent database… 25 …Database, a Derivative Database, or the Database as part of a Collective Database in any way that … 27 …s Database, which includes the information, independent works, or other material collected into th… 29 "Database" – A collection of material (the Contents) arranged in a systematic or methodical way and… 31 "Database Directive" – Means Directive 96/9/EC of the European Parliament and of the Council of 11 … 33 "Database Right" – Means rights resulting from the Chapter III ("sui generis") rights in the Databa… 35 …Database" – Means a database based upon the Database, and includes any translation, adaptation, ar… 39 …license agreement and is both a license of rights such as copyright and Database Rights and an agr… [all …]
|
| H A D | PDDL-1.0 | 34 … - The contents of the Database, which includes the information, independent works, or other mater… 36 "Database" - A collection of Data arranged in a systematic or methodical way and individually acces… 38 "Database Right" - Means rights over Data resulting from the Chapter III ("sui generis") rights in … 44 "Use" - As a verb, means doing any act that is restricted by Copyright or Database Rights whether i… 46 "Work" - Means either or both of the Database and Data offered under the terms of this Document. 56 …a. A dedication to the public domain and waiver of Copyright and Database Rights over the Work; and 58 …b. A licence of Copyright and Database Rights over the Work in jurisdictions that do not allow for… 62 …Database model or schema, which is the structure, arrangement, and organisation of the Database, a… 64 …Database Rights. Database Rights only extend to the extraction and re-utilisation of the whole or … 68 … This Document does not apply to computer programs used in the making or operation of the Database; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/ |
| H A D | sqlite3.hpp | 69 class Database { class 71 Database(std::unique_ptr<DatabaseImpl>); 72 Database(const Database &) = delete; 73 Database &operator=(const Database &) = delete; 76 …static mapbox::util::variant<Database, Exception> tryOpen(const std::string &filename, int flags =… 77 static Database open(const std::string &filename, int flags = 0); 79 Database(Database &&); 80 ~Database(); 81 Database &operator=(Database &&); 96 Statement(Database& db, const char* sql); [all …]
|
| H A D | sqlite3.cpp | 26 mbgl::Log::Error(mbgl::Event::Database, "%s (Code %i)", sqlite3_errmsg(db), error); in ~DatabaseImpl() 69 mbgl::Log::Record(mbgl::EventSeverity::Info, mbgl::Event::Database, err, "%s", msg); in errorLogCallback() 87 mapbox::util::variant<Database, Exception> Database::tryOpen(const std::string &filename, int flags… in tryOpen() 94 return Database(std::make_unique<DatabaseImpl>(db)); in tryOpen() 97 Database Database::open(const std::string &filename, int flags) { in open() 102 return std::move(result.get<Database>()); in open() 106 Database::Database(std::unique_ptr<DatabaseImpl> impl_) in Database() function in mapbox::sqlite::Database 110 Database::Database(Database &&other) in Database() function in mapbox::sqlite::Database 113 Database &Database::operator=(Database &&other) { in operator =() 118 Database::~Database() = default; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/ |
| H A D | sqlite3.cpp | 102 mapbox::util::variant<Database, Exception> Database::tryOpen(const std::string &filename, int flags… in tryOpen() 127 return Database(std::make_unique<DatabaseImpl>(connectionName)); in tryOpen() 130 Database Database::open(const std::string &filename, int flags) { in open() 135 return std::move(result.get<Database>()); in open() 139 Database::Database(std::unique_ptr<DatabaseImpl> impl_) in Database() function in mapbox::sqlite::Database 143 Database::Database(Database &&other) in Database() function in mapbox::sqlite::Database 148 Database &Database::operator=(Database &&other) { in operator =() 154 Database::~Database() { in ~Database() 157 void Database::setBusyTimeout(std::chrono::milliseconds timeout) { in setBusyTimeout() 184 void Database::exec(const std::string &sql) { in exec() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-connectivity/mobile-broadband-provider-info/ |
| H A D | mobile-broadband-provider-info_git.bb | 1 SUMMARY = "Mobile Broadband Service Provider Database" 3 …ON = "Mobile Broadband Service Provider Database stores service provider specific information. Whe…
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/ |
| H A D | offline_database.cpp | 28 Log::Error(Event::Database, (int)ex.code, ex.what()); in ~OfflineDatabase() 33 auto result = mapbox::sqlite::Database::tryOpen(path, mapbox::sqlite::ReadWriteCreate); in ensureSchema() 39 result = mapbox::sqlite::Database::open(path, mapbox::sqlite::ReadWriteCreate); in ensureSchema() 41 Log::Error(Event::Database, "Unexpected error connecting to database: %s", ex.what()); in ensureSchema() 47 assert(result.is<mapbox::sqlite::Database>()); in ensureSchema() 48 …db = std::make_unique<mapbox::sqlite::Database>(std::move(result.get<mapbox::sqlite::Database>())); in ensureSchema() 90 …db = std::make_unique<mapbox::sqlite::Database>(mapbox::sqlite::Database::open(path, mapbox::sqlit… in ensureSchema() 101 …Log::Error(Event::Database, "Unexpected error creating database schema: %s", util::toString(std::c… in ensureSchema() 111 Log::Warning(Event::Database, "Removing existing incompatible offline database"); in removeExisting() 119 Log::Error(Event::Database, ex.code, ex.what()); in removeExisting() [all …]
|
| H A D | offline_database.hpp | 18 class Database; 103 std::unique_ptr<mapbox::sqlite::Database> db;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/info/ |
| H A D | libc.info-16 | 461 * _PATH_UTMP: (libc)Manipulating the Database. 462 * _PATH_WTMP: (libc)Manipulating the Database. 822 * endnetent: (libc)Networks Database. 824 * endprotoent: (libc)Protocols Database. 826 * endservent: (libc)Services Database. 827 * endutent: (libc)Manipulating the Database. 1121 * getnetbyaddr: (libc)Networks Database. 1122 * getnetbyname: (libc)Networks Database. 1123 * getnetent: (libc)Networks Database. 1142 * getprotobyname: (libc)Protocols Database. [all …]
|
| H A D | libc.info | 461 * _PATH_UTMP: (libc)Manipulating the Database. 462 * _PATH_WTMP: (libc)Manipulating the Database. 822 * endnetent: (libc)Networks Database. 824 * endprotoent: (libc)Protocols Database. 826 * endservent: (libc)Services Database. 827 * endutent: (libc)Manipulating the Database. 1121 * getnetbyaddr: (libc)Networks Database. 1122 * getnetbyname: (libc)Networks Database. 1123 * getnetent: (libc)Networks Database. 1142 * getprotobyname: (libc)Protocols Database. [all …]
|
| H A D | dir | 51 * _PATH_UTMP: (libc)Manipulating the Database. 52 * _PATH_WTMP: (libc)Manipulating the Database. 501 * endnetent: (libc)Networks Database. 503 * endprotoent: (libc)Protocols Database. 505 * endservent: (libc)Services Database. 506 * endutent: (libc)Manipulating the Database. 907 * getnetbyaddr: (libc)Networks Database. 908 * getnetbyname: (libc)Networks Database. 909 * getnetent: (libc)Networks Database. 928 * getprotobyname: (libc)Protocols Database. [all …]
|
| H A D | libc.info-14 | 461 * _PATH_UTMP: (libc)Manipulating the Database. 462 * _PATH_WTMP: (libc)Manipulating the Database. 822 * endnetent: (libc)Networks Database. 824 * endprotoent: (libc)Protocols Database. 826 * endservent: (libc)Services Database. 827 * endutent: (libc)Manipulating the Database. 1121 * getnetbyaddr: (libc)Networks Database. 1122 * getnetbyname: (libc)Networks Database. 1123 * getnetent: (libc)Networks Database. 1142 * getprotobyname: (libc)Protocols Database. [all …]
|
| H A D | libc.info-17 | 461 * _PATH_UTMP: (libc)Manipulating the Database. 462 * _PATH_WTMP: (libc)Manipulating the Database. 822 * endnetent: (libc)Networks Database. 824 * endprotoent: (libc)Protocols Database. 826 * endservent: (libc)Services Database. 827 * endutent: (libc)Manipulating the Database. 1121 * getnetbyaddr: (libc)Networks Database. 1122 * getnetbyname: (libc)Networks Database. 1123 * getnetent: (libc)Networks Database. 1142 * getprotobyname: (libc)Protocols Database. [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/info/ |
| H A D | libc.info-16 | 461 * _PATH_UTMP: (libc)Manipulating the Database. 462 * _PATH_WTMP: (libc)Manipulating the Database. 822 * endnetent: (libc)Networks Database. 824 * endprotoent: (libc)Protocols Database. 826 * endservent: (libc)Services Database. 827 * endutent: (libc)Manipulating the Database. 1121 * getnetbyaddr: (libc)Networks Database. 1122 * getnetbyname: (libc)Networks Database. 1123 * getnetent: (libc)Networks Database. 1142 * getprotobyname: (libc)Protocols Database. [all …]
|
| H A D | libc.info | 461 * _PATH_UTMP: (libc)Manipulating the Database. 462 * _PATH_WTMP: (libc)Manipulating the Database. 822 * endnetent: (libc)Networks Database. 824 * endprotoent: (libc)Protocols Database. 826 * endservent: (libc)Services Database. 827 * endutent: (libc)Manipulating the Database. 1121 * getnetbyaddr: (libc)Networks Database. 1122 * getnetbyname: (libc)Networks Database. 1123 * getnetent: (libc)Networks Database. 1142 * getprotobyname: (libc)Protocols Database. [all …]
|
| H A D | dir | 51 * _PATH_UTMP: (libc)Manipulating the Database. 52 * _PATH_WTMP: (libc)Manipulating the Database. 501 * endnetent: (libc)Networks Database. 503 * endprotoent: (libc)Protocols Database. 505 * endservent: (libc)Services Database. 506 * endutent: (libc)Manipulating the Database. 907 * getnetbyaddr: (libc)Networks Database. 908 * getnetbyname: (libc)Networks Database. 909 * getnetent: (libc)Networks Database. 928 * getprotobyname: (libc)Protocols Database. [all …]
|
| H A D | libc.info-14 | 461 * _PATH_UTMP: (libc)Manipulating the Database. 462 * _PATH_WTMP: (libc)Manipulating the Database. 822 * endnetent: (libc)Networks Database. 824 * endprotoent: (libc)Protocols Database. 826 * endservent: (libc)Services Database. 827 * endutent: (libc)Manipulating the Database. 1121 * getnetbyaddr: (libc)Networks Database. 1122 * getnetbyname: (libc)Networks Database. 1123 * getnetent: (libc)Networks Database. 1142 * getprotobyname: (libc)Protocols Database. [all …]
|
| H A D | libc.info-17 | 461 * _PATH_UTMP: (libc)Manipulating the Database. 462 * _PATH_WTMP: (libc)Manipulating the Database. 822 * endnetent: (libc)Networks Database. 824 * endprotoent: (libc)Protocols Database. 826 * endservent: (libc)Services Database. 827 * endutent: (libc)Manipulating the Database. 1121 * getnetbyaddr: (libc)Networks Database. 1122 * getnetbyname: (libc)Networks Database. 1123 * getnetent: (libc)Networks Database. 1142 * getprotobyname: (libc)Protocols Database. [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-connectivity/gammu/gammu/ |
| H A D | gammu-smsdrc | 60 # Database backends congfiguration 70 # Database directory for sqlite
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/ |
| H A D | frame-buffer.rst | 43 Frame Buffer Video Mode Database 52 Frame Buffer Macintosh Video Mode Database
|
| /OK3568_Linux_fs/kernel/fs/unicode/ |
| H A D | README.utf8data | 2 Character Database for version 12.1.0 of the Unicode standard. 54 Unicode Character Database, please update this README.utf8data file
|
| /OK3568_Linux_fs/buildroot/package/dado/ |
| H A D | Config.in | 4 Database Facilities for LuaSQL.
|
| /OK3568_Linux_fs/buildroot/package/python-lmdb/ |
| H A D | Config.in | 5 Universal Python binding for the LMDB 'Lightning' Database.
|
| /OK3568_Linux_fs/buildroot/package/perl-dbi/ |
| H A D | Config.in | 5 Database independent interface for Perl.
|