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

1 2 3

  /frameworks/base/services/java/com/android/server/pm/
PackageSettingBase.java 63 // Whether this package is currently stopped, thus can not be
65 public boolean stopped; field in class:PackageSettingBase
114 stopped = base.stopped;
172 stopped = base.stopped;
Settings.java 160 mStoppedPackagesFilename = new File(systemDir, "packages-stopped.xml");
161 mBackupStoppedPackagesFilename = new File(systemDir, "packages-stopped-backup.xml");
397 // If this is not a system app, it starts out stopped.
404 p.stopped = true;
453 pkg.mSetStopped = p.stopped;
661 // Keep the old stopped packages around until we know the new ones have
670 Log.wtf(PackageManagerService.TAG, "Unable to backup package manager stopped packages, "
676 Slog.w(PackageManagerService.TAG, "Preserving older stopped packages backup");
690 serializer.startTag(null, "stopped-packages");
693 if (pkg.stopped) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 40 RemoteAdtTestRunner_RunStoppedMsg=Test run stopped
42 RemoteAdtTestRunner_RunShellCommandUnresponsiveException=Device stopped sending output
  /frameworks/base/voip/java/com/android/server/sip/
SipWakeupTimer.java 86 private boolean stopped() { method in class:SipWakeupTimer
88 Log.w(TAG, "Timer stopped");
163 if (stopped()) return;
189 if (stopped() || mEventQueue.isEmpty()) return;
219 if (stopped() || mEventQueue.isEmpty()) return;
267 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 73 if (env->stopped)
82 if (env->stopped)
301 env->stopped = 1;
446 if (!penv->stopped)
481 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 108 int volatile stopped; /* set by _start_stop() */ member in struct:thr_timer
187 timer->stopped = stop;
360 timer->stopped = 0;
549 /* if the timer is stopped or disarmed, wait indefinitely
552 if ( timer->stopped || timespec_is_zero(&expires) )
  /external/webkit/Source/WebKit/android/plugins/
ANPSoundInterface.cpp 138 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 415 if (VERBOSE) Log.v(TAG, "successfully stopped pbap service");
508 private boolean stopped = false; field in class:BluetoothPbapService.SocketAcceptThread
512 while (!stopped) {
561 stopped = true; // job done ,close this thread;
563 if (stopped) {
572 stopped = true;
  /frameworks/base/include/media/
AudioRecord.h 219 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
223 bool stopped() const;
300 * filled entirely. If the track is stopped, obtainBuffer() returns
301 * STOPPED instead of NO_ERROR as long as there are buffers availlable,
311 STOPPED = 1
AudioTrack.h 232 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
236 bool stopped() const;
238 /* flush a stopped track. All pending buffers are discarded.
244 * obtainBuffer returns STOPPED. Note that obtainBuffer() still works
326 * This method must be called with the AudioTrack in paused or stopped state.
339 * - INVALID_OPERATION: the AudioTrack is not stopped.
347 * This method must be called with the AudioTrack in paused or stopped state.
351 * - INVALID_OPERATION: the AudioTrack is not stopped.
391 * filled entirely. If the track is stopped, obtainBuffer() returns
392 * STOPPED instead of NO_ERROR as long as there are buffers availlable
    [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.
  /frameworks/base/core/java/android/app/
ActivityThread.java 224 boolean stopped; field in class:ActivityThread.ActivityClientRecord
253 stopped = false;
    [all...]
  /frameworks/base/core/java/android/view/
WindowManagerImpl.java 514 public void setStoppedState(IBinder token, boolean stopped) {
522 root.setStopped(stopped);
  /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...]
  /external/chromium/net/socket/
deterministic_socket_data_unittest.cc 192 ASSERT_FALSE(data_->stopped());
315 ASSERT_FALSE(data_->stopped());
socket_test_util.cc 319 // If we've already stopped the loop, don't do it again until we've advanced
333 // Record the sequence_number at which we stopped the loop.
419 while ((!at_write_eof() || !at_read_eof()) && !stopped()) {
430 !stopped()) {
456 // Synchronous read while stopped is an error
457 if (stopped() && !current_read_.async) {
458 LOG(ERROR) << "Unable to perform synchronous IO while stopped";
497 // Synchronous write while stopped is an error
498 if (stopped() && !next_write.async) {
499 LOG(ERROR) << "Unable to perform synchronous IO while stopped";
    [all...]
  /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 260 bool stopped = _thread.Stop(); local
265 return stopped;
  /frameworks/base/core/java/android/content/pm/
IPackageManager.aidl 229 * Set whether the given package should be considered stopped, making
230 * it not visible to implicit intents that filter out stopped packages.
232 void setPackageStoppedState(String packageName, boolean stopped);
  /external/kernel-headers/original/linux/
serial_core.h 405 ((port)->info->tty->stopped || (port)->info->tty->hw_stopped)
  /external/webkit/Source/WebCore/inspector/
InspectorTimelineAgent.cpp 144 m_frontend->stopped();

Completed in 653 milliseconds

1 2 3