Searched refs:query (Results 26 - 50 of 634) sorted by relevance

1234567891011>>

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch/
H A Dsearch.py48 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...]
/external/c-ares/
H A Dares_process.c90 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...]
H A Dares_destroy.c41 struct query *query; local
51 query = list_node->data;
52 list_node = list_node->next; /* since we're deleting the query */
53 query->callback(query->arg, ARES_EDESTRUCTION, 0, NULL, 0);
54 ares__free_query(query);
57 /* Freeing the query should remove it from all the lists in which it sits,
58 * so all query lists should be empty now.
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_query.c72 struct pipe_query* query)
74 struct r300_query* q = r300_query(query);
77 FREE(query);
81 struct r300_query *query)
83 r300->query_current = query;
88 struct pipe_query* query)
91 struct r300_query* q = r300_query(query);
98 "Some other query has already been started.\n");
114 struct pipe_query* query)
117 struct r300_query *q = r300_query(query);
71 r300_destroy_query(struct pipe_context* pipe, struct pipe_query* query) argument
80 r300_resume_query(struct r300_context *r300, struct r300_query *query) argument
87 r300_begin_query(struct pipe_context* pipe, struct pipe_query* query) argument
113 r300_end_query(struct pipe_context* pipe, struct pipe_query* query) argument
135 r300_get_query_result(struct pipe_context* pipe, struct pipe_query* query, boolean wait, union pipe_query_result *vresult) argument
179 r300_render_condition(struct pipe_context *pipe, struct pipe_query *query, uint mode) argument
[all...]
/external/webrtc/webrtc/libjingle/xmpp/
H A Dmucroomlookuptask.cc57 XmlElement* query)
58 : IqTask(parent, STR_SET, lookup_server_jid, query) {
69 XmlElement* query = new XmlElement(QN_SEARCH_QUERY, true); local
70 query->AddElement(name_elem);
71 query->AddElement(domain_elem);
72 return query;
79 XmlElement* query = new XmlElement(QN_SEARCH_QUERY); local
80 query->AddElement(jid_elem);
81 return query;
90 XmlElement* query local
55 MucRoomLookupTask(XmppTaskParentInterface* parent, const Jid& lookup_server_jid, XmlElement* query) argument
105 XmlElement* query = new XmlElement(QN_SEARCH_QUERY, true); local
[all...]
H A Dmucroomdiscoverytask.cc25 const XmlElement* query = stanza->FirstNamed(QN_DISCO_INFO_QUERY); local
26 if (query == NULL) {
33 const XmlElement* identity = query->FirstNamed(QN_DISCO_IDENTITY);
49 for (const XmlElement* feature = query->FirstNamed(QN_DISCO_FEATURE);
54 const XmlElement* data_x = query->FirstNamed(QN_XDATA_X);
/external/chromium-trace/catapult/dashboard/dashboard/
H A Dmr.py49 or adding a query for a new property with a default value.
99 query = graph_data.Row.query(graph_data.Row.parent_test == entity.key)
100 query = query.order(-graph_data.Row.timestamp)
101 last_row = query.get()
172 query = graph_data.Test.query(ancestor=test.key)
173 query = query
[all...]
H A Dgraph_csv_test.py57 """Asserts that the given query has the given CSV result.
60 result_query: The path and query string to request.
99 query = ('/graph_csv?test_path=ChromiumPerf/win7/dromaeo/dom&'
109 self._CheckGet(query, expected)
113 query = ('/graph_csv?test_path=ChromiumPerf/win7/dromaeo/dom&'
123 self._CheckGet(query, expected)
124 query = ('/graph_csv?test_path=ChromiumPerf/win7/dromaeo/dom&'
134 self._CheckGet(query, expected)
135 query = ('/graph_csv?test_path=ChromiumPerf/win7/dromaeo/dom&'
145 self._CheckGet(query, expecte
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/
H A Dsearch.py45 self.query = attrs['query']
54 self.num_pages_needed = ceil(self.hits / self.query.real_size)
68 if self.query.page <= self.num_pages_needed:
69 self.query.start += self.query.real_size
70 self.query.page += 1
71 return self.search_service(self.query)
245 Send a query to CloudSearch
247 Each search query shoul
[all...]
/external/autotest/frontend/tko/
H A Drpc_interface.py45 query = models.TestView.objects.get_query_set_with_joins(filter_data)
47 query = models.TestView.query_objects(filter_data, initial_query=query,
49 count_alias, count_sql = models.TestView.objects.get_count_sql(query)
50 query = query.extra(select={count_alias: count_sql})
52 query = query.extra(select=extra_select_fields)
53 query = models.TestView.apply_presentation(query, filter_dat
[all...]
/external/freetype/src/cache/
H A Dftcbasic.c73 FTC_BasicQuery query = (FTC_BasicQuery)ftcquery; local
76 return FTC_BASIC_ATTR_COMPARE( &family->attrs, &query->attrs );
86 FTC_BasicQuery query = (FTC_BasicQuery)ftcquery; local
91 family->attrs = query->attrs;
287 FTC_BasicQueryRec query; local
309 query.attrs.scaler.face_id = type->face_id;
310 query.attrs.scaler.width = type->width;
311 query.attrs.scaler.height = type->height;
312 query.attrs.load_flags = (FT_UInt)type->flags;
314 query
360 FTC_BasicQueryRec query; local
471 FTC_BasicQueryRec query; local
546 FTC_BasicQueryRec query; local
[all...]
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_screen_pools.c36 * TODO: Have the query pool always ask the fence manager for
62 if(vws->pools.query)
63 vws->pools.query->destroy(vws->pools.query);
68 * vmw_query_pools_init - Create a pool of query buffers.
80 vws->pools.query = vmw_gmr_bufmgr_create(vws);
81 if(!vws->pools.query)
84 vws->pools.query_mm = mm_bufmgr_create(vws->pools.query,
104 vws->pools.query->destroy(vws->pools.query);
[all...]
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dr600.h67 /* The kind of query */
69 /* Offset of the first result for current query */
71 /* Offset of the next free result after current query data */
76 /* The buffer where query results are stored. It's used as a ring,
77 * data blocks for current query are stored sequentially from
105 void r600_context_query_destroy(struct r600_context *ctx, struct r600_query *query);
107 struct r600_query *query,
109 void r600_query_begin(struct r600_context *ctx, struct r600_query *query);
110 void r600_query_end(struct r600_context *ctx, struct r600_query *query);
113 void r600_query_predication(struct r600_context *ctx, struct r600_query *query, in
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_11_auth.c137 static void hostapd_acl_query_free(struct hostapd_acl_query_data *query) argument
139 if (query == NULL)
141 os_free(query->auth_msg);
142 os_free(query);
148 struct hostapd_acl_query_data *query)
153 query->radius_id = radius_client_get_id(hapd->radius);
154 msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST, query->radius_id);
282 struct hostapd_acl_query_data *query;
294 query = hapd->acl_queries;
295 while (query) {
147 hostapd_radius_acl_query(struct hostapd_data *hapd, const u8 *addr, struct hostapd_acl_query_data *query) argument
508 struct hostapd_acl_query_data *query, *prev; local
663 struct hostapd_acl_query_data *query, *prev; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dieee802_11_auth.c137 static void hostapd_acl_query_free(struct hostapd_acl_query_data *query) argument
139 if (query == NULL)
141 os_free(query->auth_msg);
142 os_free(query);
148 struct hostapd_acl_query_data *query)
153 query->radius_id = radius_client_get_id(hapd->radius);
154 msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST, query->radius_id);
282 struct hostapd_acl_query_data *query;
294 query = hapd->acl_queries;
295 while (query) {
147 hostapd_radius_acl_query(struct hostapd_data *hapd, const u8 *addr, struct hostapd_acl_query_data *query) argument
508 struct hostapd_acl_query_data *query, *prev; local
663 struct hostapd_acl_query_data *query, *prev; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_11_auth.c137 static void hostapd_acl_query_free(struct hostapd_acl_query_data *query) argument
139 if (query == NULL)
141 os_free(query->auth_msg);
142 os_free(query);
148 struct hostapd_acl_query_data *query)
153 query->radius_id = radius_client_get_id(hapd->radius);
154 msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST, query->radius_id);
282 struct hostapd_acl_query_data *query;
294 query = hapd->acl_queries;
295 while (query) {
147 hostapd_radius_acl_query(struct hostapd_data *hapd, const u8 *addr, struct hostapd_acl_query_data *query) argument
508 struct hostapd_acl_query_data *query, *prev; local
663 struct hostapd_acl_query_data *query, *prev; local
[all...]
/external/chromium-trace/catapult/perf_insights/perf_insights/
H A Dmap_traces.py16 Overview of corpus query syntax:
18 <query> := <condition> [AND <condition> ...] [ MAX_TRACE_HANDLES=<int>]
27 --query "date >= Date(2015-10-15 00:00:00.00) AND prod = 'test'"
28 --query "remote_addr = '128.0.0.1' AND MAX_TRACE_HANDLES=10"
36 parser.add_argument('--query')
48 if args.query == 'help':
50 elif args.query is None:
51 query = corpus_query.CorpusQuery.FromString('True')
53 query = corpus_query.CorpusQuery.FromString(args.query)
[all...]
/external/opencv3/modules/cudafeatures2d/src/cuda/
H A Dbf_match.cu82 __device__ void loadQueryToSmem(int queryIdx, const PtrStepSz<T>& query, U* s_query)
88 s_query[threadIdx.y * MAX_DESC_LEN + loadX] = loadX < query.cols ? query.ptr(::min(queryIdx, query.rows - 1))[loadX] : 0;
93 __device__ void loopUnrolledCached(int queryIdx, const PtrStepSz<T>& query,volatile int imgIdx, const PtrStepSz<T>& train, const Mask& mask,
129 if (queryIdx < query.rows && trainIdx < train.rows && distVal < bestDistance && mask(queryIdx, trainIdx))
139 __global__ void matchUnrolledCached(const PtrStepSz<T> query, const PtrStepSz<T> train, const Mask mask, int* bestTrainIdx, float* bestDistance)
148 loadQueryToSmem<BLOCK_SIZE, MAX_DESC_LEN>(queryIdx, query, s_query);
153 loopUnrolledCached<BLOCK_SIZE, MAX_DESC_LEN, Dist>(queryIdx, query, 0, train, mask, s_query, s_train, myBestDistance, myBestTrainIdx, myBestTrainIdx);
162 if (queryIdx < query
[all...]
H A Dbf_radius_match.cu59 __global__ void matchUnrolled(const PtrStepSz<T> query, int imgIdx, const PtrStepSz<T> train, float maxDistance, const Mask mask,
80 if (loadX < query.cols)
84 ForceGlob<T>::Load(query.ptr(::min(queryIdx, query.rows - 1)), loadX, val);
102 if (queryIdx < query.rows && trainIdx < train.rows && mask(queryIdx, trainIdx) && distVal < maxDistance)
115 void matchUnrolled(const PtrStepSz<T>& query, const PtrStepSz<T>& train, float maxDistance, const Mask& mask,
119 const dim3 grid(divUp(train.rows, BLOCK_SIZE), divUp(query.rows, BLOCK_SIZE));
123 matchUnrolled<BLOCK_SIZE, MAX_DESC_LEN, false, Dist><<<grid, block, smemSize, stream>>>(query, 0, train, maxDistance, mask,
132 void matchUnrolled(const PtrStepSz<T>& query, const PtrStepSz<T>* trains, int n, float maxDistance, const PtrStepSzb* masks,
144 const dim3 grid(divUp(train.rows, BLOCK_SIZE), divUp(query
[all...]
/external/parameter-framework/asio/include/asio/detail/
H A Dresolver_service.hpp41 // The query type.
53 // Resolve a query to a list of entries.
54 iterator_type resolve(implementation_type&, const query_type& query, argument
59 socket_ops::getaddrinfo(query.host_name().c_str(),
60 query.service_name().c_str(), query.hints(), &address_info, ec);
64 address_info, query.host_name(), query.service_name());
67 // Asynchronously resolve a query to a list of entries.
70 const query_type& query, Handle
69 async_resolve(implementation_type& impl, const query_type& query, Handler& handler) argument
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dresolver_service.hpp41 // The query type.
53 // Resolve a query to a list of entries.
54 iterator_type resolve(implementation_type&, const query_type& query, argument
59 socket_ops::getaddrinfo(query.host_name().c_str(),
60 query.service_name().c_str(), query.hints(), &address_info, ec);
64 address_info, query.host_name(), query.service_name());
67 // Asynchronously resolve a query to a list of entries.
70 const query_type& query, Handle
69 async_resolve(implementation_type& impl, const query_type& query, Handler& handler) argument
[all...]
/external/wpa_supplicant_8/hs20/server/www/
H A Dadd-mo.php28 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
34 $userrow = $db->query("SELECT identity FROM users WHERE identity='$user' AND realm='$realm'")->fetch();
/external/autotest/scheduler/
H A Dquery_managers.py82 query=('NOT complete AND NOT active AND status="Queued"'
85 # TODO(jakobjuelich, beeps): Optimize this query. Details:
86 # Compressed output of EXPLAIN <query>:
94 # This shows the first part of the query fetches a lot of objects, that
103 query = '%s AND (%s)' % (query, self.hostless_query)
108 where=query, order_by=sort_order))
184 query = models.HostQueueEntry.objects.filter(
189 for hqe in query:
207 query
[all...]
/external/autotest/database/
H A Ddb_utils.py84 query = ('SELECT table_name FROM information_schema.%s '
86 rows = manager.execute(query, manager.get_db_name())
103 query = ('SELECT 1 FROM information_schema.statistics '
105 rows = manager.execute(query, manager.get_db_name(), table_name, index_name)
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
H A Dmodel.py86 """Create search query based on info record name prefix.
94 Datastore query pointing to search results.
97 query = cls.all().order('encoded_name')
99 query.filter('encoded_name >=', db.ByteString(name_prefix))
102 query.filter('encoded_name <=', db.ByteString(name_prefix + '\xff'))
103 return query

Completed in 3293 milliseconds

1234567891011>>