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

/system/tools/aidl/tests/java_app/src/android/aidl/tests/
H A DTestServiceClient.java121 boolean query = true;
122 boolean response = service.RepeatBoolean(query);
123 if (query != response) {
124 mLog.logAndThrow("Repeat with " + query +
129 char query = 'A';
130 char response = service.RepeatChar(query);
131 if (query != response) {
132 mLog.logAndThrow("Repeat with " + query +
137 byte query = -128;
138 byte response = service.RepeatByte(query);
[all...]
/system/connectivity/shill/bin/
H A Dreload_network_device33 eval $(udevadm info --query=property --path="/sys/class/net/${1}" |
/system/connectivity/shill/
H A Drouting_table.cc356 << ", next query seq: " << route_queries_.front().sequence;
359 // greater than that of the head of the route query sequence). Do the
371 const Query& query = route_queries_.front(); local
372 if (query.sequence == message.seq()) {
375 add_entry.tag = query.tag;
376 add_entry.table = query.table_id;
386 if (added && !query.callback.is_null()) {
387 SLOG(this, 2) << "Running query callback.";
388 query.callback.Run(interface_index, add_entry);
/system/bt/bta/hf_client/
H A Dbta_hf_client_int.h247 extern void bta_hf_client_send_at_cops(BOOLEAN query);
256 extern void bta_hf_client_send_at_btrh(BOOLEAN query, UINT32 val);
H A Dbta_hf_client_at.c1660 void bta_hf_client_send_at_cops(BOOLEAN query) argument
1666 if (query)
1794 void bta_hf_client_send_at_btrh(BOOLEAN query, UINT32 val) argument
1801 if (query == TRUE)
/system/core/adb/
H A Dcommandline.cpp1640 std::string query = android::base::StringPrintf("host:%s%s", argv[0], listopt); local
1642 return adb_query_command(query);
1650 std::string query = android::base::StringPrintf("host:connect:%s", argv[1]); local
1651 return adb_query_command(query);
1659 std::string query = android::base::StringPrintf("host:disconnect:%s", local
1661 return adb_query_command(query);
/system/core/include/system/
H A Dwindow.h128 /* attributes queriable with query() */
137 * Users of the set_buffer_count ANativeWindow method should query this
140 * and this query returns M then N+M buffers should be requested via
155 * to the window compositor. The query sets the returned 'value' argument
165 * conjunction with this query.
172 * This query should not be used outside the Android framework and will
221 * query(..., NATIVE_WINDOW_TRANSFORM_HINT, &hintTransform);
377 /* values returned by the NATIVE_WINDOW_CONCRETE_TYPE query */
499 int (*query)(const struct ANativeWindow* window, member in struct:ANativeWindow

Completed in 363 milliseconds