HomeSort by relevance Sort by last modified time
    Searched defs:query (Results 226 - 250 of 350) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/curl/lib/
ldap.c 842 char *query; local
862 /* Duplicate the query */
863 q = query = strdup(conn->data->state.up.query);
864 if(!query) {
1046 free(query);
urlapi.c 61 char *query; member in struct:Curl_URL
79 free(u->query);
101 const char *query; local
110 query = strchr(sep, '?');
116 if(!query)
117 query = url + strlen(url);
119 return sep < query ? sep : query;
305 available, or if the new URL is just a query string (starts with a
627 char *query = NULL local
    [all...]
  /external/deqp/external/openglcts/modules/gl/
gl4cDirectStateAccessQueriesTests.cpp 67 : deqp::TestCase(context, "queries_creation", "Query Objects Creation Test")
96 /* Query targets */
229 /* Query targets. */
283 /** @brief Create Query Objects.
294 /* Query object creation */
299 /** @brief Test Query Integer Parameter.
305 * @param [in] target_name Target name of the tested query object - for logging purposes.
324 << tcu::TestLog::Message << "glGetQueryObjectuiv of query object with target " << target_name
442 * error if number of query objects to create is
455 glw::GLuint query = 0 local
512 glw::GLuint query = 0; local
566 glw::GLuint query = 0; local
768 glw::GLuint query = 0; local
887 glw::GLuint query = 0; local
1012 glw::GLuint query = 0; local
1139 glw::GLuint query = 0; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ycbcr/
vktYCbCrImageQueryTests.cpp 82 QueryType query; member in struct:vkt::ycbcr::__anon19365::TestParameters
88 : query (query_)
96 : query (QUERY_TYPE_LAST)
110 switch (params.query)
123 DE_FATAL("Unknown query");
402 if (params.query == QUERY_TYPE_IMAGE_SIZE_LOD)
438 switch (params.query)
471 DE_FATAL("Invalid query type");
554 DE_ASSERT(params.query == QUERY_TYPE_IMAGE_LOD);
715 const bool isLod = params.query == QUERY_TYPE_IMAGE_LOD
731 QueryType query; member in struct:vkt::ycbcr::__anon19365::QueryGroupParams
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_tests.c 463 struct pipe_query *query; local
477 query = ctx->create_query(ctx, PIPE_QUERY_PRIMITIVES_GENERATED, 0);
478 ctx->begin_query(ctx, query);
480 ctx->end_query(ctx, query);
481 ctx->get_query_result(ctx, query, true, &qresult);
486 ctx->destroy_query(ctx, query);
  /external/mesa3d/src/gallium/drivers/r600/
r600_perfcounter.c 105 struct r600_query_pc *query = (struct r600_query_pc *)rquery; local
107 while (query->groups) {
108 struct r600_pc_group *group = query->groups;
109 query->groups = group->next;
113 FREE(query->counters);
131 struct r600_query_pc *query = (struct r600_query_pc *)hwquery; local
136 if (query->shaders)
137 pc->emit_shaders(ctx, query->shaders);
139 for (group = query->groups; group; group = group->next) {
162 struct r600_query_pc *query = (struct r600_query_pc *)hwquery local
194 struct r600_query_pc *query = (struct r600_query_pc *)hwquery; local
204 struct r600_query_pc *query = (struct r600_query_pc *)hwquery; local
309 struct r600_query_pc *query; local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
r600_perfcounter.c 101 struct r600_query_pc *query = (struct r600_query_pc *)rquery; local
103 while (query->groups) {
104 struct r600_pc_group *group = query->groups;
105 query->groups = group->next;
109 FREE(query->counters);
127 struct r600_query_pc *query = (struct r600_query_pc *)hwquery; local
132 if (query->shaders)
133 pc->emit_shaders(ctx, query->shaders);
135 for (group = query->groups; group; group = group->next) {
158 struct r600_query_pc *query = (struct r600_query_pc *)hwquery local
190 struct r600_query_pc *query = (struct r600_query_pc *)hwquery; local
200 struct r600_query_pc *query = (struct r600_query_pc *)hwquery; local
305 struct r600_query_pc *query; local
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
UrlComponentEncodingTester.java 375 QUERY {
380 String query = url.encodedQuery(); local
381 return query.substring(1, query.length() - 1);
384 builder.query("a" + value + "z");
387 String query = url.query(); local
388 return query.substring(1, query.length() - 1);
  /external/scapy/scapy/arch/windows/
__init__.py 102 self.query(["echo @off"]) # Remove header
104 self.query(["$FormatEnumerationLimit=-1"]) # Do not crop long IP lists
114 def query(self, command): member in class:_PowershellManager
118 # Call powershell query using running process
121 query = " ".join(command) + ("&" if self.cmd else ";") + " echo scapy_end\n"
122 self.process.stdin.write(query.encode())
136 """Execute a PowerShell query, using the cmd command,
141 # Build query
146 # Ask the powershell manager to process the query
147 stdout = POWERSHELL_PROCESS.query(query_cmd
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
Trie.h 89 QueryResult query(const std::string& s) const { function in class:llvm::Trie::Node
213 typename Node::QueryResult r = nNode->query(s1);
252 typename Node::QueryResult r = nNode->query(s1);
  /external/wpa_supplicant_8/src/ap/
gas_query_ap.c 2 * Generic advertisement service (GAS) query (hostapd)
25 /** GAS query timeout in seconds */
28 /* GAS query wait-time / duration in ms */
33 * struct gas_query_pending - Pending GAS query
59 * struct gas_query_ap - Internal GAS query data
73 struct gas_query_pending *query);
88 * gas_query_ap_init - Initialize GAS query component
90 * Returns: Pointer to GAS query data or %NULL on failure
130 static void gas_query_free(struct gas_query_pending *query, int del_list)
133 dl_list_del(&query->list)
168 struct gas_query_pending *query, *next; local
209 struct gas_query_pending *query; local
308 struct gas_query_pending *query = user_ctx; local
337 struct gas_query_pending *query = user_ctx; local
469 struct gas_query_pending *query; local
603 struct gas_query_pending *query = user_ctx; local
682 struct gas_query_pending *query; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
ndis_events.c 398 WCHAR query[256]; local
400 _snwprintf(query, 256,
402 wpa_printf(MSG_DEBUG, "ndis_events: WMI: %S", query);
404 pSvc, L"WQL", query, 0, 0, pDestSink);
489 WCHAR query[MAX_QUERY_LEN]; local
514 _snwprintf(query, MAX_QUERY_LEN,
517 wpa_printf(MSG_DEBUG, "ndis_events: WMI: %S", query);
520 pSvc, L"WQL", query,
524 wpa_printf(MSG_DEBUG, "ndis_events: Failed to query interface "
554 _snwprintf(query, MAX_QUERY_LEN
    [all...]
  /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
61 * struct gas_query - Internal GAS query data
78 struct gas_query_pending *query);
93 * gas_query_init - Initialize GAS query component
95 * Returns: Pointer to GAS query data or %NULL on failure
135 static void gas_query_free(struct gas_query_pending *query, int del_list)
137 struct gas_query *gas = query->gas
182 struct gas_query_pending *query, *next; local
226 struct gas_query_pending *query; local
354 struct gas_query_pending *query = user_ctx; local
383 struct gas_query_pending *query = user_ctx; local
522 struct gas_query_pending *query; local
656 struct gas_query_pending *query = user_ctx; local
681 struct gas_query_pending *query = work->ctx; local
817 struct gas_query_pending *query; local
864 struct gas_query_pending *query; local
    [all...]
  /external/guice/extensions/persist/lib/
db4o-6.4.14.8131-java5.jar 
  /cts/tests/app/src/android/app/cts/
DownloadManagerTestBase.java 113 final String cmd = String.format("content query --uri %s --projection %s --user %s",
138 Cursor c = context.getContentResolver().query(uri, projections, null, null, null);
246 DownloadManager.Query query = new DownloadManager.Query(); local
247 cursor = mDownloadManager.query(query);
283 DownloadManager.Query query = new DownloadManager.Query(); local
296 DownloadManager.Query query = new DownloadManager.Query().setFilterById(downloadId); local
312 DownloadManager.Query query = new DownloadManager.Query().setFilterByStatus(status); local
346 DownloadManager.Query query = new DownloadManager.Query(); local
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentProviderClientTest.java 109 mContentProviderClient.query(URI, null, ARGS, mCancellationSignal);
110 verify(mIContentProvider).query(PACKAGE_NAME, URI, null, ARGS, mICancellationSignal);
114 when(mIContentProvider.query(PACKAGE_NAME, URI, null, ARGS, mICancellationSignal))
117 testTimeout(() -> mContentProviderClient.query(URI, null, ARGS, mCancellationSignal));
119 verify(mIContentProvider).query(PACKAGE_NAME, URI, null, ARGS, mICancellationSignal);
124 () -> mContentProviderClient.query(URI, null, ARGS, mCancellationSignal));
125 verify(mIContentProvider, never()).query(PACKAGE_NAME, URI, null, ARGS,
ContentProviderTest.java 279 public Cursor query(Uri uri, String[] projection, String selection, method in class:ContentProviderTest.MockContentProvider
350 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:ContentProviderTest.OpenFileContentProvider
352 return mDb.query("files", projection, selection, selectionArgs, null, null, null);
  /cts/tests/tests/netsecpolicy/src/android/security/
NetworkSecurityPolicyTestBase.java 237 Cursor c = downloadManager.query(
238 new DownloadManager.Query().setFilterById(downloadId));
261 DownloadManager.Query query = new DownloadManager.Query(); local
262 cursor = downloadManager.query(query);
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 106 StringBuilder query = new StringBuilder(); local
107 query.append("appops get ");
108 query.append(mContext.getPackageName());
109 query.append(" android:write_settings");
110 String queryStr = query.toString();
  /device/generic/goldfish/audio/
audio_hw_legacy.c 155 struct str_parms *query = str_parms_create_str(keys); local
161 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
169 str_parms_destroy(query);
312 struct str_parms *query = str_parms_create_str(keys); local
318 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
326 str_parms_destroy(query);
  /device/generic/opengl-transport/host/libs/virglrenderer/
RenderControl.cpp 108 static int query(const ANativeWindow* window, int what, int* value) { function
160 this->query = ::query;
  /external/autotest/frontend/client/src/autotest/afe/
HostSelector.java 6 import autotest.common.table.DataSource.Query;
165 hostDataSource.query(params, new DefaultDataCallback () {
167 public void onQueryReady(Query query) {
168 query.getPage(null, null, null, this);
  /external/javasqlite/src/main/java/SQLite/
Shell.java 664 String query; local
677 query = sb.toString();
680 query = "SELECT * from '%q'";
682 s2.db.exec(query, s2, qargs);
  /external/libcups/cups/
http-support.c 373 char *query; /* Pointer to query string */ local
377 * Copy the resource string up to the query string if present...
380 query = strchr(resource, '?');
386 if (query)
389 * Copy query string without encoding...
392 ptr = http_copy_encode(ptr, query, end, NULL, NULL,
1266 * Copy any query string...
1283 * Concatenate any query string...
    [all...]
tls-darwin.c 877 CFMutableDictionaryRef query = NULL; /* Query qualifiers */ local
910 if (!(query = CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks)))
913 CFDictionaryAddValue(query, kSecClass, kSecClassCertificate);
914 CFDictionaryAddValue(query, kSecMatchPolicy, policy);
915 CFDictionaryAddValue(query, kSecReturnRef, kCFBooleanTrue);
916 CFDictionaryAddValue(query, kSecMatchLimit, kSecMatchLimitOne);
927 CFDictionaryAddValue(query, kSecMatchSearchList, list);
931 err = SecItemCopyMatching(query, (CFTypeRef *)&cert);
961 if (query)
1779 CFMutableDictionaryRef query = NULL; \/* Query qualifiers *\/ local
    [all...]

Completed in 1814 milliseconds

1 2 3 4 5 6 7 8 91011>>