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
421
synchronized public void pauseVideo(boolean
pauseState
) {
423
if (
pauseState
&& !mPaused) {
425
} else if (!
pauseState
&& mPaused) {
429
mPaused =
pauseState
;
/external/v8/src/inspector/
v8-debugger-agent-impl.cc
202
int
pauseState
= v8::DebugInterface::NoBreakOnException;
203
m_state->getInteger(DebuggerAgentState::pauseOnExceptionsState, &
pauseState
);
204
setPauseOnExceptionsImpl(
pauseState
);
702
v8::DebugInterface::ExceptionBreakState
pauseState
;
704
pauseState
= v8::DebugInterface::NoBreakOnException;
706
pauseState
= v8::DebugInterface::BreakOnAnyException;
708
pauseState
= v8::DebugInterface::BreakOnUncaughtException;
713
setPauseOnExceptionsImpl(
pauseState
);
717
void V8DebuggerAgentImpl::setPauseOnExceptionsImpl(int
pauseState
) {
719
static_cast<v8::DebugInterface::ExceptionBreakState>(
pauseState
));
[
all
...]
v8-debugger-agent-impl.h
98
Response setPauseOnExceptions(const String16&
pauseState
) override;
Completed in 195 milliseconds