[go: nahoru, domu]

Searched refs:started (Results 1 - 25 of 29) sorted by relevance

12

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DBluetoothCallback.java26 void onScanningStateChanged(boolean started); argument
H A DCachedBluetoothDeviceManager.java127 public synchronized void onScanningStateChanged(boolean started) { argument
128 if (!started) return;
H A DBluetoothEventManager.java172 ScanningStateChangedHandler(boolean started) { argument
173 mStarted = started;
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/
H A DTestJobListener.java35 @Nullable private Job started; field in class:TestJobListener
40 started = job;
55 if (started == null) {
/frameworks/base/test-runner/src/android/test/
H A DTestPrinter.java49 public void started(String className) { method in class:TestPrinter
51 Log.i(mTag, "started: " + className);
111 started(test.toString());
H A DTestRunner.java102 started(test.toString());
153 void started(String className); method in interface:TestRunner.Listener
181 private void started(String className) { method in class:TestRunner
185 mListeners.get(i).started(className);
272 started(className);
297 started(className);
354 started(test.toString());
511 started(test.toString());
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DServiceState.java140 + " from " + mOwner + " while started: pkg="
169 + " cleared while started: pkg=" + mPackage + " service="
277 public void setStarted(boolean started, int memFactor, long now) { argument
281 mStarted = started;
292 final boolean started = mStarted || mRestarting;
293 final int state = started ? memFactor : STATE_NOTHING;
298 } else if (started) {
304 if (wasStarted != started) {
305 if (started) {
/frameworks/base/core/java/android/view/animation/
H A DAnimationSet.java375 boolean started = false;
387 started = started || a.hasStarted();
391 if (started && !mStarted) {
/frameworks/base/core/java/android/app/
H A DFragmentHostCallback.java53 /** Whether or not the fragment host loader manager was started */
292 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
299 lm = new LoaderManagerImpl(who, this, started);
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
536 LoaderManagerImpl(String who, FragmentHostCallback host, boolean started) argument
[all...]
H A DActivityManager.java162 * thing being started is not an activity.
197 * Result for IActivityManaqer.startActivity: the activity was started
211 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
218 * Result for IActivityManaqer.startActivity: activity wasn't really started, but
233 * Result for IActivityManaqer.startActivity: a new activity was attempted to be started
1232 * started or visited.
1254 * If this task was started from an alias, this is the actual
1255 * activity component that was initially started; the component of
1262 * The actual activity component that started the task.
1498 * user has started an
2101 public boolean started; field in class:ActivityManager.RunningServiceInfo
[all...]
/frameworks/base/core/java/android/widget/
H A DChronometer.java237 public void setStarted(boolean started) { argument
238 mStarted = started;
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentHostCallback.java54 /** Whether or not the fragment host loader manager was started */
302 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
309 lm = new LoaderManagerImpl(who, this, started);
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
195 // from the time its load is started until it has been explicitly
243 // Our owner is started, but we were being retained from a
244 // previous instance in the started state... so there is really
245 // nothing to do here, since the loaders are still started.
251 // If loader already started, don't restart.
291 // This loader was retained in a started stat
529 LoaderManagerImpl(String who, FragmentHostCallback host, boolean started) argument
[all...]
/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) {
H A DBluetoothControllerImpl.java200 public void onScanningStateChanged(boolean started) { argument
/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
H A DHdmiCecLocalDevice.java664 if (!action.started()) {
/frameworks/support/v4/tests/java/android/support/v4/app/
H A DFragmentTransitionTest.java367 boolean started = fragment.waitForStart(key);
369 return started;
/frameworks/support/design/src/android/support/design/widget/
H A DAppBarLayout.java783 final boolean started = (nestedScrollAxes & ViewCompat.SCROLL_AXIS_VERTICAL) != 0
787 if (started && mOffsetAnimator != null) {
792 // A new nested scroll has started so clear out the previous ref
795 return started;
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeechService.java942 // Non null after synthesis has started, and all accesses
1024 // turn implies that synthesis would not have started.
1433 public void dispatchOnStop(Object callerIdentity, String utteranceId, boolean started) { argument
1437 cb.onStop(utteranceId, started);
/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastQueue.java144 * process broadcasts one at a time, so no others can be started while
276 boolean started = false;
289 started = true;
291 if (!started) {
917 // Keep track of when this receiver started, and make sure there
1242 // Not running -- get it started, to be executed when the app comes up.
1330 // for started services to finish as well before going on. So if we have actually
1342 + ", started " + (now - r.receiverTime) + "ms ago");
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/
H A DKeyboardUI.java608 public void onScanningStateChanged(boolean started) { } argument
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs261 </li><!-- end getting started -->
1600 <li><a href="<?cs var:toroot ?>training/material/get-started.html"
2138 description="How to get started with testing your Android applications.">
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pServiceImpl.java1426 if (DBG) logd(getName() + " group started");
1728 if (DBG) logd(getName() + " group started");
1890 loge(getName() + "group started after freq conflict, handle anyway");
1936 //DHCP server has already been started if I am a group owner
1955 // Clear timeout that was set when group was started.
2260 private void sendP2pDiscoveryChangedBroadcast(boolean started) { argument
2261 if (mDiscoveryStarted == started) return;
2262 mDiscoveryStarted = started;
2264 if (DBG) logd("discovery change broadcast " + started);
2268 intent.putExtra(WifiP2pManager.EXTRA_DISCOVERY_STATE, started
[all...]

Completed in 450 milliseconds

12