OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pauseState
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
MediaSource.java
429
synchronized public void pauseVideo(boolean
pauseState
) {
431
if (
pauseState
&& !mPaused) {
433
} else if (!
pauseState
&& mPaused) {
437
mPaused =
pauseState
;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp
192
long
pauseState
= m_state->getLong(DebuggerAgentState::pauseOnExceptionsState);
194
setPauseOnExceptionsImpl(&error,
pauseState
);
783
ScriptDebugServer::PauseOnExceptionsState
pauseState
;
785
pauseState
= ScriptDebugServer::DontPauseOnExceptions;
787
pauseState
= ScriptDebugServer::PauseOnAllExceptions;
789
pauseState
= ScriptDebugServer::PauseOnUncaughtExceptions;
794
setPauseOnExceptionsImpl(errorString,
pauseState
);
797
void InspectorDebuggerAgent::setPauseOnExceptionsImpl(ErrorString* errorString, int
pauseState
)
799
scriptDebugServer().setPauseOnExceptionsState(static_cast<ScriptDebugServer::PauseOnExceptionsState>(
pauseState
));
800
if (scriptDebugServer().pauseOnExceptionsState() !=
pauseState
)
[
all
...]
InspectorDebuggerAgent.h
114
virtual void setPauseOnExceptions(ErrorString*, const String&
pauseState
);
Completed in 33 milliseconds