HomeSort by relevance Sort by last modified time
    Searched refs:query (Results 1 - 25 of 2453) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
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/
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...]
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.
  /external/clang/test/CodeGenCXX/
2008-05-07-CrazyOffsetOf.cpp 6 char * query; member in struct:bork
8 int offset = (char *) &(((struct bork *) 0x10)->query) - (char *) 0x10;
  /art/tools/ahat/test/
QueryTest.java 29 Query query = new Query(new URI(uri)); local
30 assertEquals("bar", query.get("foo", "not found"));
31 assertEquals("42", query.get("answer", "not found"));
32 assertEquals(42, query.getLong("answer", 0));
33 assertEquals(42, query.getInt("answer", 0));
34 assertEquals("not found", query.get("bar", "not found"));
35 assertEquals("really not found", query.get("bar", "really not found"));
36 assertEquals(0, query.getLong("bar", 0))
49 Query query = new Query(new URI(uri)); local
63 Query query = new Query(new URI(uri)); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
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->bo->virtual
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/radeon/
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->bo)
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...]
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/gallium/drivers/i915/
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)
66 struct pipe_query *query,
  /external/wpa_supplicant_8/wpa_supplicant/
gas_query.c 2 * Generic advertisement service (GAS) query
26 /** GAS query timeout in seconds */
29 /* GAS query wait-time / duration in ms */
34 * struct gas_query_pending - Pending GAS query
60 * struct gas_query - Internal GAS query data
77 struct gas_query_pending *query);
92 * gas_query_init - Initialize GAS query component
94 * Returns: Pointer to GAS query data or %NULL on failure
132 static void gas_query_free(struct gas_query_pending *query, int del_list)
134 struct gas_query *gas = query->gas
179 struct gas_query_pending *query, *next; local
223 struct gas_query_pending *query; local
343 struct gas_query_pending *query = user_ctx; local
372 struct gas_query_pending *query = user_ctx; local
511 struct gas_query_pending *query; local
645 struct gas_query_pending *query = user_ctx; local
670 struct gas_query_pending *query = work->ctx; local
806 struct gas_query_pending *query; local
    [all...]
  /libcore/ojluni/src/main/java/java/time/temporal/
TemporalAccessor.java 84 * These can be accessed via {@linkplain #query(TemporalQuery) queries} using
164 * @param field the field to query the range for, not null
260 * This queries this date-time using the specified query strategy object.
265 * Examples might be a query that checks if the date is the day before February 29th
268 * The most common query implementations are method references, such as
275 * if (query == TemporalQueries.zoneId() ||
276 * query == TemporalQueries.chronology() || query == TemporalQueries.precision()) {
279 * return query.queryFrom(this);
284 * {@code TemporalAccessor.super.query(query)}. JDK classes may avoid callin
308 default <R> R query(TemporalQuery<R> query) { method in interface:TemporalAccessor
    [all...]
  /packages/apps/Settings/src/com/android/settings/search2/
SavedQueryPayload.java 23 * {@link ResultPayload} for saved query.
27 public final String query; field in class:SavedQueryPayload
29 public SavedQueryPayload(String query) {
30 this.query = query;
35 query = in.readString();
50 dest.writeString(query);
  /bionic/libc/dns/include/
resolv_cache.h 45 RESOLV_CACHE_NOTFOUND, /* the cache doesn't know about this query */
52 const void* query,
58 /* add a (query,answer) to the cache, only call if _resolv_cache_lookup
64 const void* query,
73 const void* query,
  /bionic/libc/dns/resolv/
res_debug.h 25 # define DprintQ(cond, args, query, size) /*empty*/
30 # define DprintQ(cond, args, query, size) if (cond) {\
32 res_pquery(statp, query, size, stdout);\
  /art/tools/ahat/src/
AhatHandler.java 29 * Handle the given query, rendering the page to the given document.
31 void handle(Doc doc, Query query) throws IOException;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionCursorProvider.java 21 * Interface for objects that can produce a SuggestionCursor given a query.
34 * @param query The user query.
38 C getSuggestions(String query, int queryLimit);
SuggestionsProvider.java 20 * Provides a set of suggestion results for a query..
26 * Gets suggestions for a query.
28 * @param query The query.
29 * @param source The source to query. Must be non-null.
31 Suggestions getSuggestions(String query, Source source);
  /external/mesa3d/src/gallium/drivers/r600/
r600_query.c 88 static void r600_emit_query_begin(struct r600_context *ctx, struct r600_query *query)
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->buffer.results_end = 0
255 struct r600_query *query; local
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...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 40 query = cls.gql('WHERE handle = :1', username)
41 return query.get()
47 query = cls.gql('WHERE handle = :1', username)
48 return query.get().updated
54 query = cls.gql('WHERE handle = :1', username)
55 return query.get().key().id()
61 query = cls.gql('WHERE handle = :1', username)
62 return query.get().status
  /external/autotest/frontend/migrations/
062_drone_sets_unique.py 40 query = ('SELECT * FROM afe_drone_sets_drones '
42 rows = manager.execute(query)
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
AbstractAssetMatcher.java 22 * An asset matcher that can match asset with the given query.
40 * <p> For web namespace, {@code query} will match assets that have the same 'site' field.
42 * <p> For Android namespace, {@code query} will match assets that have the same
46 public static AbstractAssetMatcher createMatcher(String query)
48 return AssetMatcherFactory.create(query);
WebAssetMatcher.java 26 public WebAssetMatcher(WebAsset query) {
27 mQuery = query;
  /packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
ApplicationsLatency.java 51 for (String query : queries) {
52 checkSource("APPS", APPS_COMPONENT, query);
ContactsLatency.java 50 for (String query : queries) {
51 checkSource("CONTACTS", CONTACTS_COMPONENT, query);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSource.java 30 * Called by QSB to get web suggestions for a query.
32 SourceResult queryInternal(String query);
35 * Called by external apps to get web suggestions for a query.
37 SourceResult queryExternal(String query);

Completed in 988 milliseconds

1 2 3 4 5 6 7 8 91011>>