Searched defs:started (Results 1 - 13 of 13) 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.java209 public void setStarted(boolean started) { argument
210 mStarted = started;
H A DRemoteViews.java2105 * @param started True if you want the clock to be started, false if not.
2107 public void setChronometer(int viewId, long base, String format, boolean started) { argument
2110 setBoolean(viewId, "setStarted", started);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DCastControllerImpl.java189 private void setProjection(MediaProjectionInfo projection, boolean started) { argument
194 if (started && !isCurrent) {
197 } else if (!started && isCurrent) {
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecFeatureAction.java78 * indicate that the action has started.
165 boolean started() { method in class:HdmiCecFeatureAction
/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.java104 * thing being started is not an activity.
139 * Result for IActivityManaqer.startActivity: the activity was started
153 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
160 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
175 * Result for IActivityManaqer.startActivity: a new activity was attempted to be started
759 * started or visited.
781 * If this task was started from an alias, this is the actual
782 * activity component that was initially started; the component of
951 * user has started and the maximum number the system can remember.
976 * user has started an
1435 public boolean started; field in class:ActivityManager.RunningServiceInfo
[all...]
H A DActivity.java172 * When a new activity is started, it is placed on the top of the stack
297 * started again.
338 * may happen either because a new activity is being started, an existing
800 /** Return the intent that started this activity. */
863 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
870 lm = new LoaderManagerImpl(who, this, started);
1270 * of a new instance of the activity being started, onNewIntent() will be
1280 * @param intent The new intent that was started for the activity.
3726 * returned back from the started activity. This is to avoid visible
3735 * @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.java210 * calls will only come when returning from the started Activity.
532 * now started.
862 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
869 lm = new LoaderManagerImpl(who, this, started);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pServiceImpl.java1330 if (DBG) logd(getName() + " group started");
1632 if (DBG) logd(getName() + " group started");
1795 loge(getName() + "group started after freq conflict, handle anyway");
1841 //DHCP server has already been started if I am a group owner
1860 // Clear timeout that was set when group was started.
2161 private void sendP2pDiscoveryChangedBroadcast(boolean started) { argument
2162 if (mDiscoveryStarted == started) return;
2163 mDiscoveryStarted = started;
2165 if (DBG) logd("discovery change broadcast " + started);
2169 intent.putExtra(WifiP2pManager.EXTRA_DISCOVERY_STATE, started
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java2947 * marked as started running at 'now'.
3209 Slog.wtfStack(TAG, "Proc started services underrun: pkg="
3519 + " from " + mOwner + " while started: pkg="
3548 + " cleared while started: pkg=" + mPackage + " service="
3653 public void setStarted(boolean started, int memFactor, long now) { argument
3657 mStarted = started;
3668 final boolean started = mStarted || mRestarting;
3669 final int state = started ? memFactor : STATE_NOTHING;
3674 } else if (started) {
3680 if (wasStarted != started) {
[all...]

Completed in 1385 milliseconds