HomeSort by relevance Sort by last modified time
    Searched full:stopped (Results 151 - 175 of 2578) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/lldb/test/functionalities/non-overlapping-index-variable-i/
TestIndexVariable.py 2 from out of scope to in scope when stopped at the breakpoint."""
36 substrs = ['stopped',
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
waitflags.h 27 #define WUNTRACED 2 /* Report status of stopped children. */
30 #define WSTOPPED 2 /* Report stopped child (same as WUNTRACED). */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
waitflags.h 27 #define WUNTRACED 2 /* Report status of stopped children. */
30 #define WSTOPPED 2 /* Report stopped child (same as WUNTRACED). */
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/
UrlUtilitiesTest.java 104 uri = URI.create("http://dfalcant@stopped.com:1234");
105 assertEquals("http://stopped.com:1234", UrlUtilities.getOriginForDisplay(uri, true));
106 assertEquals("stopped.com:1234", UrlUtilities.getOriginForDisplay(uri, false));
108 uri = URI.create("http://dfalcant:secret@stopped.com:9999");
109 assertEquals("http://stopped.com:9999", UrlUtilities.getOriginForDisplay(uri, true));
110 assertEquals("stopped.com:9999", UrlUtilities.getOriginForDisplay(uri, false));
  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 38 * started nor stopped.
53 * method returns immediately without taking action. A stopped service may not
94 * stopped. If the service has already been stopped, this method returns
110 * terminated} without having been started nor stopped. Unlike calling {@code
155 * operational. It cannot be started nor stopped.
  /external/lldb/include/lldb/Core/
State.h 51 /// is stopped. Stopped can mean stopped when the process is still
52 /// around, or stopped when the process has exited or doesn't exist
65 /// where the process or thread is stopped. If \a must_exist is
68 /// process no longer exists are considered to be stopped.
  /external/lldb/test/functionalities/watchpoint/hello_watchlocation/
TestWatchLocation.py 50 # Add a breakpoint to set a watchpoint when stopped on the breakpoint.
56 # We should be stopped again due to the breakpoint.
59 substrs = ['stopped',
89 # We should be stopped again due to the watchpoint (write type), but
92 substrs = ['stopped',
96 # Switch to the thread stopped due to watchpoint and issue some commands.
  /external/lldb/test/functionalities/watchpoint/multiple_threads/
TestWatchpointMultipleThreads.py 66 # Add a breakpoint to set a watchpoint when stopped on the breakpoint.
72 # We should be stopped again due to the breakpoint.
75 substrs = ['stopped',
111 # Add a breakpoint to set a watchpoint when stopped on the breakpoint.
117 # We should be stopped again due to the breakpoint.
120 substrs = ['stopped',
  /external/chromium_org/content/browser/service_worker/
embedded_worker_instance_unittest.cc 60 EXPECT_EQ(EmbeddedWorkerInstance::STOPPED, worker->status());
93 // Worker stopped message should be notified (by EmbeddedWorkerTestHelper).
94 EXPECT_EQ(EmbeddedWorkerInstance::STOPPED, worker->status());
106 EXPECT_EQ(EmbeddedWorkerInstance::STOPPED, worker->status());
136 EXPECT_EQ(EmbeddedWorkerInstance::STOPPED, worker->status());
  /external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/
TestBreakpointIgnoreCount.py 64 # The process should be stopped at this point.
66 patterns = ['Process .* stopped'])
84 # The process should be stopped at this point.
86 patterns = ['Process .* stopped'])
137 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint")
  /frameworks/base/core/java/android/speech/tts/
SynthesisPlaybackQueueItem.java 114 } else if(mStatusCode == TextToSpeech.STOPPED) {
140 // would also have been stopped, and so all calls to
186 // Don't bother queueing the buffer if we've stopped. The playback thread
189 // stopped.
212 // If stopped, return null so that we can exit the playback loop
FileSynthesisCallback.java 72 if (mStatusCode == TextToSpeech.STOPPED) {
76 mStatusCode = TextToSpeech.STOPPED;
112 if (mStatusCode == TextToSpeech.STOPPED) {
156 if (mStatusCode == TextToSpeech.STOPPED) {
205 if (mStatusCode == TextToSpeech.STOPPED) {
210 mStatusCode != TextToSpeech.STOPPED) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
SaveRestoreState.java 31 * stopped by the system.</p>
33 * <p>In general, any activity that has been paused may be stopped by the system
38 * activity then needs to be stopped, upon restarting it will receive its
  /external/chromium_org/content/public/browser/
browser_main_parts.h 83 // This happens after the main message loop has stopped, but before
84 // threads are stopped.
88 // stopped and destroyed.
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptPromiseResolverWithContext.h 28 // resolve or reject will be delayed. When it is stopped, resolve or reject
46 // the associated ExecutionContext is stopped.
84 // promise is pending and the associated ExecutionContext isn't stopped.
  /external/lldb/test/functionalities/breakpoint/breakpoint_locations/
TestBreakpointLocations.py 61 # We should not stopped on any breakpoint at all.
76 # Stopped once.
83 # Stopped again.
  /external/lldb/test/functionalities/signal/
TestSendSignal.py 46 substrs = ['stopped',
55 pid = re.match("Process (.*) stopped", output).group(1)
76 startstr = "Process %s stopped" % pid,
  /external/lldb/test/functionalities/thread/create_after_attach/
TestCreateAfterAttach.py 83 substrs = ['stopped',
97 substrs = ['stopped',
113 substrs = ['stopped',
  /external/lldb/test/functionalities/breakpoint/breakpoint_conditions/
TestBreakpointConditions.py 81 # The process should be stopped at this point.
83 patterns = ['Process .* stopped'])
112 # The process should be stopped at this point.
114 patterns = ['Process .* stopped'])
128 patterns = ['Process .* stopped'])
182 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint condition")
  /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/chromium_org/chrome/common/extensions/api/
tab_capture.idl 12 stopped,
60 // captured, i.e. status != stopped and status != error.
  /external/chromium_org/components/invalidation/
invalidation_notifier.h 71 // We start off in the STOPPED state. When we get our initial
76 STOPPED,
  /external/chromium_org/content/browser/geolocation/
mock_location_provider.cc 22 : state_(STOPPED),
56 state_ = STOPPED;
  /external/chromium_org/content/renderer/media/
rtc_video_renderer.h 29 // VideoFrameProvider is started and deregisters itself when it is stopped.
54 STOPPED,
  /external/chromium_org/media/audio/
audio_output_dispatcher.h 9 // uses to play audio. When playback is stopped, the proxy returns the stream
54 // Called by AudioOutputProxy when the stream is stopped.

Completed in 4592 milliseconds

1 2 3 4 5 67 8 91011>>