HomeSort by relevance Sort by last modified time
    Searched refs:Controller (Results 1 - 25 of 36) sorted by null

1 2

  /system/core/nexus/
IControllerHandler.h 20 class Controller;
26 virtual void onInterfaceConnected(Controller *c) = 0;
27 virtual void onInterfaceDisconnected(Controller *c) = 0;
28 virtual void onControllerSuspending(Controller *c) = 0;
29 virtual void onControllerResumed(Controller *c) = 0;
NetworkManager.h 23 #include "Controller.h"
35 Controller *mController;
40 ControllerBinding(Controller *c);
45 Controller *getController() { return mController; }
65 int attachController(Controller *controller);
67 Controller *findController(const char *name);
80 ControllerBinding *lookupBinding(Controller *c);
82 void onInterfaceConnected(Controller *c);
83 void onInterfaceDisconnected(Controller *c)
    [all...]
DhcpListener.h 23 class Controller;
27 Controller *mController;
31 DhcpListener(Controller *c, int socket, IDhcpEventHandlers *handlers);
IDhcpEventHandlers.h 24 virtual void onDhcpStateChanged(Controller *c, int state) = 0;
25 virtual void onDhcpEvent(Controller *c, int event) = 0;
26 virtual void onDhcpLeaseUpdated(Controller *c,
DhcpClient.h 26 class Controller;
39 Controller *mController;
50 int start(Controller *c);
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;
LoopController.cpp 24 Controller("loop", propmngr, handlers) {
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...]
LoopController.h 20 #include "Controller.h"
24 class LoopController : public Controller {
NetworkManager.cpp 57 int NetworkManager::attachController(Controller *c) {
87 NetworkManager::ControllerBinding *NetworkManager::lookupBinding(Controller *c) {
98 Controller *NetworkManager::findController(const char *name) {
109 void NetworkManager::onInterfaceConnected(Controller *c) {
110 LOGD("Controller %s interface %s connected", c->getName(), c->getBoundInterface());
118 void NetworkManager::onInterfaceDisconnected(Controller *c) {
119 LOGD("Controller %s interface %s disconnected", c->getName(),
125 void NetworkManager::onControllerSuspending(Controller *c) {
126 LOGD("Controller %s interface %s suspending", c->getName(),
131 void NetworkManager::onControllerResumed(Controller *c)
    [all...]
Supplicant.h 23 class Controller;
83 Controller *getController() { return (Controller *) mController; }
Android.mk 16 Controller.cpp \
VpnController.h 22 #include "Controller.h"
26 class VpnController : public Controller {
DhcpListener.cpp 29 #include "Controller.h"
31 DhcpListener::DhcpListener(Controller *c, int socket, IDhcpEventHandlers *handlers) :
VpnController.cpp 30 Controller("vpn", propmngr, handlers) {
WifiNetwork.h 67 class Controller;
326 Controller *getController() { return (Controller *) mController; }
  /development/samples/ApiDemos/src/com/example/android/apis/app/
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,
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,
LocalServiceActivities.java 43 public static class Controller extends Activity {
64 startService(new Intent(Controller.this,
74 stopService(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);
MessengerService.java 38 import com.example.android.apis.app.RemoteService.Controller;
158 new Intent(this, Controller.class), 0);
LocalService.java 35 * in the same process as the application. The {@link LocalServiceActivities.Controller}
106 new Intent(this, LocalServiceActivities.Controller.class), 0);
  /packages/apps/Email/tests/src/com/android/email/
ControllerProviderOpsTests.java 32 * Tests of the Controller class that depend on the underlying provider.
64 * Lightweight subclass of the Controller class allows injection of mock context
66 public static class TestController extends Controller {
78 Controller ct = new TestController(mProviderContext, mContext);
100 * Test of Controller.createMailbox().
111 Controller ct = new TestController(mProviderContext, mContext);
120 * Test of Controller.findOrCreateMailboxOfType().
136 Controller ct = new TestController(mProviderContext, mContext);
174 Controller ct = new TestController(mProviderContext, mContext);
211 Controller ct = new TestController(mProviderContext, mContext)
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
Debug.java 19 import com.android.email.Controller;
132 Controller.getInstance(context).serviceLogging(debugBits);
  /packages/apps/Email/src/com/android/email/service/
MailService.java 20 import com.android.email.Controller;
80 private final Controller.Result mControllerCallback = new ControllerResults();
85 * Access must be synchronized, because there are accesses from the Controller callback
160 // TODO this needs to be passed through the controller and back to us
164 Controller controller = Controller.getInstance(getApplication()); local
165 controller.addResultCallback(mControllerCallback);
182 if (checkAccountId == -1 || !syncOneAccount(controller, checkAccountId, startId)) {
260 Controller.getInstance(getApplication()).removeResultCallback(mControllerCallback);
    [all...]

Completed in 620 milliseconds

1 2