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

  /external/chromium/chrome/browser/ui/webui/chromeos/
enterprise_enrollment_ui.h 20 class Controller {
22 virtual ~Controller() {}
42 // Gets the controller the given |web_ui| is associated with. Returns NULL if
43 // there is no controller set.
44 static Controller* GetController(WebUI* web_ui);
46 // Sets the controller on a tab contents.
47 static void SetController(TabContents* contents, Controller* controller);
  /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...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysPanel.java 23 public interface Controller {
33 * @param controller the controller that can dismiss this more keys panel
39 public void showMoreKeysPanel(View parentView, Controller controller, int pointX, int pointY,
  /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 175 new Intent(this, Controller.class), 0);
201 public static class Controller extends Activity {
220 intent.setClass(Controller.this, ForegroundService.class);
228 intent.setClass(Controller.this, ForegroundService.class);
235 stopService(new Intent(Controller.this,
RemoteService.java 49 * {@link Controller} and {@link Binding} classes
192 new Intent(this, Controller.class), 0);
214 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,
  /external/clang/tools/scan-view/
startfile.py 27 class Controller(BaseController):
28 '''Controller for a generic open program.'''
31 super(Controller, self).__init__(os.path.basename(args[0]))
85 '''Controller for the win32 start progam through os.startfile.'''
103 _controllers['open']= Controller('open')
115 class KfmClient(Controller):
116 '''Controller for the KDE kfmclient program.'''
173 _controllers[command] = Controller(command)
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactsListFragment.java 49 public interface Controller {
53 Controller mController;
121 public void setController(Controller controller) {
122 mController = controller;
GroupsListFragment.java 44 Controller mController;
48 public interface Controller {
54 public void setController(Controller controller) {
55 mController = controller;
ContactFragment.java 95 private Controller mController;
144 public ContactFragment(Uri uri, ContactFragment.Controller controller) {
146 mController = controller;
233 public interface Controller {
238 public static final class DefaultController implements Controller {
268 public void setController(Controller controller) {
269 mController = controller;
  /frameworks/base/cmds/stagefright/
sf2.cpp 42 struct Controller : public AHandler {
43 Controller(const char *uri, bool decodeAudio,
59 virtual ~Controller() {
535 DISALLOW_EVIL_CONSTRUCTORS(Controller);
625 sp<Controller> controller = local
626 new Controller(argv[0], decodeAudio, surface, renderToSurface);
628 looper->registerHandler(controller);
630 controller->startAsync();
634 looper->unregisterHandler(controller->id())
    [all...]
  /packages/apps/Browser/src/com/android/browser/
UploadHandler.java 45 private Controller mController;
47 public UploadHandler(Controller controller) {
48 mController = controller;
198 mController.getActivity().startActivityForResult(intent, Controller.FILE_SELECTED);
205 Controller.FILE_SELECTED);
BreadCrumbView.java 45 public interface Controller {
50 private Controller mController;
105 public void setController(Controller ctl) {
BrowserBookmarksPage.java 77 LoaderManager.LoaderCallbacks<Cursor>, BreadCrumbView.Controller,
207 Controller.sharePage(activity,
555 * BreadCrumb controller callback
Controller.java 104 * Controller for browser
106 public class Controller
109 private static final String LOGTAG = "Controller";
221 public Controller(Activity browser, boolean preloadCrashState) {
794 mHandler.removeMessages(Controller.UPDATE_BOOKMARK_THUMBNAIL,
    [all...]
  /packages/apps/Email/src/com/android/email/
Controller.java 70 * New central controller/dispatcher for Email activities that may require remote operations.
75 public class Controller {
76 private static final String TAG = "Controller";
77 private static Controller sInstance;
121 protected Controller(Context _context) {
129 * Mark this controller as being in use in a unit test.
130 * This is a kludge vs having proper mocks and dependency injection; since the Controller is a
138 * Cleanup for test. Mustn't be called for the regular {@link Controller}, as it's a
148 * Gets or creates the singleton instance of Controller.
150 public synchronized static Controller getInstance(Context _context)
    [all...]

Completed in 375 milliseconds