| /OK3568_Linux_fs/kernel/drivers/infiniband/core/ |
| H A D | sa_query.c | 739 static inline void ib_sa_disable_local_svc(struct ib_sa_query *query) in ib_sa_disable_local_svc() argument 741 query->flags &= ~IB_SA_ENABLE_LOCAL_SERVICE; in ib_sa_disable_local_svc() 744 static inline int ib_sa_query_cancelled(struct ib_sa_query *query) in ib_sa_query_cancelled() argument 746 return (query->flags & IB_SA_CANCEL); in ib_sa_query_cancelled() 750 struct ib_sa_query *query) in ib_nl_set_path_rec_attrs() argument 752 struct sa_path_rec *sa_rec = query->mad_buf->context[1]; in ib_nl_set_path_rec_attrs() 753 struct ib_sa_mad *mad = query->mad_buf->mad; in ib_nl_set_path_rec_attrs() 759 query->mad_buf->context[1] = NULL; in ib_nl_set_path_rec_attrs() 764 dev_name(&query->port->agent->device->dev), in ib_nl_set_path_rec_attrs() 766 header->port_num = query->port->port_num; in ib_nl_set_path_rec_attrs() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/ |
| H A D | sqlite3.cpp | 34 void checkQueryError(const QSqlQuery& query) { in checkQueryError() argument 35 QSqlError lastError = query.lastError(); in checkQueryError() 84 StatementImpl(const QString& sql, const QSqlDatabase& db) : query(db) { in StatementImpl() 85 if (!query.prepare(sql)) { in StatementImpl() 86 checkQueryError(query); in StatementImpl() 91 query.clear(); in ~StatementImpl() 94 QSqlQuery query; member in mapbox::sqlite::StatementImpl 196 QSqlQuery query(QSqlDatabase::database(connectionName)); in exec() local 197 query.prepare(statement); in exec() 199 if (!query.exec()) { in exec() [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/ |
| H A D | tp_attach_query.c | 10 struct perf_event_query_bpf *query; in test_tp_attach_query() local 36 query = malloc(sizeof(*query) + sizeof(__u32) * num_progs); in test_tp_attach_query() 66 /* check NULL prog array query */ in test_tp_attach_query() 67 query->ids_len = num_progs; in test_tp_attach_query() 68 err = ioctl(pmu_fd[i], PERF_EVENT_IOC_QUERY_BPF, query); in test_tp_attach_query() 69 if (CHECK(err || query->prog_cnt != 0, in test_tp_attach_query() 71 "err %d errno %d query->prog_cnt %u\n", in test_tp_attach_query() 72 err, errno, query->prog_cnt)) in test_tp_attach_query() 83 query->ids_len = 0; in test_tp_attach_query() 84 err = ioctl(pmu_fd[i], PERF_EVENT_IOC_QUERY_BPF, query); in test_tp_attach_query() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/ |
| H A D | offline_database.cpp | 231 …mapbox::sqlite::Query accessedQuery{ getStatement("UPDATE resources SET accessed = ?1 WHERE url = … in getResource() 238 mapbox::sqlite::Query query{ getStatement( in getResource() local 245 query.bind(1, resource.url); in getResource() 247 if (!query.run()) { in getResource() 254 response.etag = query.get<optional<std::string>>(0); in getResource() 255 response.expires = query.get<optional<Timestamp>>(1); in getResource() 256 response.mustRevalidate = query.get<bool>(2); in getResource() 257 response.modified = query.get<optional<Timestamp>>(3); in getResource() 259 auto data = query.get<optional<std::string>>(4); in getResource() 262 } else if (query.get<bool>(5)) { in getResource() [all …]
|
| /OK3568_Linux_fs/external/xserver/glx/ |
| H A D | singlesize.c | 54 __glGetMap_size(GLenum target, GLenum query) in __glGetMap_size() argument 59 ** Assume target and query are both valid. in __glGetMap_size() 71 switch (query) { in __glGetMap_size() 76 ** The query above might fail, but then order will be zero anyway. in __glGetMap_size() 94 switch (query) { in __glGetMap_size() 100 ** The query above might fail, but then majorMinor will be zeroes in __glGetMap_size() 114 __glGetMapdv_size(GLenum target, GLenum query) in __glGetMapdv_size() argument 116 return __glGetMap_size(target, query); in __glGetMapdv_size() 120 __glGetMapfv_size(GLenum target, GLenum query) in __glGetMapfv_size() argument 122 return __glGetMap_size(target, query); in __glGetMapfv_size() [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/scripts/python/ |
| H A D | export-to-postgresql.py | 144 # Note that some of the examples are not the most optimal SQL query. 204 # query = QSqlQuery(db) 207 # ret = query.exec_('SELECT * FROM call_paths_view WHERE id = ' + str(call_path_i… 209 # raise Exception("Query failed: " + query.lastError().text()) 210 # if not query.next(): 211 # raise Exception("Query failed") 212 … {3:<30} {4:>6} {5:<30}".format(query.value(0), query.value(1), query.value(2), query.value(3), … 213 # call_path_id = query.value(6) 318 raise Exception("Query failed: " + q.lastError().text()) 323 query = QSqlQuery(db) variable [all …]
|
| H A D | export-to-sqlite.py | 136 raise Exception("Query failed: " + q.lastError().text()) 141 raise Exception("Query failed: " + q.lastError().text()) 160 query = QSqlQuery(db) variable 162 do_query(query, 'PRAGMA journal_mode = OFF') 163 do_query(query, 'BEGIN TRANSACTION') 165 do_query(query, 'CREATE TABLE selected_events (' 168 do_query(query, 'CREATE TABLE machines (' 172 do_query(query, 'CREATE TABLE threads (' 178 do_query(query, 'CREATE TABLE comms (' 184 do_query(query, 'CREATE TABLE comm_threads (' [all …]
|
| H A D | exported-sql-viewer.py | 182 def QueryExec(query, stmt): argument 183 ret = query.exec_(stmt) 185 raise Exception("Query failed: " + query.lastError().text()) 539 query = QSqlQuery(self.glb.db) 544 …QueryExec(query, "SELECT call_path_id, name, short_name, COUNT(calls.id), SUM(return_time - call_t… 554 while query.next(): 556 insn_cnt = int(query.value(5)) 557 cyc_cnt = int(query.value(6)) 558 branch_count = int(query.value(7)) 562 branch_count = int(query.value(5)) [all …]
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | dynamic_debug.c | 122 static void vpr_info_dq(const struct ddebug_query *query, const char *msg) in vpr_info_dq() argument 127 if (query->format) { in vpr_info_dq() 128 fmtlen = strlen(query->format); in vpr_info_dq() 129 while (fmtlen && query->format[fmtlen - 1] == '\n') in vpr_info_dq() 135 query->function ?: "", in vpr_info_dq() 136 query->filename ?: "", in vpr_info_dq() 137 query->module ?: "", in vpr_info_dq() 138 fmtlen, query->format ?: "", in vpr_info_dq() 139 query->first_lineno, query->last_lineno); in vpr_info_dq() 143 * Search the tables for _ddebug's which match the given `query' and [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/ |
| H A D | sqlite3.hpp | 66 class Query; 93 // A Statement object represents a prepared statement that can be run repeatedly run with a Query o… 103 friend class Query; 109 // This flag stores whether there exists a Query object that uses this prepared statement. 110 // There may only be one Query object at a time. Statement objects must outlive Query objects. 111 // While a Query object exists, a Statement object may not be moved or deleted. 116 // A Query object is used to run a database query with a prepared statement (stored in a Statement 117 // object). There may only exist one Query object per Statement object. Query objects are designed 119 class Query { class 121 Query(Statement&); [all …]
|
| H A D | sqlite3.cpp | 156 // Crash if we're destructing this object while we know a Query object references this. in ~Statement() 161 Query::Query(Statement& stmt_) : stmt(stmt_) { in Query() function in mapbox::sqlite::Query 170 Query::~Query() { in ~Query() 179 template <> void Query::bind(int offset, std::nullptr_t) { in bind() 184 template <> void Query::bind(int offset, int8_t value) { in bind() 189 template <> void Query::bind(int offset, int16_t value) { in bind() 194 template <> void Query::bind(int offset, int32_t value) { in bind() 199 template <> void Query::bind(int offset, int64_t value) { in bind() 204 template <> void Query::bind(int offset, uint8_t value) { in bind() 209 template <> void Query::bind(int offset, uint16_t value) { in bind() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacesearchrequest/ |
| H A D | tst_qplacesearchrequest.cpp | 97 QPlaceSearchRequest query; in boundingCircleTest() local 98 QVERIFY2(query.searchArea() == QGeoShape(), "Wrong default value"); in boundingCircleTest() 102 query.setSearchArea(circle); in boundingCircleTest() 104 QVERIFY(query.searchArea() != QGeoShape()); in boundingCircleTest() 105 QVERIFY(query.searchArea().type() == QGeoShape::CircleType); in boundingCircleTest() 106 QVERIFY(query.searchArea() == circle); in boundingCircleTest() 108 QGeoCircle retrievedCircle = query.searchArea(); in boundingCircleTest() 111 query.clear(); in boundingCircleTest() 112 QVERIFY2(query.searchArea() == QGeoShape(), "Search area not cleared"); in boundingCircleTest() 117 QPlaceSearchRequest query; in boundingBoxTest() local [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/ |
| H A D | predicates.hpp | 3 // Spatial query predicates 27 Value will be returned by the query if <tt>bg::within(Geometry, Indexable)</tt> 32 bgi::query(spatial_index, bgi::contains(box), std::back_inserter(result)); 57 Value will be returned by the query if <tt>bg::covered_by(Indexable, Geometry)</tt> 62 bgi::query(spatial_index, bgi::covered_by(box), std::back_inserter(result)); 87 Value will be returned by the query if <tt>bg::covered_by(Geometry, Indexable)</tt> 92 bgi::query(spatial_index, bgi::covers(box), std::back_inserter(result)); 117 Value will be returned by the query if <tt>bg::disjoint(Indexable, Geometry)</tt> 122 bgi::query(spatial_index, bgi::disjoint(box), std::back_inserter(result)); 147 Value will be returned by the query if <tt>bg::intersects(Indexable, Geometry)</tt> [all …]
|
| /OK3568_Linux_fs/kernel/drivers/input/rmi4/ |
| H A D | rmi_f11.c | 36 * a given sensor are described by its query registers. The number of query 38 * queries as well as the sensor query information. 42 * by parsing that sensors query registers. 46 * sensors data registers must be determined by parsing its query registers. 48 * The short story is that we need to read and parse a lot of query 77 /** Defs for Query 1 */ 86 /** Defs for Query 2, 3, and 4. */ 89 /** Defs for Query 5 */ 99 /** Defs for Query 7 */ 109 /** Defs for Query 8 */ [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/ |
| H A D | typeahead.jquery.js | 451 this.query = this.$input.val(); 452 this.queryWhenFocused = this.hasFocus() ? this.query : null; 468 this.queryWhenFocused = this.query; 518 areEquivalent = areQueriesEquivalent(val, this.query); 519 hasDifferentWhitespace = areEquivalent ? this.query.length !== val.length : false; 520 this.query = val; 522 this.trigger("queryChanged", this.query); 524 this.trigger("whitespaceChanged", this.query); 556 return this.query || ""; 563 return this.query !== this.queryWhenFocused; [all …]
|
| /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/include/drm/ |
| H A D | amdgpu_drm.h | 618 * Query h/w info: Flag that this is integrated (a.h.a. fusion) GPU 628 /* query hw IP info */ 630 /* query hw IP instance count for the specified type */ 634 /* Query the firmware version */ 636 /* Subquery id: Query VCE firmware version */ 638 /* Subquery id: Query UVD firmware version */ 640 /* Subquery id: Query GMC firmware version */ 642 /* Subquery id: Query GFX ME firmware version */ 644 /* Subquery id: Query GFX PFP firmware version */ 646 /* Subquery id: Query GFX CE firmware version */ [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/include/drm/ |
| H A D | amdgpu_drm.h | 618 * Query h/w info: Flag that this is integrated (a.h.a. fusion) GPU 628 /* query hw IP info */ 630 /* query hw IP instance count for the specified type */ 634 /* Query the firmware version */ 636 /* Subquery id: Query VCE firmware version */ 638 /* Subquery id: Query UVD firmware version */ 640 /* Subquery id: Query GMC firmware version */ 642 /* Subquery id: Query GFX ME firmware version */ 644 /* Subquery id: Query GFX PFP firmware version */ 646 /* Subquery id: Query GFX CE firmware version */ [all …]
|
| /OK3568_Linux_fs/kernel/include/uapi/drm/ |
| H A D | amdgpu_drm.h | 671 * Query h/w info: Flag that this is integrated (a.h.a. fusion) GPU 682 /* query hw IP info */ 684 /* query hw IP instance count for the specified type */ 688 /* Query the firmware version */ 690 /* Subquery id: Query VCE firmware version */ 692 /* Subquery id: Query UVD firmware version */ 694 /* Subquery id: Query GMC firmware version */ 696 /* Subquery id: Query GFX ME firmware version */ 698 /* Subquery id: Query GFX PFP firmware version */ 700 /* Subquery id: Query GFX CE firmware version */ [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/ |
| H A D | tst_geocoding.qml | 70 // Query: address 72 emptyModel.query = address1 74 compare (emptyModel.query.street, address1.street) 75 emptyModel.query = address1 77 compare (emptyModel.query.street, address1.street) 78 // Query: coordinate 79 emptyModel.query = coordinate1 81 compare (emptyModel.query.latitude, coordinate1.latitude) 82 emptyModel.query = coordinate1 84 compare (emptyModel.query.latitude, coordinate1.latitude) [all …]
|
| /OK3568_Linux_fs/external/linux-rga/samples/im2d_slt/third-party/libdrm/include/libdrm/ |
| H A D | amdgpu_drm.h | 651 * Query h/w info: Flag that this is integrated (a.h.a. fusion) GPU 661 /* query hw IP info */ 663 /* query hw IP instance count for the specified type */ 667 /* Query the firmware version */ 669 /* Subquery id: Query VCE firmware version */ 671 /* Subquery id: Query UVD firmware version */ 673 /* Subquery id: Query GMC firmware version */ 675 /* Subquery id: Query GFX ME firmware version */ 677 /* Subquery id: Query GFX PFP firmware version */ 679 /* Subquery id: Query GFX CE firmware version */ [all …]
|
| /OK3568_Linux_fs/external/linux-rga/samples/utils/3rdparty/libdrm/include/libdrm/ |
| H A D | amdgpu_drm.h | 651 * Query h/w info: Flag that this is integrated (a.h.a. fusion) GPU 661 /* query hw IP info */ 663 /* query hw IP instance count for the specified type */ 667 /* Query the firmware version */ 669 /* Subquery id: Query VCE firmware version */ 671 /* Subquery id: Query UVD firmware version */ 673 /* Subquery id: Query GMC firmware version */ 675 /* Subquery id: Query GFX ME firmware version */ 677 /* Subquery id: Query GFX PFP firmware version */ 679 /* Subquery id: Query GFX CE firmware version */ [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkisp_demo/demo/include/libdrm/ |
| H A D | amdgpu_drm.h | 651 * Query h/w info: Flag that this is integrated (a.h.a. fusion) GPU 661 /* query hw IP info */ 663 /* query hw IP instance count for the specified type */ 667 /* Query the firmware version */ 669 /* Subquery id: Query VCE firmware version */ 671 /* Subquery id: Query UVD firmware version */ 673 /* Subquery id: Query GMC firmware version */ 675 /* Subquery id: Query GFX ME firmware version */ 677 /* Subquery id: Query GFX PFP firmware version */ 679 /* Subquery id: Query GFX CE firmware version */ [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/osm/ |
| H A D | qgeocodingmanagerengineosm.cpp | 115 QUrlQuery query; in geocode() local 116 query.addQueryItem(QStringLiteral("q"), address); in geocode() 117 query.addQueryItem(QStringLiteral("format"), QStringLiteral("json")); in geocode() 118 query.addQueryItem(QStringLiteral("accept-language"), locale().name().left(2)); in geocode() 119 //query.addQueryItem(QStringLiteral("countrycodes"), QStringLiteral("au,jp")); in geocode() 121 … query.addQueryItem(QStringLiteral("viewbox"), boundingBoxToLtrb(bounds.boundingGeoRectangle())); in geocode() 122 query.addQueryItem(QStringLiteral("bounded"), QStringLiteral("1")); in geocode() 124 query.addQueryItem(QStringLiteral("polygon_geojson"), QStringLiteral("1")); in geocode() 125 query.addQueryItem(QStringLiteral("addressdetails"), QStringLiteral("1")); in geocode() 127 query.addQueryItem(QStringLiteral("limit"), QString::number(limit)); in geocode() [all …]
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/rc/test/ |
| H A D | rc_api_test.c | 56 RcApiQueryAll query; in main() local 62 query.brief = briefs; in main() 63 query.max_count = MAX_QUERY_COUNT; in main() 64 query.count = 0; in main() 66 rc_brief_get_all(&query); in main() 68 mpp_log("default rc api query result:\n"); in main() 69 for (i = 0; i < query.count; i++) in main() 77 rc_brief_get_all(&query); in main() 79 mpp_log("rc api query result after adding\n"); in main() 80 for (i = 0; i < query.count; i++) in main()
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/rc/ |
| H A D | rc_impl.cpp | 196 MPP_RET rc_brief_get_all(RcApiQueryAll *query) in rc_brief_get_all() argument 198 if (NULL == query) { in rc_brief_get_all() 199 mpp_err_f("invalide NULL query input\n"); in rc_brief_get_all() 203 RcApiBrief *brief = query->brief; in rc_brief_get_all() 204 RK_S32 *count = &query->count; in rc_brief_get_all() 205 RK_S32 max_count = query->max_count; in rc_brief_get_all() 215 MPP_RET rc_brief_get_by_type(RcApiQueryType *query) in rc_brief_get_by_type() argument 217 if (NULL == query) { in rc_brief_get_by_type() 218 mpp_err_f("invalide NULL query input\n"); in rc_brief_get_by_type() 222 RcApiBrief *brief = query->brief; in rc_brief_get_by_type() [all …]
|