/external/clang/test/Sema/ |
H A D | memset-invalid-1.c | 11 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/c-ares/ |
H A D | ares_send.c | 44 struct query *query; local 48 /* Verify that the query is at least long enough to hold the header. */ 55 /* Allocate space for query and allocated fields. */ 56 query = malloc(sizeof(struct query)); 57 if (!query) 62 query->tcpbuf = malloc(qlen + 2); 63 if (!query->tcpbuf) 65 free(query); [all...] |
H A D | ares_cancel.c | 28 struct query *query; local 36 query = list_node->data; 37 list_node = list_node->next; /* since we're deleting the query */ 38 query->callback(query->arg, ARES_ECANCELLED, 0, NULL, 0); 39 ares__free_query(query); 42 /* Freeing the query should remove it from all the lists in which it sits, 43 * so all query lists should be empty now.
|
H A D | ares_timeout.c | 36 struct query *query; local 55 query = list_node->data; 56 if (query->timeout.tv_sec == 0) 58 offset = ares__timeoffset(&now, &query->timeout);
|
H A D | ares_process.c | 90 static void skip_server(ares_channel channel, struct query *query, 92 static void next_server(ares_channel channel, struct query *query, 99 static void end_query(ares_channel channel, struct query *query, int status, 506 struct query *query; local 521 query = list_node->data; 522 list_node = list_node->next; /* in case the query get 541 struct query *query; local 633 struct query *query; local 665 skip_server(ares_channel channel, struct query *query, int whichserver) argument 681 next_server(ares_channel channel, struct query *query, struct timeval *now) argument 724 ares__send_query(ares_channel channel, struct query *query, struct timeval *now) argument 1207 end_query(ares_channel channel, struct query *query, int status, unsigned char *abuf, int alen) argument 1281 ares__free_query(struct query *query) argument [all...] |
/external/clang/test/CodeGenCXX/ |
H A D | 2008-05-07-CrazyOffsetOf.cpp | 6 char * query; member in struct:bork 8 int offset = (char *) &(((struct bork *) 0x10)->query) - (char *) 0x10;
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
H A D | brw_queryobj.c | 30 * 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/wpa_supplicant_8/wpa_supplicant/ |
H A D | gas_query.c | 2 * Generic advertisement service (GAS) query 25 /** GAS query timeout in seconds */ 28 /* GAS query wait-time / duration in ms */ 33 * struct gas_query_pending - Pending GAS query 58 * struct gas_query - Internal GAS query data 72 struct gas_query_pending *query); 87 * gas_query_init - Initialize GAS query component 89 * Returns: Pointer to GAS query data or %NULL on failure 129 static void gas_query_free(struct gas_query_pending *query, int del_list) argument 131 struct gas_query *gas = query 148 gas_query_done(struct gas_query *gas, struct gas_query_pending *query, enum gas_query_result result) argument 176 struct gas_query_pending *query, *next; local 202 gas_query_append(struct gas_query_pending *query, const u8 *data, size_t len) argument 220 struct gas_query_pending *query; local 272 gas_query_tx(struct gas_query *gas, struct gas_query_pending *query, struct wpabuf *req, unsigned int wait_time) argument 298 gas_query_tx_comeback_req(struct gas_query *gas, struct gas_query_pending *query) argument 326 struct gas_query_pending *query = user_ctx; local 355 struct gas_query_pending *query = user_ctx; local 363 gas_query_tx_comeback_req_delay(struct gas_query *gas, struct gas_query_pending *query, u16 comeback_delay) argument 384 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 415 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 493 struct gas_query_pending *query; local 627 struct gas_query_pending *query = user_ctx; local 652 struct gas_query_pending *query = work->ctx; local 680 gas_query_tx_initial_req(struct gas_query *gas, struct gas_query_pending *query) argument 736 struct gas_query_pending *query; local 783 struct gas_query_pending *query; local [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/db/ |
H A D | test_query.py | 84 query = SimpleModel.all() 85 query.filter("name like", "% Object") 86 assert(query.count() == 3) 88 query = SimpleModel.all() 89 query.filter("name not like", "% Object") 90 assert(query.count() == 0) 94 query = SimpleModel.all() 95 query.filter("name =", "Simple Object") 96 assert(query.count() == 1) 98 query [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
H A D | radeon_queryobj.c | 38 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 D | radeon_queryobj.h | 44 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 D | radeon_queryobj.c | 38 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 D | radeon_queryobj.h | 44 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-trace/catapult/firefighter/default/ |
H A D | main.py | 8 from handlers import query namespace 16 ('/query', query.Query),
|
/external/mesa3d/src/gallium/drivers/i915/ |
H A D | i915_query.c | 39 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/r600/ |
H A D | r600_query.c | 88 static void r600_emit_query_begin(struct r600_context *ctx, struct r600_query *query) argument 93 r600_need_cs_space(ctx, query->num_cs_dw * 2, TRUE); 95 /* Get a new query buffer if needed. */ 96 if (query->buffer.results_end + query->result_size > query->buffer.buf->b.b.width0) { 98 *qbuf = query->buffer; 99 query->buffer.buf = r600_new_query_buffer(ctx, query->type); 100 query 146 r600_emit_query_end(struct r600_context *ctx, struct r600_query *query) argument 204 r600_emit_query_predication(struct r600_context *ctx, struct r600_query *query, int operation, bool flag_wait) argument 255 struct r600_query *query; local 299 r600_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument 335 r600_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument 375 r600_end_query(struct pipe_context *ctx, struct pipe_query *query) argument 407 r600_get_query_buffer_result(struct r600_context *ctx, struct r600_query *query, struct r600_query_buffer *qbuf, boolean wait, union pipe_query_result *result) argument 498 r600_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *result) argument 522 r600_render_condition(struct pipe_context *ctx, struct pipe_query *query, uint mode) argument 566 struct r600_query *query; local 576 struct r600_query *query; local 587 struct r600_query *query; local 598 struct r600_query *query; local [all...] |
/external/chromium-trace/catapult/dashboard/dashboard/ |
H A D | alerts.py | 89 query = anomaly.Anomaly.query( 93 query = query.filter( 97 query = query.filter( 99 query = query.filter( 102 query = query [all...] |
H A D | new_points.py | 31 # Construct a query for recently added Row entities. 32 query = graph_data.Row.query() 33 query = query.order(-graph_data.Row.timestamp) 41 # If a test path pattern was specified, filter the query to include only 55 # If test_keys contains too many tests, then this query will exceed a 62 query = query.filter(graph_data.Row.parent_test.IN(test_keys)) 71 rows = query [all...] |
/external/autotest/frontend/migrations/ |
H A D | 062_drone_sets_unique.py | 40 query = ('SELECT * FROM afe_drone_sets_drones ' 42 rows = manager.execute(query)
|
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/ |
H A D | iterate.cs | 1 Query : <?cs var:query ?>
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | r600_query.c | 33 static void r600_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument 37 r600_context_query_destroy(rctx, (struct r600_query *)query); 40 static void r600_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument 43 struct r600_query *rquery = (struct r600_query *)query; 47 r600_query_begin(rctx, (struct r600_query *)query); 51 static void r600_end_query(struct pipe_context *ctx, struct pipe_query *query) argument 54 struct r600_query *rquery = (struct r600_query *)query; 61 struct pipe_query *query, 65 struct r600_query *rquery = (struct r600_query *)query; 71 struct pipe_query *query, 60 r600_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument 70 r600_render_condition(struct pipe_context *ctx, struct pipe_query *query, uint mode) argument [all...] |
H A D | r600_hw_context.c | 44 /* if backend_map query is supported by the kernel */ 279 static boolean r600_query_result(struct r600_context *ctx, struct r600_query *query, boolean wait) argument 281 unsigned results_base = query->results_start; 284 map = ctx->ws->buffer_map(query->buffer->cs_buf, ctx->cs, 291 switch (query->type) { 293 while (results_base != query->results_end) { 294 query->result.u64 += 296 results_base = (results_base + 16) % query->buffer->b.b.width0; 300 while (results_base != query->results_end) { 301 query 360 r600_query_begin(struct r600_context *ctx, struct r600_query *query) argument 447 r600_query_end(struct r600_context *ctx, struct r600_query *query) argument 491 r600_query_predication(struct r600_context *ctx, struct r600_query *query, int operation, int flag_wait) argument 536 struct r600_query *query; local 586 r600_context_query_destroy(struct r600_context *ctx, struct r600_query *query) argument 592 r600_context_query_result(struct r600_context *ctx, struct r600_query *query, boolean wait, void *vresult) argument 628 struct r600_query *query; local 638 struct r600_query *query; local [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/ |
H A D | queryresultset.py | 23 def query_lister(domain, query='', max_items=None, attr_names=None): 28 rs = domain.connection.query_with_attributes(domain, query, attr_names, 41 def __init__(self, domain=None, query='', max_items=None, attr_names=None): 44 self.query = query 48 return query_lister(self.domain, self.query, self.max_items, self.attr_names) 50 def select_lister(domain, query='', max_items=None): 55 rs = domain.connection.select(domain, query, next_token=next_token) 67 def __init__(self, domain=None, query='', max_items=None, 70 self.query [all...] |
/external/wpa_supplicant_8/hs20/server/www/ |
H A D | add-free.php | 17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); 26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch(); 33 $row = $db->query("SELECT password FROM users WHERE identity='$user' AND realm='$realm'")->fetch();
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch/ |
H A D | search.py | 48 self.query = attrs['query'] 57 self.num_pages_needed = ceil(self.hits / self.query.real_size) 71 if self.query.page <= self.num_pages_needed: 72 self.query.start += self.query.real_size 73 self.query.page += 1 74 return self.search_service(self.query) 167 Send a query to CloudSearch 169 Each search query shoul [all...] |