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/core/java/android/widget/
H A DChronometer.java208 public void setStarted(boolean started) { argument
209 mStarted = started;
H A DRemoteViews.java1975 * @param started True if you want the clock to be started, false if not.
1977 public void setChronometer(int viewId, long base, String format, boolean started) { argument
1980 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.java87 * thing being started is not an activity.
122 * Result for IActivityManaqer.startActivity: the activity was started
136 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
143 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
465 * started or visited.
487 * If this task was started from an alias, this is the actual
488 * activity component that was initially started; the component of
585 * user has started and the maximum number the system can remember.
612 * user has started and the maximum number the system can remember.
750 * user has started
1025 public boolean started; field in class:ActivityManager.RunningServiceInfo
[all...]
H A DActivity.java157 * When a new activity is started, it is placed on the top of the stack
282 * started again.
323 * may happen either because a new activity is being started, an existing
767 /** Return the intent that started this activity. */
830 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
837 lm = new LoaderManagerImpl(who, this, started);
1125 * of a new instance of the activity being started, onNewIntent() will be
1135 * @param intent The new intent that was started for the activity.
3405 * returned back from the started activity. This is to avoid visible
3414 * @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.java554 * now started.
884 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
891 lm = new LoaderManagerImpl(who, this, started);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pService.java1226 if (DBG) logd(getName() + " group started");
1491 if (DBG) logd(getName() + " group started");
1654 loge(getName() + "group started after freq conflict, handle anyway");
1700 //DHCP server has already been started if I am a group owner
1719 // Clear timeout that was set when group was started.
2013 private void sendP2pDiscoveryChangedBroadcast(boolean started) { argument
2014 if (mDiscoveryStarted == started) return;
2015 mDiscoveryStarted = started;
2017 if (DBG) logd("discovery change broadcast " + started);
2021 intent.putExtra(WifiP2pManager.EXTRA_DISCOVERY_STATE, started
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java2411 * marked as started running at 'now'.
2672 Slog.wtfStack(TAG, "Proc started services underrun: pkg="
2961 + " from " + mOwner + " while started: pkg="
2990 + " cleared while started: pkg=" + mPackage + " service="
3091 public void setStarted(boolean started, int memFactor, long now) { argument
3095 mStarted = started;
3106 final boolean started = mStarted || mRestarting;
3107 final int state = started ? memFactor : STATE_NOTHING;
3112 } else if (started) {
3118 if (wasStarted != started) {
[all...]

Completed in 907 milliseconds