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

1 2

  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicService.java 86 Stopped, // media player is stopped and not prepared to play
227 if (mState == State.Paused || mState == State.Stopped) {
247 if (mState == State.Stopped) {
248 // If we're stopped, just go ahead to the next song and start playing
306 mState = State.Stopped;
383 else if (mState == State.Playing || mState == State.Paused || mState == State.Stopped) {
403 mState = State.Stopped;
556 mState = State.Stopped;
583 mState = State.Stopped;
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
runtime-lldb_test.go 114 print "Stopped at %s:%d" % (frame.line_entry.file.basename, frame.line_entry.line)
116 print "Stopped in %s" % (frame.function.name,)
136 Stopped at main.go:10
137 Stopped in main.main
  /prebuilts/go/linux-x86/src/runtime/
runtime-lldb_test.go 114 print "Stopped at %s:%d" % (frame.line_entry.file.basename, frame.line_entry.line)
116 print "Stopped in %s" % (frame.function.name,)
136 Stopped at main.go:10
137 Stopped in main.main
  /external/mdnsresponder/mDNSWindows/DLLX/
DNSSD.cpp 500 if ( !service->Stopped() )
553 if ( !service->Stopped() )
612 if ( !service->Stopped() )
686 if ( !service->Stopped() )
743 if ( !service->Stopped() )
794 if ( !service->Stopped() )
871 if ( !service->Stopped() )
DNSSDService.h 228 Stopped()
DNSSDService.cpp 2018 if ( !this->Stopped() )
  /external/llvm/include/llvm/CodeGen/
TargetPassConfig.h 100 bool Stopped;
  /external/llvm/lib/CodeGen/
TargetPassConfig.cpp 256 StopAfter(nullptr), Started(true), Stopped(false),
335 /// Started/Stopped flags indicate either that the compilation should start at
338 /// and StopAfter options and change the Started/Stopped flags accordingly.
350 if (Started && !Stopped) {
372 Stopped = true;
375 if (Stopped && !Started)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 102 bool Stopped;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 102 bool Stopped;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 102 bool Stopped;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 102 bool Stopped;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 102 bool Stopped;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 102 bool Stopped;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 102 bool Stopped;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
TargetPassConfig.h 102 bool Stopped;
  /prebuilts/go/darwin-x86/src/os/
exec_posix.go 95 case status.Stopped():
  /prebuilts/go/linux-x86/src/os/
exec_posix.go 95 case status.Stopped():
  /prebuilts/go/darwin-x86/src/syscall/
syscall_nacl.go 234 func (w WaitStatus) Stopped() bool { return false }
syscall_bsd.go 75 // 0x7F (stopped), or a signal number that caused an exit.
88 stopped = 0x7F
100 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
104 if sig == stopped || sig == 0 {
112 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
114 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
117 if !w.Stopped() {
87 stopped = 0x7F const
syscall_solaris.go 203 // 0x7F (stopped), or a signal number that caused an exit.
216 stopped = 0x7F
228 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
232 if sig == stopped || sig == 0 {
240 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
242 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
245 if !w.Stopped() {
215 stopped = 0x7F const
syscall_linux.go 198 // 0x7F (stopped), or a signal number that caused an exit.
204 // from stopped via the core dump bit.
210 stopped = 0x7F
216 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != exited }
218 func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
239 if !w.Stopped() {
209 stopped = 0x7F const
  /prebuilts/go/linux-x86/src/syscall/
syscall_nacl.go 234 func (w WaitStatus) Stopped() bool { return false }
syscall_bsd.go 75 // 0x7F (stopped), or a signal number that caused an exit.
88 stopped = 0x7F
100 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
104 if sig == stopped || sig == 0 {
112 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
114 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
117 if !w.Stopped() {
87 stopped = 0x7F const
syscall_solaris.go 203 // 0x7F (stopped), or a signal number that caused an exit.
216 stopped = 0x7F
228 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
232 if sig == stopped || sig == 0 {
240 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
242 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
245 if !w.Stopped() {
215 stopped = 0x7F const

Completed in 675 milliseconds

1 2