Searched refs:msg_type (Results 1 – 5 of 5) sorted by relevance
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/ |
D | Channel.java | 215 public abstract void onEmulatorMessage(int msg_type, ByteBuffer msg_data); in onEmulatorMessage() argument 398 private void sendMessage(Socket socket, int msg_type, byte[] msg, int len) in sendMessage() argument 411 bb.putInt(msg_type); in sendMessage() 429 public boolean sendMessage(int msg_type, byte[] msg, int msg_len) { in sendMessage() argument 433 sendMessage(socket, msg_type, msg, msg_len); in sendMessage() 453 public boolean sendMessage(int msg_type, byte[] msg) { in sendMessage() argument 458 sendMessage(socket, msg_type, msg, msg.length); in sendMessage() 460 sendMessage(socket, msg_type, null, 0); in sendMessage() 481 public boolean sendMessage(int msg_type, ByteBuffer msg) { in sendMessage() argument 486 sendMessage(socket, msg_type, msg.array(), msg.position()); in sendMessage() [all …]
|
D | Connection.java | 315 final int msg_type = handshake.getInt(); in onAccept() local 316 assert msg_type == ProtocolConstants.PACKET_TYPE_QUERY; in onAccept() 324 if (msg_type != ProtocolConstants.PACKET_TYPE_QUERY) { in onAccept() 328 Loge("Unexpected handshake message type: " + msg_type); in onAccept()
|
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/ |
D | MultiTouchChannel.java | 106 public void onEmulatorMessage(int msg_type, ByteBuffer msg_data) { in onEmulatorMessage() argument 107 switch (msg_type) { in onEmulatorMessage() 117 Log.e(TAG, "Unknown message type " + msg_type); in onEmulatorMessage()
|
D | SensorChannel.java | 212 public void onEmulatorMessage(int msg_type, ByteBuffer msg_data) { in onEmulatorMessage() argument 213 switch (msg_type) { in onEmulatorMessage() 233 Loge("Unknown message type " + msg_type); in onEmulatorMessage()
|
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/ |
D | MultiTouchActivity.java | 171 int msg_type = 0; in onTouch() local 184 msg_type = ProtocolConstants.MT_MOVE; in onTouch() 192 msg_type = ProtocolConstants.MT_FISRT_DOWN; in onTouch() 200 msg_type = ProtocolConstants.MT_LAST_UP; in onTouch() 208 msg_type = ProtocolConstants.MT_POINTER_DOWN; in onTouch() 216 msg_type = ProtocolConstants.MT_POINTER_UP; in onTouch() 227 h.postMessage(msg_type, bb); in onTouch()
|