Searched defs:started (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/test-runner/src/android/test/
H A DTestPrinter.java48 public void started(String className) { method in class:TestPrinter
50 Log.i(mTag, "started: " + className);
110 started(test.toString());
H A DTestRunner.java101 started(test.toString());
152 void started(String className); method in interface:TestRunner.Listener
180 private void started(String className) { method in class:TestRunner
184 mListeners.get(i).started(className);
271 started(className);
296 started(className);
353 started(test.toString());
510 started(test.toString());
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwardServer.java41 private boolean started; field in class:ForwardServer
49 started = false;
54 if(!started) {
59 started = true;
64 if(started) {
75 started = false;
81 return started;
/frameworks/base/core/java/android/widget/
H A DChronometer.java208 public void setStarted(boolean started) { argument
209 mStarted = started;
H A DRemoteViews.java1851 * @param started True if you want the clock to be started, false if not.
1853 public void setChronometer(int viewId, long base, String format, boolean started) { argument
1856 setBoolean(viewId, "setStarted", started);
/frameworks/base/core/java/android/app/
H A DLoaderManager.java126 * started) starts the loader. Otherwise the last created
131 * the caller is in its started state, and the requested loader
151 * and (if the activity/fragment is currently started) starts loading it.
153 * started it will automatically be destroyed when the new loader completes
205 // from the time its load is started until it has been explicitly
250 // Our owner is started, but we were being retained from a
251 // previous instance in the started state... so there is really
252 // nothing to do here, since the loaders are still started.
258 // If loader already started, don't restart.
298 // This loader was retained in a started stat
533 LoaderManagerImpl(String who, Activity activity, boolean started) argument
[all...]
H A DActivityManager.java76 * thing being started is not an activity.
111 * Result for IActivityManaqer.startActivity: the activity was started
125 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
132 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
423 * started or visited.
445 * If this task was started from an alias, this is the actual
446 * activity component that was initially started; the component of
533 * user has started and the maximum number the system can remember.
560 * user has started and the maximum number the system can remember.
692 * user has started
967 public boolean started; field in class:ActivityManager.RunningServiceInfo
[all...]
H A DActivity.java154 * When a new activity is started, it is placed on the top of the stack
279 * started again.
320 * may happen either because a new activity is being started, an existing
761 /** Return the intent that started this activity. */
824 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
831 lm = new LoaderManagerImpl(who, this, started);
1119 * of a new instance of the activity being started, onNewIntent() will be
1129 * @param intent The new intent that was started for the activity.
3351 * returned back from the started activity. This is to avoid visible
3360 * @param options Additional options for how the Activity should be started
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DLoaderManager.java107 * started) starts the loader. Otherwise the last created
112 * the caller is in its started state, and the requested loader
132 * and (if the activity/fragment is currently started) starts loading it.
134 * started it will automatically be destroyed when the new loader completes
192 // from the time its load is started until it has been explicitly
236 // Our owner is started, but we were being retained from a
237 // previous instance in the started state... so there is really
238 // nothing to do here, since the loaders are still started.
244 // If loader already started, don't restart.
283 // This loader was retained in a started stat
477 LoaderManagerImpl(String who, FragmentActivity activity, boolean started) argument
[all...]
H A DFragmentActivity.java535 * now started.
862 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
869 lm = new LoaderManagerImpl(who, this, started);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pService.java1084 if (DBG) logd(getName() + " group started");
1293 if (DBG) logd(getName() + " group started");
1434 loge(getName() + "group started after freq conflict, handle anyway");
1478 //DHCP server has already been started if I am a group owner
1784 private void sendP2pDiscoveryChangedBroadcast(boolean started) { argument
1785 if (mDiscoveryStarted == started) return;
1786 mDiscoveryStarted = started;
1788 if (DBG) logd("discovery change broadcast " + started);
1792 intent.putExtra(WifiP2pManager.EXTRA_DISCOVERY_STATE, started ?

Completed in 153 milliseconds