HomeSort by relevance Sort by last modified time
    Searched defs:Controller (Results 1 - 8 of 8) sorted by null

  /system/core/nexus/
Controller.h 30 class Controller {
32 * Name of this controller - WIFI/VPN/USBNET/BTNET/BTDUN/LOOP/etc
37 * Name of the system ethernet interface which this controller is
47 Controller(const char *name, PropertyManager *propMngr,
49 virtual ~Controller();
68 typedef android::List<Controller *> ControllerCollection;
Controller.cpp 28 #define LOG_TAG "Controller"
32 #include "Controller.h"
38 Controller::Controller(const char *name, PropertyManager *propMngr,
46 Controller::~Controller() {
53 int Controller::start() {
57 int Controller::stop() {
61 int Controller::loadKernelModule(char *modpath, const char *args) {
76 int Controller::unloadKernelModule(const char *modtag)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LocalServiceActivities.java 43 public static class Controller extends Activity {
64 startService(new Intent(Controller.this,
74 stopService(new Intent(Controller.this,
ForegroundService.java 165 new Intent(this, Controller.class), 0);
191 public static class Controller extends Activity {
210 intent.setClass(Controller.this, ForegroundService.class);
218 intent.setClass(Controller.this, ForegroundService.class);
225 stopService(new Intent(Controller.this,
RemoteService.java 49 * {@link Controller} and {@link Binding} classes
187 new Intent(this, Controller.class), 0);
209 public static class Controller extends Activity {
ServiceStartArguments.java 42 * in the same process as the application. The {@link Controller}
111 mInvokeIntent = new Intent(this, Controller.class);
183 new Intent(this, Controller.class), 0);
209 public static class Controller extends Activity {
231 startService(new Intent(Controller.this,
239 startService(new Intent(Controller.this,
247 startService(new Intent(Controller.this,
256 startService(new Intent(Controller.this,
DeviceAdminSample.java 101 public static class Controller extends Activity {
143 mDeviceAdminSample = new ComponentName(Controller.this, DeviceAdminSample.class);
199 Toast.makeText(Controller.this, "WARNING: Phone will wipe after " +
348 AlertDialog.Builder builder = new AlertDialog.Builder(Controller.this);
366 AlertDialog.Builder builder = new AlertDialog.Builder(Controller.this);
383 AlertDialog.Builder builder = new AlertDialog.Builder(Controller.this);
389 AlertDialog.Builder builder = new AlertDialog.Builder(Controller.this);
393 AlertDialog.Builder builder = new AlertDialog.Builder(Controller.this);
427 AlertDialog.Builder builder = new AlertDialog.Builder(Controller.this);
  /packages/apps/Email/src/com/android/email/
Controller.java 47 * New central controller/dispatcher for Email activities that may require remote operations.
51 public class Controller {
53 private static Controller sInstance;
73 protected Controller(Context _context) {
81 * Gets or creates the singleton instance of Controller.
84 public synchronized static Controller getInstance(Context _context) {
86 sInstance = new Controller(_context);
150 * TODO: Clean up threading in MessagingController cases (or perhaps here in Controller)
253 * @param callback the Controller callback by which results will be reported
715 * @callback the Controller callback by which results will be reported (currently not defined
    [all...]

Completed in 253 milliseconds