HomeSort by relevance Sort by last modified time
    Searched refs:JniInterface (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
SessionConnector.java 7 import org.chromium.chromoting.jni.JniInterface;
13 public class SessionConnector implements JniInterface.ConnectionListener,
15 private JniInterface.ConnectionListener mConnectionCallback;
32 public SessionConnector(JniInterface.ConnectionListener connectionCallback,
53 JniInterface.connectToHost(accountName, authToken, host.jabberId, host.id, host.publicKey,
66 public void onConnectionState(JniInterface.ConnectionListener.State state,
67 JniInterface.ConnectionListener.Error error) {
68 if (state == JniInterface.ConnectionListener.State.FAILED &&
69 error == JniInterface.ConnectionListener.Error.PEER_IS_OFFLINE) {
96 mConnectionCallback.onConnectionState(JniInterface.ConnectionListener.State.FAILED
    [all...]
Desktop.java 20 import org.chromium.chromoting.jni.JniInterface;
62 JniInterface.disconnectFromHost();
155 JniInterface.disconnectFromHost();
165 JniInterface.sendKeyEvent(key, true);
168 JniInterface.sendKeyEvent(key, false);
201 JniInterface.sendTextEvent(event.getCharacters());
218 JniInterface.sendTextEvent(new String(codePoints, 0, 1));
229 JniInterface.sendKeyEvent(KeyEvent.KEYCODE_SHIFT_LEFT, pressed);
230 JniInterface.sendKeyEvent(KeyEvent.KEYCODE_2, pressed);
234 JniInterface.sendKeyEvent(KeyEvent.KEYCODE_SHIFT_LEFT, pressed)
    [all...]
DesktopView.java 27 import org.chromium.chromoting.jni.JniInterface;
148 JniInterface.redrawGraphics();
168 Bitmap image = JniInterface.getVideoFrame();
181 // triggered from JniInterface (on the display thread) when the remote screen size
224 Bitmap cursorBitmap = JniInterface.getCursorBitmap();
226 Point hotspot = JniInterface.getCursorHotspot();
269 JniInterface.provideRedrawCallback(new Runnable() {
294 JniInterface.provideRedrawCallback(null);
347 JniInterface.sendMouseEvent(x, y, button, pressed);
356 JniInterface.sendMouseWheelEvent(deltaX, deltaY)
    [all...]
Chromoting.java 32 import org.chromium.chromoting.jni.JniInterface;
41 public class Chromoting extends Activity implements JniInterface.ConnectionListener,
165 JniInterface.loadLibrary(this);
226 JniInterface.disconnectFromHost();
283 JniInterface.disconnectFromHost();
423 public void onConnectionState(JniInterface.ConnectionListener.State state,
424 JniInterface.ConnectionListener.Error error) {
477 JniInterface.nativeOnThirdPartyTokenFetched(token, sharedSecret);
HostListLoader.java 12 import org.chromium.chromoting.jni.JniInterface;
90 new URL(HOST_LIST_PATH + JniInterface.nativeGetApiKey()).openConnection();
91 link.addRequestProperty("client_id", JniInterface.nativeGetClientId());
92 link.addRequestProperty("client_secret", JniInterface.nativeGetClientSecret());
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/
JniInterface.java 35 public class JniInterface {

Completed in 141 milliseconds