OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:has_user_callback
(Results
1 - 2
of
2
) sorted by null
/external/chromium/net/proxy/
multi_threaded_proxy_resolver.cc
137
bool
has_user_callback
() const { return user_callback_ != NULL; }
function in class:net::MultiThreadedProxyResolver::Job
159
DCHECK(
has_user_callback
());
161
// Null the callback so
has_user_callback
() will now return false.
205
if (!was_cancelled() &&
has_user_callback
()) {
513
// The "
has_user_callback
()" is to exclude jobs for which the callback
515
// lazy thread provisions). User-initiated jobs may !
has_user_callback
()
519
CHECK(!job || job->was_cancelled() || !job->
has_user_callback
());
/external/chromium_org/net/proxy/
multi_threaded_proxy_resolver.cc
126
bool
has_user_callback
() const { return !callback_.is_null(); }
function in class:net::MultiThreadedProxyResolver::Job
148
DCHECK(
has_user_callback
());
150
// Reset the callback so
has_user_callback
() will now return false.
198
if (!was_cancelled() &&
has_user_callback
()) {
526
// The "
has_user_callback
()" is to exclude jobs for which the callback
528
// lazy thread provisions). User-initiated jobs may !
has_user_callback
()
532
CHECK(!job || job->was_cancelled() || !job->
has_user_callback
());
Completed in 274 milliseconds