OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StreamState
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp
29
struct
StreamState
{
33
StreamState
(Kind k, const Stmt *s) : K(k), S(s) {}
40
bool operator==(const
StreamState
&X) const {
44
static
StreamState
getOpened(const Stmt *s) { return
StreamState
(Opened, s); }
45
static
StreamState
getClosed(const Stmt *s) { return
StreamState
(Closed, s); }
46
static
StreamState
getOpenFailed(const Stmt *s) {
47
return
StreamState
(OpenFailed, s);
49
static
StreamState
getEscaped(const Stmt *s)
[
all
...]
/external/chromium/third_party/libjingle/source/talk/base/
stream.h
52
enum
StreamState
{ SS_CLOSED, SS_OPENING, SS_OPEN };
72
virtual
StreamState
GetState() const = 0;
249
virtual
StreamState
GetState() const {
394
virtual
StreamState
GetState() const;
421
virtual
StreamState
GetState() const;
490
virtual
StreamState
GetState() const;
565
virtual
StreamState
GetState() const;
577
StreamState
state_; // keeps the opened/closed state of the stream
623
virtual
StreamState
GetState() const;
Completed in 1356 milliseconds