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.java1729 * @param started True if you want the clock to be started, false if not.
1731 public void setChronometer(int viewId, long base, String format, boolean started) { argument
1734 setBoolean(viewId, "setStarted", started);
/frameworks/base/core/java/android/app/
H A DLoaderManager.java127 * started) starts the loader. Otherwise the last created
132 * the caller is in its started state, and the requested loader
152 * and (if the activity/fragment is currently started) starts loading it.
154 * started it will automatically be destroyed when the new loader completes
206 // from the time its load is started until it has been explicitly
249 // Our owner is started, but we were being retained from a
250 // previous instance in the started state... so there is really
251 // nothing to do here, since the loaders are still started.
257 // If loader already started, don't restart.
297 // This loader was retained in a started stat
532 LoaderManagerImpl(Activity activity, boolean started) argument
[all...]
H A DActivityManager.java73 * thing being started is not an activity.
108 * Result for IActivityManaqer.startActivity: the activity was started
122 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
129 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
408 * started or visited.
430 * If this task was started from an alias, this is the actual
431 * activity component that was initially started; the component of
518 * user has started and the maximum number the system can remember.
648 * user has started.
693 * user has started
913 public boolean started; field in class:ActivityManager.RunningServiceInfo
[all...]
H A DActivity.java153 * When a new activity is started, it is placed on the top of the stack
278 * started again.
319 * may happen either because a new activity is being started, an existing
751 /** Return the intent that started this activity. */
814 LoaderManagerImpl getLoaderManager(int index, boolean started, boolean create) { argument
821 lm = new LoaderManagerImpl(this, started);
1109 * of a new instance of the activity being started, onNewIntent() will be
1119 * @param intent The new intent that was started for the activity.
3332 * returned back from the started activity. This is to avoid visible
3341 * @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
234 // Our owner is started, but we were being retained from a
235 // previous instance in the started state... so there is really
236 // nothing to do here, since the loaders are still started.
242 // If loader already started, don't restart.
281 // This loader was retained in a started stat
475 LoaderManagerImpl(FragmentActivity activity, boolean started) argument
[all...]
H A DFragmentActivity.java507 * now started.
737 LoaderManagerImpl getLoaderManager(int index, boolean started, boolean create) { argument
744 lm = new LoaderManagerImpl(this, started);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pService.java1064 if (DBG) logd(getName() + " group started");
1110 //DHCP server has already been started if I am a group owner
1360 private void sendP2pDiscoveryChangedBroadcast(boolean started) { argument
1361 if (mDiscoveryStarted == started) return;
1362 mDiscoveryStarted = started;
1364 if (DBG) logd("discovery change broadcast " + started);
1368 intent.putExtra(WifiP2pManager.EXTRA_DISCOVERY_STATE, started ?

Completed in 269 milliseconds