Home
last modified time | relevance | path

Searched refs:query_type (Results 1 – 4 of 4) sorted by relevance

/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/
DMultiTouchChannel.java130 public void onEmulatorQuery(int query_id, int query_type, ByteBuffer query_data) { in onEmulatorQuery() argument
131 Loge("Unexpected query " + query_type + " in multi-touch"); in onEmulatorQuery()
DSensorChannel.java174 public void onEmulatorQuery(int query_id, int query_type, ByteBuffer query_data) { in onEmulatorQuery() argument
175 switch (query_type) { in onEmulatorQuery()
200 Loge("Unknown query " + query_type); in onEmulatorQuery()
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
DConnection.java321 final int query_type = handshake.getInt(); in onAccept() local
322 assert query_type == ProtocolConstants.QUERY_HANDSHAKE; in onAccept()
348 if (query_type != ProtocolConstants.QUERY_HANDSHAKE) { in onAccept()
350 Loge("Unexpected handshake query type: " + query_type); in onAccept()
DChannel.java226 public abstract void onEmulatorQuery(int query_id, int query_type, ByteBuffer query_data); in onEmulatorQuery() argument
669 final int query_type = header.getInt(); in runIOLooper() local
678 onEmulatorQuery(query_id, query_type, query_data); in runIOLooper()