OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cache_state_
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/components/nacl/browser/
pnacl_host.cc
33
cache_state_
(CacheUninitialized),
87
if (
cache_state_
== CacheReady)
92
cache_state_
= CacheUninitialized;
94
cache_state_
= CacheReady;
104
if (cache_path.empty() ||
cache_state_
!= CacheUninitialized)
107
cache_state_
= CacheInitializing;
120
cache_state_
= CacheInitializing;
182
if (
cache_state_
== CacheUninitialized) {
185
if (
cache_state_
!= CacheReady) {
390
if (
cache_state_
!= CacheReady
[
all
...]
pnacl_host.h
167
CacheState
cache_state_
;
member in class:pnacl::PnaclHost
pnacl_host_unittest.cc
36
EXPECT_EQ(PnaclHost::CacheReady, host_->
cache_state_
);
43
EXPECT_EQ(PnaclHost::CacheUninitialized, host_->
cache_state_
);
57
return host_->
cache_state_
== PnaclHost::CacheReady;
62
EXPECT_EQ(PnaclHost::CacheReady, host_->
cache_state_
);
/external/chromium/third_party/libjingle/source/talk/base/
httpclient.cc
288
uri_form_(URI_DEFAULT), cache_(NULL),
cache_state_
(CS_READY) {
440
ASSERT(CS_READY ==
cache_state_
);
505
ASSERT(CS_READY ==
cache_state_
);
535
cache_state_
= CS_READY;
567
cache_state_
= CS_READING;
595
ASSERT(CS_READY ==
cache_state_
);
612
cache_state_
= CS_VALIDATING;
617
ASSERT(CS_VALIDATING ==
cache_state_
);
656
if (CS_VALIDATING ==
cache_state_
) {
661
cache_state_
= CS_READY
[
all
...]
httpclient.h
182
bool IsCacheActive() const { return (
cache_state_
> CS_READY); }
196
CacheState
cache_state_
;
member in class:talk_base::HttpClient
/external/chromium_org/third_party/libjingle/source/talk/base/
httpclient.cc
290
uri_form_(URI_DEFAULT), cache_(NULL),
cache_state_
(CS_READY),
473
ASSERT(CS_READY ==
cache_state_
);
538
ASSERT(CS_READY ==
cache_state_
);
568
cache_state_
= CS_READY;
600
cache_state_
= CS_READING;
628
ASSERT(CS_READY ==
cache_state_
);
645
cache_state_
= CS_VALIDATING;
650
ASSERT(CS_VALIDATING ==
cache_state_
);
689
if (CS_VALIDATING ==
cache_state_
) {
694
cache_state_
= CS_READY
[
all
...]
httpclient.h
187
bool IsCacheActive() const { return (
cache_state_
> CS_READY); }
201
CacheState
cache_state_
;
member in class:talk_base::HttpClient
Completed in 306 milliseconds