HomeSort by relevance Sort by last modified time
    Searched full:sl4a (Results 1 - 25 of 49) sorted by null

1 2

  /external/sl4a/
README.md 5 Originally authored by Damon Kohler, Scripting Layer for Android, SL4A, is an automation toolset
10 Due to its inclusion in AOSP as a privileged app, building SL4A requires a system build.
22 Then Build SL4A:
24 cd <ANDROID_SOURCE_ROOT>/external/sl4a
27 ### Adding SL4A Builds to Android Builds by Default
32 2) Modify the buildspec to build SL4A as a custom module by editing
33 the line '#CUSTOM_MODULES:=' to 'CUSTOM_MODULES:=sl4a':
35 sed -i 's/#CUSTOM_MODULES:=/CUSTOM_MODULES:=sl4a/' <ANDROID_SOURCE_ROOT>/buildspec.mk
40 adb install -r <ANDROID_SOURCE_ROOT>/out/target/product/<TARGET>/data/app/sl4a/sl4a.ap
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/
Android.mk 24 LOCAL_PACKAGE_NAME := sl4a
41 LOCAL_STATIC_JAVA_LIBRARIES += sl4a.Utils sl4a.Common
42 LOCAL_STATIC_JAVA_LIBRARIES += sl4a.InterpreterForAndroid sl4a.ScriptingLayer
  /external/sl4a/ScriptingLayer/
Android.mk 22 LOCAL_MODULE := sl4a.ScriptingLayer
26 LOCAL_STATIC_JAVA_LIBRARIES += sl4a.Utils sl4a.Common
  /external/sl4a/InterpreterForAndroid/
Android.mk 22 LOCAL_MODULE := sl4a.InterpreterForAndroid
24 LOCAL_STATIC_JAVA_LIBRARIES := guava android-common sl4a.Utils
  /tools/test/connectivity/acts/framework/tests/
Sl4aSanityTest.py 23 """Tests for sl4a basic sanity.
36 """Constantly start and terminate sl4a sessions.
41 more message regarding sl4a happens.
  /external/sl4a/Common/
Android.mk 22 LOCAL_MODULE := sl4a.Common
25 LOCAL_STATIC_JAVA_LIBRARIES := guava android-common sl4a.Utils
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ScriptingLayerServiceLauncher.java 32 private static final String LOG_TAG = "sl4a";
45 Log.e(LOG_TAG, "ERROR: Cannot to start SL4A on non-debuggable build!");
CustomizeWindow.java 39 //((TextView) activity.findViewById(R.id.right_text)).setText("SL4A r"
TriggerService.java 111 .setTicker("SL4A Trigger Service started.")
113 .setContentTitle("SL4A Trigger Service")
ScriptManager.java 111 File sl4a = mBaseDir.getParentFile(); local
112 if (!sl4a.exists()) {
113 sl4a.mkdir();
115 FileUtils.chmod(sl4a, 0755); // Handle the sl4a parent folder first.
ScriptingLayerService.java 65 private final String LOG_TAG = "sl4a";
117 .setContentTitle("SL4A Service")
138 builder.setContentTitle("SL4A Service")
  /external/sl4a/Utils/
Android.mk 22 LOCAL_MODULE := sl4a.Utils
  /tools/test/connectivity/acts/framework/acts/controllers/
sl4a_types.py 20 """Event returned by sl4a calls to eventPoll() and eventWait()
android_device.py 95 msg = "Failed to start sl4a on %s" % ad.serial
282 handles to adb, fastboot, and sl4a clients. In addition to direct adb
364 """The first sl4a session initiated on this device. None if there isn't
386 """A list of the active sl4a sessions on this device.
441 """Create an sl4a connection to the device.
446 If sl4a server is not started on the device, try to start it.
453 droid: Android object used to communicate with sl4a on the android
480 """Return an EventDispatcher for an sl4a session
604 """Start a new session in sl4a.
609 An Android object used to communicate with sl4a on the androi
    [all...]
adb.py 146 """Starts sl4a server on the android device.
162 """Checks if the sl4a app is running on an android device.
165 True if the sl4a app is running, False otherwise.
  /external/sl4a/Utils/src/com/googlecode/android_scripting/interpreter/
InterpreterConstants.java 32 public static final String SDCARD_SL4A_ROOT = SDCARD_ROOT + "sl4a/";
58 public static final String INSTALLED_PREFERENCE_KEY = "SL4A.interpreter.installed";
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
AudioManagerFacade.java 63 @Rpc(description = "Request audio focus for sl4a.")
76 @Rpc(description = "Whether sl4a has the audio focus or not.")
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
RpcDeprecated.java 35 /** Release of SL4A when deprecation occurred. */
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/
MessageHandler.java 69 Log.e("No SL4A method specified on the Bundle. Specify one with "
93 Log.e("Exception while executing sl4a method", t);
FacadeService.java 14 * FacadeService exposes SL4A's Facade methods through a {@link Service} so
  /tools/test/connectivity/acts/tests/google/tel/live/
TelPowerTest.py 796 # TODO: This one is not working right now. Requires SL4A API to start alarm.
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/webcam/
MjpegServer.java 44 "Server: SL4A\r\n" +
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/interpreter/
Sl4aHostedInterpreter.java 28 * A description of the interpreters hosted by the SL4A project.
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
ScriptProvider.java 44 public static final String SINGLE_MIME = "vnd.android.cursor.item/vnd.sl4a.script";
45 public static final String MULTIPLE_MIME = "vnd.android.cursor.dir/vnd.sl4a.script";
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
AndroidFacade.java 828 @RpcDefault("SL4A Input")
840 @RpcDefault("SL4A Password Input")
    [all...]

Completed in 5430 milliseconds

1 2