Home
last modified time | relevance | path

Searched refs:queryObject (Results 1 – 7 of 7) sorted by relevance

/external/angle/src/libANGLE/renderer/gl/
DStateManagerGL.h213 void beginQuery(gl::QueryType type, QueryGL *queryObject, GLuint queryId);
214 void endQuery(gl::QueryType type, QueryGL *queryObject, GLuint queryId);
DStateManagerGL.cpp785 void StateManagerGL::beginQuery(gl::QueryType type, QueryGL *queryObject, GLuint queryId) in beginQuery() argument
818 mQueries[type] = queryObject; in beginQuery()
827 void StateManagerGL::endQuery(gl::QueryType type, QueryGL *queryObject, GLuint queryId) in endQuery() argument
829 ASSERT(queryObject != nullptr); in endQuery()
830 ASSERT(mQueries[type] == queryObject); in endQuery()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowUsageStatsManager.java245 @ClassName("android.app.usage.UsageEventsQuery") Object queryObject) { in queryEvents()
246 UsageEventsQuery query = (UsageEventsQuery) queryObject; in queryEvents()
/external/angle/src/libANGLE/
DvalidationES.cpp2464 Query *queryObject = context->getQuery(id); in ValidateBeginQueryBase() local
2465 if (queryObject && queryObject->getType() != target) in ValidateBeginQueryBase()
2498 const Query *queryObject = context->getState().getActiveQuery(target); in ValidateEndQueryBase() local
2500 if (queryObject == nullptr) in ValidateEndQueryBase()
2546 Query *queryObject = context->getQuery(id); in ValidateQueryCounterEXT() local
2547 if (queryObject && context->getState().isQueryActive(queryObject)) in ValidateQueryCounterEXT()
2678 Query *queryObject = context->getQuery(id); in ValidateGetQueryObjectValueBase() local
2680 if (!queryObject) in ValidateGetQueryObjectValueBase()
2686 if (context->getState().isQueryActive(queryObject)) in ValidateGetQueryObjectValueBase()
DContext.cpp1628 Query *queryObject = getOrCreateQuery(query, target); in beginQuery() local
1629 ASSERT(queryObject); in beginQuery()
1632 ANGLE_CONTEXT_TRY(queryObject->begin(this)); in beginQuery()
1635 mState.setActiveQuery(this, target, queryObject); in beginQuery()
1641 Query *queryObject = mState.getActiveQuery(target); in endQuery() local
1642 ASSERT(queryObject); in endQuery()
1645 (void)(queryObject->end(this)); in endQuery()
1656 Query *queryObject = getOrCreateQuery(id, target); in queryCounter() local
1657 ASSERT(queryObject); in queryCounter()
1659 ANGLE_CONTEXT_TRY(queryObject->queryCounter(this)); in queryCounter()
[all …]
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp11478 for (auto queryObject : pCB->activeQueries) { in ValidateSecondaryCommandBufferState() local
11479 auto query_pool_state = GetQueryPoolState(queryObject.pool); in ValidateSecondaryCommandBufferState()
11491 report_data->FormatHandle(queryObject.pool).c_str()); in ValidateSecondaryCommandBufferState()
11497 for (auto queryObject : pSubCB->startedQueries) { in ValidateSecondaryCommandBufferState() local
11498 auto query_pool_state = GetQueryPoolState(queryObject.pool); in ValidateSecondaryCommandBufferState()
11505 … report_data->FormatHandle(queryObject.pool).c_str(), query_pool_state->createInfo.queryType, in ValidateSecondaryCommandBufferState()
/external/deqp/modules/gles31/functional/
Des31fTessellationTests.cpp262 static inline uint32_t getQueryResult(const glw::Functions &gl, uint32_t queryObject) in getQueryResult() argument
265 gl.getQueryObjectuiv(queryObject, GL_QUERY_RESULT, &result); in getQueryResult()