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

12

/frameworks/base/core/java/android/service/dreams/
H A DIDreamService.aidl25 void attach(IBinder windowToken, boolean canDoze, IRemoteCallback started);
H A DDreamService.java71 * <p>Your dream has started, so you should begin animations or other behaviors here.</li>
73 * <p>Use this to stop the things you started in {@link #onDreamingStarted}.</li>
377 * @return The current window manager, or null if the dream is not started.
387 * @return The current window, or null if the dream is not started.
585 * The value returned by this method is only meaningful when the dream has started.
946 * @param started A callback that will be invoked once onDreamingStarted has completed.
948 private final void attach(IBinder windowToken, boolean canDoze, IRemoteCallback started) { argument
1026 started.sendResult(null);
1106 IRemoteCallback started) {
1110 DreamService.this.attach(windowToken, canDoze, started);
1105 attach(final IBinder windowToken, final boolean canDoze, IRemoteCallback started) argument
[all...]
/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/services/core/java/com/android/server/connectivity/tethering/
H A DOffloadController.java132 if (started()) return true;
155 if (!started()) return;
161 if (!started()) return;
167 if (!started()) return;
181 if (!started()) return;
198 if (!started()) return;
221 if (!started()) return;
226 final boolean isStarted = started();
231 mLog.log("tethering offload started");
241 // callbacks must be ignored. Offload may be started agai
251 private boolean started() { method in class:OffloadController
[all...]
/frameworks/base/test-runner/src/android/test/
H A DTestPrinter.java48 private void started(String className) { method in class:TestPrinter
50 Log.i(mTag, "started: " + className);
95 started(test.toString());
/frameworks/opt/net/wifi/service/
H A Dwifi-events.rc18 setprop sys.wifitracing.started 0
20 on property:sys.boot_completed=1 && property:sys.wifitracing.started=0
60 setprop sys.wifitracing.started 1
62 on property:sys.boot_completed=1 && property:wifi.interface=* && sys.wifitracing.started=1
/frameworks/av/services/mediaanalytics/
H A DMediaAnalyticsService.h105 void setStarted(nsecs_t started) {mStarted = started;} argument
/frameworks/support/lifecycle/common/src/test/java/android/arch/lifecycle/
H A DReflectiveGenericLifecycleObserverTest.java128 verify(obj).started();
158 void started() {} method in class:ReflectiveGenericLifecycleObserverTest.AllMethodsListener
181 void started() {
199 private void started() {
214 private void started(Lifecycle.Event e) {
224 private void started(Lifecycle l, Lifecycle.Event e) {
234 private void started(LifecycleOwner owner, Lifecycle l) {
244 private void started(LifecycleOwner owner, Lifecycle.Event e, int i) {
/frameworks/base/core/java/android/app/
H A DFragmentHostCallback.java54 /** Whether or not the fragment host loader manager was started */
321 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
327 lm = new LoaderManagerImpl(who, this, started);
329 } else if (started && lm != null && !lm.mStarted){
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
208 // from the time its load is started until it has been explicitly
253 // Our owner is started, but we were being retained from a
254 // previous instance in the started state... so there is really
255 // nothing to do here, since the loaders are still started.
261 // If loader already started, don't restart.
301 // This loader was retained in a started stat
539 LoaderManagerImpl(String who, FragmentHostCallback host, boolean started) argument
[all...]
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentHostCallback.java54 /** Whether or not the fragment host loader manager was started */
303 LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) { argument
309 lm = new LoaderManagerImpl(who, this, started);
311 } else if (started && lm != null && !lm.mStarted) {
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
240 // Our owner is started, but we were being retained from a
241 // previous instance in the started state... so there is really
242 // nothing to do here, since the loaders are still started.
248 // If loader already started, don't restart.
288 // This loader was retained in a started stat
526 LoaderManagerImpl(String who, FragmentHostCallback host, boolean started) argument
[all...]
/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/widget/
H A DChronometer.java260 public void setStarted(boolean started) { argument
261 mStarted = 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) {
H A DBluetoothControllerImpl.java240 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
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/design/src/android/support/design/widget/
H A DAppBarLayout.java828 final boolean started = (nestedScrollAxes & ViewCompat.SCROLL_AXIS_VERTICAL) != 0
832 if (started && mOffsetAnimator != null) {
837 // A new nested scroll has started so clear out the previous ref
840 return started;
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeechService.java961 // Non null after synthesis has started, and all accesses
1047 // turn implies that synthesis would not have started.
1516 public void dispatchOnStop(Object callerIdentity, String utteranceId, boolean started) { argument
1520 cb.onStop(utteranceId, started);
/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastQueue.java145 * process broadcasts one at a time, so no others can be started while
294 boolean started = false;
307 started = true;
309 if (!started) {
994 // Keep track of when this receiver started, and make sure there
1351 // Not running -- get it started, to be executed when the app comes up.
1432 // for started services to finish as well before going on. So if we have actually
1444 + ", started " + (now - r.receiverTime) + "ms ago");

Completed in 695 milliseconds

12