HomeSort by relevance Sort by last modified time
    Searched refs:stopped (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /frameworks/base/core/java/android/content/pm/
PackageUserState.java 28 public boolean stopped; field in class:PackageUserState
45 stopped = o.stopped;
IPackageManager.aidl 251 * Set whether the given package should be considered stopped, making
252 * it not visible to implicit intents that filter out stopped packages.
254 void setPackageStoppedState(String packageName, boolean stopped, int userId);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 41 RemoteAdtTestRunner_RunStoppedMsg=Test run stopped
43 RemoteAdtTestRunner_RunShellCommandUnresponsiveException=Device stopped sending output
  /frameworks/base/services/java/com/android/server/pm/
PackageSettingBase.java 70 // Whether this package is currently stopped, thus can not be
242 return readUserState(userId).stopped;
246 modifyUserState(userId).stopped = stop;
257 void setUserState(int userId, int enabled, boolean installed, boolean stopped,
263 state.stopped = stopped;
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipWakeupTimer.java 75 private boolean stopped() { method in class:SipWakeupTimer
77 if (DBG) log("Timer stopped");
152 if (stopped()) return;
178 if (stopped() || mEventQueue.isEmpty()) return;
208 if (stopped() || mEventQueue.isEmpty()) return;
256 if (stopped() || mEventQueue.isEmpty()) return;
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
permission-denied-stops-watches.js 1 description("Tests that when Geolocation permission is denied, watches are stopped, as well as one-shots.");
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 298 while (!sampler.stopped) {
321 * created. The profiler needs to be stopped, but not necessarily
347 private boolean stopped; field in class:SamplingProfiler.Sampler
355 stopped = true;
  /external/qemu/
cpus.c 74 if (env->stopped)
83 if (env->stopped)
326 env->stopped = 1;
471 if (!penv->stopped)
506 penv->stopped = 0;
cpu-defs.h 61 #define EXCP_DEBUG 0x10002 /* cpu stopped after a breakpoint or singlestep */
205 uint32_t stopped; /* Artificially stopped */ \
  /bionic/libc/bionic/
pthread-timers.c 109 int volatile stopped; /* set by _start_stop() */ member in struct:thr_timer
186 timer->stopped = stop;
342 timer->stopped = 0;
532 // If the timer is stopped or disarmed, wait indefinitely
534 if (timer->stopped || timespec_is_zero(&expires)) {
  /external/webkit/Source/WebKit/android/plugins/
ANPSoundInterface.cpp 140 return track->mTrack->stopped();
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.h 157 void didCallPluginFunction(bool& stopped);
267 bool stopped = false; local
268 didCallPluginFunction(stopped);
269 if (stopped) {
354 // This suppresses calls from all plug-ins, even those in different pages, since JS might affect the frame with plug-in that's being stopped.
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 432 if (VERBOSE) Log.v(TAG, "successfully stopped pbap service");
523 private boolean stopped = false; field in class:BluetoothPbapService.SocketAcceptThread
534 while (!stopped) {
596 stopped = true; // job done ,close this thread;
598 stopped=true;
600 if (stopped) {
610 stopped = true;
  /frameworks/av/include/media/
AudioRecord.h 202 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
206 bool stopped() const;
284 * If the track is stopped, obtainBuffer() returns
285 * STOPPED instead of NO_ERROR as long as there are buffers available,
300 STOPPED = 1
AudioTrack.h 255 * In static buffer mode, the track is stopped immediately.
257 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
260 * is first drained, mixed, and output, and only then is the track marked as stopped.
263 bool stopped() const;
265 /* Flush a stopped or paused track. All previously buffered data is discarded immediately.
268 * This function is a no-op if the track is not stopped or paused, or uses a static buffer.
273 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
359 * This method must be called with the AudioTrack in paused or stopped state.
372 * - INVALID_OPERATION: the AudioTrack is not stopped or paused, or is streaming mode.
386 * This method must be called with the AudioTrack in paused or stopped state
    [all...]
  /external/webkit/LayoutTests/storage/
hash-change-with-xhr.js 74 // Allow a little time for all the database transactions to complete now we've stopped making them.
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 386 * @return true if the movement completed, false if it was stopped prematurely.
538 final boolean stopped = !trackMotionScroll(dx, false);
540 if (!stopped && !mScroller.isFinished()) {
543 if (stopped) {
  /frameworks/base/core/java/android/view/
WindowManagerGlobal.java 517 public void setStoppedState(IBinder token, boolean stopped) {
524 root.setStopped(stopped);
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/audio/lwjgl/
LwjglAudioRenderer.java 309 // updateSourceParam() (because the audio stopped playing
749 boolean stopped = state == AL_STOPPED;
755 if (stopped)
758 if (stopped){
760 src.setStatus(Status.Stopped);
776 if (stopped){
778 src.setStatus(Status.Stopped);
868 //assert src.getStatus() == Status.Stopped || src.getChannel() == -1;
872 }else if (src.getStatus() == Status.Stopped){
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityRecord.java 110 boolean stopped; // is activity pause finished? field in class:ActivityRecord
111 boolean delayedResume; // not yet resumed because of stopped app switches?
216 pw.print(" stopped="); pw.print(stopped);
352 stopped = false;
522 if (stopped) {
582 // device is sleeping, then all activities are stopped, so in that
    [all...]
  /system/core/sh/
jobs.c 313 put after all stopped jobs. */
327 case 2: /* newly stopped job - becomes curjob */
636 /* loop until process terminated or stopped */
1050 int stopped; local
1065 stopped = 1;
1075 stopped = 0;
1079 if (stopped) { /* stopped or done */
1116 * stopped processes. If block is zero, we return a value of zero
1186 * return 1 if there are stopped jobs, otherwise
    [all...]
  /frameworks/base/core/java/android/app/
ActivityThread.java 276 boolean stopped; field in class:ActivityThread.ActivityClientRecord
305 stopped = false;
    [all...]
  /external/chromium/net/socket/
deterministic_socket_data_unittest.cc 192 ASSERT_FALSE(data_->stopped());
315 ASSERT_FALSE(data_->stopped());
  /external/v8/test/mjsunit/
debug-stepin-accessor.js 39 // to get into g.call and than check that execution is stopped inside
  /external/webrtc/src/system_wrappers/source/
trace_impl.cc 116 bool stopped = _thread.Stop(); local
121 return stopped;

Completed in 657 milliseconds

1 2 3 4