Searched refs:query (Results 1 - 25 of 872) sorted by relevance

1234567891011>>

/external/valgrind/unittest/
H A Dtest_utils.cc30 const char *ThreadSanitizerQuery(const char *query) __attribute__((weak));
32 const char *ThreadSanitizerQuery(const char *query) { argument
33 printf("Not running under ThreadSanitizer (query=%s)\n", query);
/external/clang/test/Sema/
H A Dmemset-invalid-1.c11 incomplete query = 0; local
12 memset(query, 0, sizeof(query)); // expected-warning {{'memset' call operates on objects of type 'struct __incomplete' while the size is based on a different type 'incomplete'}} \
/external/clang/test/CodeGenCXX/
H A D2008-05-07-CrazyOffsetOf.cpp6 char * query; member in struct:bork
8 int offset = (char *) &(((struct bork *) 0x10)->query) - (char *) 0x10;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_queryobj.c30 * Support for query objects (GL_ARB_occlusion_query, GL_ARB_timer_query,
40 * query is active, and sum up the differences. (We should do so for
132 /** Waits on the query object's BO and totals the results for this query */
135 struct brw_query_object *query)
142 if (query->bo == NULL)
146 if (drm_intel_bo_busy(query->bo)) {
147 perf_debug("Stalling on the GPU waiting for a query object.\n");
151 drm_intel_bo_map(query->bo, false);
152 results = query
134 brw_queryobj_get_results(struct gl_context *ctx, struct brw_query_object *query) argument
225 struct brw_query_object *query; local
240 struct brw_query_object *query = (struct brw_query_object *)q; local
251 struct brw_query_object *query = (struct brw_query_object *)q; local
302 struct brw_query_object *query = (struct brw_query_object *)q; local
371 struct brw_query_object *query = (struct brw_query_object *)q; local
379 struct brw_query_object *query = (struct brw_query_object *)q; local
420 struct brw_query_object *query = brw->query.obj; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_queryobj.c30 * Support for query objects (GL_ARB_occlusion_query, GL_ARB_timer_query,
40 * query is active, and sum up the differences. (We should do so for
132 /** Waits on the query object's BO and totals the results for this query */
135 struct brw_query_object *query)
142 if (query->bo == NULL)
146 if (drm_intel_bo_busy(query->bo)) {
147 perf_debug("Stalling on the GPU waiting for a query object.\n");
151 drm_intel_bo_map(query->bo, false);
152 results = query
134 brw_queryobj_get_results(struct gl_context *ctx, struct brw_query_object *query) argument
225 struct brw_query_object *query; local
240 struct brw_query_object *query = (struct brw_query_object *)q; local
251 struct brw_query_object *query = (struct brw_query_object *)q; local
302 struct brw_query_object *query = (struct brw_query_object *)q; local
371 struct brw_query_object *query = (struct brw_query_object *)q; local
379 struct brw_query_object *query = (struct brw_query_object *)q; local
420 struct brw_query_object *query = brw->query.obj; local
[all...]
/external/chromium_org/sync/engine/net/
H A Durl_translator.cc39 // This method appends the query string to the sync server path.
48 string query; local
49 query += kParameterClient;
50 query += "=" + CgiEscapeString(kClientName);
51 query += "&";
52 query += kParameterClientID;
53 query += "=" + CgiEscapeString(client_id);
54 return query;
/external/chromium_org/components/nacl/loader/
H A Dnacl_validation_query_unittest.cc90 query.reset(context->CreateQuery());
95 scoped_ptr<NaClValidationQuery> query; member in class:__anon7755::TestQuery
126 query1->query->AddData(kShortData, sizeof(kShortData));
129 ASSERT_EQ(1, query1->query->QueryKnownToValidate());
132 query1->query->SetKnownToValidate();
138 query1->query->AddData(kShortData, sizeof(kShortData));
139 query1->query->QueryKnownToValidate();
141 query2->query->AddData(kShortData, sizeof(kShortData));
142 query2->query->QueryKnownToValidate();
148 query1->query
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dgas_query.c2 * Generic advertisement service (GAS) query
22 /** GAS query timeout in seconds */
27 * struct gas_query_pending - Pending GAS query
48 * struct gas_query - Internal GAS query data
61 * gas_query_init - Initialize GAS query component
63 * Returns: Pointer to GAS query data or %NULL on failure
81 struct gas_query_pending *query,
84 if (query->offchannel_tx_started)
86 eloop_cancel_timeout(gas_query_tx_comeback_timeout, gas, query);
87 eloop_cancel_timeout(gas_query_timeout, gas, query);
80 gas_query_done(struct gas_query *gas, struct gas_query_pending *query, enum gas_query_result result) argument
103 struct gas_query_pending *query, *next; local
129 gas_query_append(struct gas_query_pending *query, const u8 *data, size_t len) argument
141 gas_query_tx(struct gas_query *gas, struct gas_query_pending *query, struct wpabuf *req) argument
158 gas_query_tx_comeback_req(struct gas_query *gas, struct gas_query_pending *query) argument
182 struct gas_query_pending *query = user_ctx; local
190 gas_query_tx_comeback_req_delay(struct gas_query *gas, struct gas_query_pending *query, u16 comeback_delay) argument
206 gas_query_rx_initial(struct gas_query *gas, struct gas_query_pending *query, const u8 *adv_proto, const u8 *resp, size_t len, u16 comeback_delay) argument
237 gas_query_rx_comeback(struct gas_query *gas, struct gas_query_pending *query, const u8 *adv_proto, const u8 *resp, size_t len, u8 frag_id, u8 more_frags, u16 comeback_delay) argument
312 struct gas_query_pending *query; local
427 struct gas_query_pending *query = user_ctx; local
467 struct gas_query_pending *query; local
522 struct gas_query_pending *query; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_queryobj.c38 struct radeon_query_object *query = (struct radeon_query_object *)q; local
43 "%s: query id %d, result %d\n",
44 __FUNCTION__, query->Base.Id, (int) query->Base.Result);
46 radeon_bo_map(query->bo, GL_FALSE);
47 result = query->bo->ptr;
49 query->Base.Result = 0;
50 for (i = 0; i < query->curr_offset/sizeof(uint32_t); ++i) {
51 query->Base.Result += LE32_TO_CPU(result[i]);
55 radeon_bo_unmap(query
60 struct radeon_query_object *query; local
76 struct radeon_query_object *query = (struct radeon_query_object *)q; local
90 struct radeon_query_object *query = (struct radeon_query_object *)q; local
107 struct radeon_query_object *query = (struct radeon_query_object *)q; local
130 struct radeon_query_object *query = radeon->query.current; local
167 struct radeon_query_object *query = (struct radeon_query_object *)q; local
197 struct radeon_query_object *query = radeon->query.current; local
[all...]
H A Dradeon_queryobj.h44 radeon->query.queryobj.cmd_size = (SZ);
45 radeon->query.queryobj.cmd = (uint32_t*)CALLOC((SZ) * sizeof(uint32_t));
46 radeon->query.queryobj.name = "queryobj";
47 radeon->query.queryobj.idx = 0;
48 radeon->query.queryobj.check = radeon_check_query_active;
49 radeon->query.queryobj.dirty = GL_FALSE;
50 radeon->query.queryobj.emit = radeon_emit_queryobj;
53 insert_at_tail(&radeon->hw.atomlist, &radeon->query.queryobj);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_queryobj.c38 struct radeon_query_object *query = (struct radeon_query_object *)q; local
43 "%s: query id %d, result %d\n",
44 __FUNCTION__, query->Base.Id, (int) query->Base.Result);
46 radeon_bo_map(query->bo, GL_FALSE);
47 result = query->bo->ptr;
49 query->Base.Result = 0;
50 for (i = 0; i < query->curr_offset/sizeof(uint32_t); ++i) {
51 query->Base.Result += LE32_TO_CPU(result[i]);
55 radeon_bo_unmap(query
60 struct radeon_query_object *query; local
76 struct radeon_query_object *query = (struct radeon_query_object *)q; local
90 struct radeon_query_object *query = (struct radeon_query_object *)q; local
107 struct radeon_query_object *query = (struct radeon_query_object *)q; local
130 struct radeon_query_object *query = radeon->query.current; local
167 struct radeon_query_object *query = (struct radeon_query_object *)q; local
197 struct radeon_query_object *query = radeon->query.current; local
[all...]
H A Dradeon_queryobj.h44 radeon->query.queryobj.cmd_size = (SZ);
45 radeon->query.queryobj.cmd = (uint32_t*)CALLOC((SZ) * sizeof(uint32_t));
46 radeon->query.queryobj.name = "queryobj";
47 radeon->query.queryobj.idx = 0;
48 radeon->query.queryobj.check = radeon_check_query_active;
49 radeon->query.queryobj.dirty = GL_FALSE;
50 radeon->query.queryobj.emit = radeon_emit_queryobj;
53 insert_at_tail(&radeon->hw.atomlist, &radeon->query.queryobj);
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_queryobj.c38 struct radeon_query_object *query = (struct radeon_query_object *)q; local
43 "%s: query id %d, result %d\n",
44 __FUNCTION__, query->Base.Id, (int) query->Base.Result);
46 radeon_bo_map(query->bo, GL_FALSE);
47 result = query->bo->ptr;
49 query->Base.Result = 0;
50 for (i = 0; i < query->curr_offset/sizeof(uint32_t); ++i) {
51 query->Base.Result += LE32_TO_CPU(result[i]);
55 radeon_bo_unmap(query
60 struct radeon_query_object *query; local
76 struct radeon_query_object *query = (struct radeon_query_object *)q; local
90 struct radeon_query_object *query = (struct radeon_query_object *)q; local
107 struct radeon_query_object *query = (struct radeon_query_object *)q; local
130 struct radeon_query_object *query = radeon->query.current; local
167 struct radeon_query_object *query = (struct radeon_query_object *)q; local
197 struct radeon_query_object *query = radeon->query.current; local
[all...]
H A Dradeon_queryobj.h44 radeon->query.queryobj.cmd_size = (SZ);
45 radeon->query.queryobj.cmd = (uint32_t*)CALLOC((SZ) * sizeof(uint32_t));
46 radeon->query.queryobj.name = "queryobj";
47 radeon->query.queryobj.idx = 0;
48 radeon->query.queryobj.check = radeon_check_query_active;
49 radeon->query.queryobj.dirty = GL_FALSE;
50 radeon->query.queryobj.emit = radeon_emit_queryobj;
53 insert_at_tail(&radeon->hw.atomlist, &radeon->query.queryobj);
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_queryobj.c38 struct radeon_query_object *query = (struct radeon_query_object *)q; local
43 "%s: query id %d, result %d\n",
44 __FUNCTION__, query->Base.Id, (int) query->Base.Result);
46 radeon_bo_map(query->bo, GL_FALSE);
47 result = query->bo->ptr;
49 query->Base.Result = 0;
50 for (i = 0; i < query->curr_offset/sizeof(uint32_t); ++i) {
51 query->Base.Result += LE32_TO_CPU(result[i]);
55 radeon_bo_unmap(query
60 struct radeon_query_object *query; local
76 struct radeon_query_object *query = (struct radeon_query_object *)q; local
90 struct radeon_query_object *query = (struct radeon_query_object *)q; local
107 struct radeon_query_object *query = (struct radeon_query_object *)q; local
130 struct radeon_query_object *query = radeon->query.current; local
167 struct radeon_query_object *query = (struct radeon_query_object *)q; local
197 struct radeon_query_object *query = radeon->query.current; local
[all...]
H A Dradeon_queryobj.h44 radeon->query.queryobj.cmd_size = (SZ);
45 radeon->query.queryobj.cmd = (uint32_t*)CALLOC((SZ) * sizeof(uint32_t));
46 radeon->query.queryobj.name = "queryobj";
47 radeon->query.queryobj.idx = 0;
48 radeon->query.queryobj.check = radeon_check_query_active;
49 radeon->query.queryobj.dirty = GL_FALSE;
50 radeon->query.queryobj.emit = radeon_emit_queryobj;
53 insert_at_tail(&radeon->hw.atomlist, &radeon->query.queryobj);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_query.c39 unsigned query; member in struct:i915_query
45 struct i915_query *query = CALLOC_STRUCT( i915_query ); local
47 return (struct pipe_query *)query;
51 struct pipe_query *query)
53 FREE(query);
57 struct pipe_query *query)
61 static void i915_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
66 struct pipe_query *query,
50 i915_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument
56 i915_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument
65 i915_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_query.c39 unsigned query; member in struct:i915_query
45 struct i915_query *query = CALLOC_STRUCT( i915_query ); local
47 return (struct pipe_query *)query;
51 struct pipe_query *query)
53 FREE(query);
57 struct pipe_query *query)
61 static void i915_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
66 struct pipe_query *query,
50 i915_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument
56 i915_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument
65 i915_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument
/external/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/
H A Dexample.js20 var query = questionEl.value;
22 common.logMessage('You asked: ' + query);
29 var query = questionEl.value;
31 common.logMessage('Reversing: ' + query);
32 common.naclModule.postMessage('reverse:' + query);
/external/smack/src/org/xbill/DNS/
H A DResolveThread.java14 private Message query; field in class:ResolveThread
21 ResolveThread(Resolver res, Message query, Object id, argument
25 this.query = query;
32 * Performs the query, and executes the callback.
37 Message response = res.send(query);
/external/qemu/android/
H A Dsdk-controller-socket.c60 /* The packet is a query. */
62 /* The packet is a response to a query. */
94 /* Handshake query.
95 * This query is sent to SDK controller service as part of the connection
182 * header, with query data immediately following this header.
185 /* Data packet header for this query. */
187 /* A unique query identifier. This ID is used to track the query in the
197 * When query descriptors are allocated by this API, they are allocated large
198 * enough to contain this header, and query dat
455 _sdkctl_socket_add_query(SDKCtlQuery* query) argument
480 _sdkctl_socket_remove_query(SDKCtlQuery* query) argument
542 SDKCtlQuery* query = NULL; local
597 SDKCtlQuery* const query = sdkctl->query_head; local
952 _sdkctl_query_free(SDKCtlQuery* query) argument
984 _sdkctl_query_cancel_timeout(SDKCtlQuery* query) argument
1000 _on_sdkctl_query_completed(SDKCtlQuery* query) argument
1012 _on_sdkctl_query_cancelled(SDKCtlQuery* query) argument
1033 SDKCtlQuery* const query = (SDKCtlQuery*)opaque; local
1057 _on_sdkctl_query_sent(SDKCtlQuery* query) argument
1082 SDKCtlQuery* const query = (SDKCtlQuery*)io_opaque; local
1150 SDKCtlQuery* const query = local
1191 SDKCtlQuery* const query = sdkctl_query_new(sdkctl, query_type, in_data_size); local
1215 sdkctl_query_send(SDKCtlQuery* query, int to) argument
1249 SDKCtlQuery* const query = local
1258 sdkctl_query_reference(SDKCtlQuery* query) argument
1266 sdkctl_query_release(SDKCtlQuery* query) argument
1279 sdkctl_query_get_buffer_in(SDKCtlQuery* query) argument
1286 sdkctl_query_get_buffer_out(SDKCtlQuery* query) argument
1384 SDKCtlQuery* const query = dispatcher->current_query; local
1437 SDKCtlQuery* const query = dispatcher->current_query; local
1535 SDKCtlQuery* query; local
1594 SDKCtlQuery* const query = dispatcher->current_query; local
1736 SDKCtlQuery* query; local
1740 SDKCtlQuery* const query = dispatcher->current_query; local
2091 _on_handshake_io(void* query_opaque, SDKCtlQuery* query, AsyncIOState status) argument
2161 SDKCtlQuery* query = local
[all...]
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_query_unittests.cc33 GLuint query = 0; local
34 glGenQueriesEXT(1, &query);
39 glBeginQueryEXT(GL_GET_ERROR_QUERY_CHROMIUM, query);
47 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EXT, &result);
49 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_EXT, &query_status);
57 GLuint query = 0; local
58 glGenQueriesEXT(1, &query);
63 // First test a query with a ~1ms "latency".
67 glBeginQueryEXT(GL_LATENCY_QUERY_CHROMIUM, query);
78 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EX
[all...]
/external/chromium/googleurl/src/
H A Durl_canon_query.cc35 // IE is very permissive for query parameters specified in links on the page
45 // server's job to make sense of this invalid query.
52 // Our query canonicalization
70 bool IsAllASCII(const CHAR* spec, const url_parse::Component& query) { argument
71 int end = query.end();
72 for (int i = query.begin; i < end; i++) {
97 const url_parse::Component& query,
103 ConvertUTF8ToUTF16(&spec[query.begin], query.len, &utf16);
111 const url_parse::Component& query,
96 RunConverter(const char* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
110 RunConverter(const char16* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
118 DoConvertToQueryEncoding(const CHAR* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
143 DoCanonicalizeQuery(const CHAR* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
163 CanonicalizeQuery(const char* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
172 CanonicalizeQuery(const char16* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
181 ConvertUTF16ToQueryEncoding(const char16* input, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
[all...]
/external/chromium_org/url/
H A Durl_canon_query.cc10 // IE is very permissive for query parameters specified in links on the page
20 // server's job to make sense of this invalid query.
27 // Our query canonicalization
45 bool IsAllASCII(const CHAR* spec, const url_parse::Component& query) { argument
46 int end = query.end();
47 for (int i = query.begin; i < end; i++) {
72 const url_parse::Component& query,
78 ConvertUTF8ToUTF16(&spec[query.begin], query.len, &utf16);
86 const url_parse::Component& query,
71 RunConverter(const char* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
85 RunConverter(const base::char16* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
93 DoConvertToQueryEncoding(const CHAR* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
118 DoCanonicalizeQuery(const CHAR* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
138 CanonicalizeQuery(const char* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
147 CanonicalizeQuery(const base::char16* spec, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output, url_parse::Component* out_query) argument
156 ConvertUTF16ToQueryEncoding(const base::char16* input, const url_parse::Component& query, CharsetConverter* converter, CanonOutput* output) argument
[all...]
/external/chromium_org/gpu/command_buffer/client/
H A Dquery_tracker_unittest.cc97 QuerySync* GetSync(QueryTracker::Query* query) { argument
98 return query->info_.sync;
101 QuerySyncManager::Bucket* GetBucket(QueryTracker::Query* query) { argument
102 return query->info_.bucket;
116 QueryTracker::Query* query = query_tracker_->CreateQuery( local
118 ASSERT_TRUE(query != NULL);
120 EXPECT_EQ(query, query_tracker_->GetQuery(kId1));
121 // Check we get nothing for a non-existent query.
123 // Check we can delete the query.
125 // Check we get nothing for a non-existent query
135 QueryTracker::Query* query = query_tracker_->CreateQuery( local
180 QueryTracker::Query* query = query_tracker_->CreateQuery( local
[all...]

Completed in 778 milliseconds

1234567891011>>