OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:global_
(Results
1 - 6
of
6
) sorted by null
/external/chromium/base/metrics/
field_trial.cc
134
FieldTrialList* FieldTrialList::
global_
= NULL;
member in class:base::FieldTrialList
140
DCHECK(!
global_
);
142
global_
= this;
152
DCHECK(this ==
global_
);
153
global_
= NULL;
158
if (!
global_
) {
162
AutoLock auto_lock(
global_
->lock_);
163
DCHECK(!
global_
->PreLockedFind(trial->name()));
165
global_
->registered_[trial->name()] = trial;
170
if (!
global_
)
[
all
...]
field_trial.h
259
if (
global_
)
260
return
global_
->application_start_time_;
275
static FieldTrialList*
global_
; // The singleton of this class.
member in class:base::FieldTrialList
/external/chromium/chrome/browser/metrics/
thread_watcher.cc
191
ThreadWatcherList* ThreadWatcherList::
global_
= NULL;
member in class:ThreadWatcherList
198
CHECK(!
global_
);
199
global_
= this;
206
DCHECK(this ==
global_
);
207
global_
= NULL;
212
if (!
global_
)
214
base::AutoLock auto_lock(
global_
->lock_);
215
DCHECK(!
global_
->PreLockedFind(watcher->thread_id()));
216
global_
->registered_[watcher->thread_id()] = watcher;
263
if (!
global_
)
[
all
...]
thread_watcher.h
263
static ThreadWatcherList*
global_
; // The singleton of this class.
member in class:ThreadWatcherList
/external/chromium/net/base/
sdch_manager.cc
26
SdchManager* SdchManager::
global_
;
member in class:net::SdchManager
206
DCHECK(!
global_
);
207
global_
= this;
211
DCHECK(
global_
== this);
217
global_
= NULL;
222
if (!
global_
)
224
global_
->fetcher_.reset(NULL);
229
return
global_
;
239
global_
->supported_domain_ = domain;
240
global_
->sdch_enabled_ = true
[
all
...]
sdch_manager.h
253
static bool sdch_enabled() { return
global_
&&
global_
->sdch_enabled_; }
343
static SdchManager*
global_
;
member in class:net::SdchManager
Completed in 405 milliseconds