Searched refs:entry_ (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium/net/url_request/
H A Durl_request_throttler_unittest.cc224 scoped_refptr<MockURLRequestThrottlerEntry> entry_; member in class:net::URLRequestThrottlerEntryTest
229 entry_ = new MockURLRequestThrottlerEntry(&manager_);
230 entry_->ResetToBlank(now_);
238 entry_->set_exponential_backoff_release_time(
239 entry_->fake_time_now_ + TimeDelta::FromMilliseconds(1));
240 EXPECT_TRUE(entry_->IsDuringExponentialBackoff());
244 entry_->set_exponential_backoff_release_time(entry_->fake_time_now_);
245 EXPECT_FALSE(entry_->IsDuringExponentialBackoff());
246 entry_
[all...]
H A Dview_cache_helper.cc78 entry_(NULL),
93 if (entry_)
94 entry_->Close();
243 return disk_cache_->OpenNextEntry(&iter_, &entry_, &cache_callback_);
253 data_->append(FormatEntryInfo(entry_, url_prefix_));
254 entry_->Close();
255 entry_ = NULL;
263 return disk_cache_->OpenEntry(key_, &entry_, &cache_callback_);
273 data_->append(EscapeForHTML(entry_->GetKey()));
280 buf_len_ = entry_
[all...]
H A Dview_cache_helper.h98 disk_cache::Entry* entry_; member in class:net::ViewCacheHelper
/external/chromium/net/http/
H A Ddisk_cache_based_ssl_host_info.cc22 entry_(NULL) {
50 entry_(NULL),
91 if (entry_)
92 entry_->Close();
159 entry_ = callback_->entry();
185 entry_ = callback_->entry();
202 const int32 size = entry_->GetDataSize(0 /* index */);
210 return entry_->ReadData(0 /* index */, 0 /* offset */, read_buffer_,
219 return entry_->WriteData(0 /* index */, 0 /* offset */, write_buffer_,
224 DCHECK(entry_
[all...]
H A Ddisk_cache_based_ssl_host_info.h63 disk_cache::Entry** entry_pointer() { return &entry_; }
65 disk_cache::Entry* entry() const { return entry_; }
75 disk_cache::Entry* entry_; member in class:net::DiskCacheBasedSSLHostInfo::CallbackImpl
113 disk_cache::Entry* entry_; member in class:net::DiskCacheBasedSSLHostInfo
H A Dhttp_cache_transaction.cc106 entry_(NULL),
142 if (entry_) {
146 entry_->disk_entry->CancelSparseIO();
152 cache_->DoneWithEntry(entry_, this, cancel_request);
173 if (!cache_ || !entry_)
180 return entry_->disk_entry->WriteData(kMetadataIndex, 0, buf, buf_len,
204 if (entry_ || !request_)
223 DCHECK(!entry_);
887 entry_ = new_entry_;
959 return partial_->ShouldValidateCache(entry_
[all...]
H A Dhttp_cache.cc140 : operation_(operation), trans_(trans), entry_(entry), callback_(NULL),
144 : operation_(operation), trans_(trans), entry_(NULL), callback_(cb),
151 if (entry_)
152 *entry_ = entry;
171 void ClearEntry() { entry_ = NULL; }
174 bool IsValid() const { return trans_ || entry_ || callback_; }
179 ActiveEntry** entry_; member in class:net::HttpCache::WorkItem
/external/chromium/net/disk_cache/
H A Dsparse_control.cc187 : entry_(entry),
208 if (entry_->GetDataSize(kSparseData))
213 int data_len = entry_->GetDataSize(kSparseIndex);
228 if (entry_->GetDataSize(kSparseData))
232 return (entry_->GetDataSize(kSparseIndex) != 0);
267 if (entry_->net_log().IsLoggingAllEvents()) {
268 entry_->net_log().BeginEvent(
318 entry_->AddRef(); // Balanced in DoAbortCallbacks.
360 if (CHILD_ENTRY & entry_->GetEntryFlags())
366 sparse_header_.parent_key_len = entry_
[all...]
H A Dentry_impl.cc38 : entry_(entry), callback_(callback), buf_(buffer),
49 disk_cache::EntryImpl* entry_; member in class:__anon2457::SyncCallback
59 entry_->DecrementIoCount();
61 if (entry_->net_log().IsLoggingAllEvents()) {
62 entry_->net_log().EndEvent(
67 entry_->ReportIOTime(disk_cache::EntryImpl::kAsyncIO, start_);
70 entry_->Release();
295 : entry_(NULL, Addr(0)), node_(NULL, Addr(0)), backend_(backend),
297 entry_.LazyInit(backend->File(address), address);
400 return entry_
[all...]
H A Din_flight_backend_io.cc47 entry_->AddRef();
110 entry_ = entry;
115 entry_ = entry;
130 entry_ = entry;
140 entry_ = entry;
151 entry_ = entry;
160 entry_ = entry;
169 entry_ = entry;
177 entry_ = entry;
182 entry_
[all...]
H A Dsparse_control.h148 EntryImpl* entry_; // The sparse entry. member in class:disk_cache::SparseControl
157 SparseHeader sparse_header_; // Data about the children of entry_.
H A Dentry_impl.h51 return &entry_;
246 CacheEntryBlock entry_; // Key related information for this entry. member in class:disk_cache::EntryImpl
/external/openfst/src/include/fst/extensions/far/
H A Dstlist.h124 : sources_(filenames), entry_(0), error_(false) {
170 entry_ = entry_reader_(*streams_[current]);
171 if (!entry_ || !*streams_[current]) {
183 if (entry_)
184 delete entry_;
231 if (entry_)
232 delete entry_;
233 entry_ = entry_reader_(*streams_[current]);
234 if (!entry_ || !*streams_[current]) {
247 return *entry_;
259 mutable EntryType *entry_; // Pointer to the currently read entry member in class:fst::STListReader
[all...]
H A Dsttable.h121 : sources_(filenames), entry_(0), error_(false) {
168 if (entry_)
169 delete entry_;
226 return *entry_;
298 if (entry_)
299 delete entry_;
300 entry_ = entry_reader_(*streams_[current_]);
301 if (!entry_)
319 mutable EntryType *entry_; // Pointer to the currently read entry member in class:fst::STTableReader
/external/chromium/net/tools/dump_cache/
H A Dcache_dumper.cc97 entry_ = CreateFileW(file.c_str(), GENERIC_WRITE|GENERIC_READ, 0, 0,
99 if (entry_ == INVALID_HANDLE_VALUE)
101 return (entry_ != INVALID_HANDLE_VALUE) ? net::OK : net::ERR_FAILED;
103 entry_ = file_util::OpenFile(entry_path_, "w+");
104 return (entry_ != NULL) ? net::OK : net::ERR_FAILED;
151 if (!entry_)
196 if (!WriteFile(entry_, data, len, &bytes, 0))
201 return fwrite(data, 1, len, entry_);
208 CloseHandle(entry_);
210 file_util::CloseFile(entry_);
[all...]
H A Dcache_dumper.h66 explicit DiskDumper(const std::wstring& path) : path_(path), entry_(NULL) {
85 HANDLE entry_; member in class:DiskDumper
87 FILE* entry_; member in class:DiskDumper
H A Dupgrade.cc129 disk_cache::EntryImpl* entry_; member in class:__anon2663::BaseSM
143 : entry_(NULL), channel_(channel), state_(0), pending_count_(0),
160 if (entry_)
161 entry_->Close();
400 reinterpret_cast<disk_cache::Entry**>(&entry_),
470 writer_->CloseEntry(entry_, last_used_, last_modified_);
471 entry_ = NULL;
506 printf("Read failed, entry \"%s\" truncated!\n", entry_->GetKey().c_str());
513 int rv = writer_->WriteEntry(entry_, stream_, offset_, buf, read_size,
699 msg.long_arg1 = reinterpret_cast<int64>(entry_);
[all...]
/external/chromium/base/
H A Dprocess_util.cc43 return &entry_;
56 return !filter_ || filter_->Includes(entry_);
H A Dprocess_util_linux.cc242 entry_.pid_ = atoi(slot->d_name);
243 entry_.ppid_ = atoi(closeparen + 3);
244 entry_.gid_ = atoi(strchr(closeparen + 4, ' '));
246 entry_.cmd_line_args_.assign(cmd_line_args.begin(), cmd_line_args.end());
251 entry_.exe_file_.assign(openparen + 1, len);
/external/v8/src/
H A Dhashmap.h309 entry_ = map_->Next(entry_);
313 value_type* operator->() { return reinterpret_cast<value_type*>(entry_); }
314 bool operator!=(const Iterator& other) { return entry_ != other.entry_; }
319 map_(map), entry_(entry) { }
322 typename TemplateHashMapImpl<AllocationPolicy>::Entry* entry_; member in class:v8::TemplateHashMap::Iterator
H A Dd8.h101 : map_(&map->hash_map_), entry_(map_->Start()) { }
102 void Next() { entry_ = map_->Next(entry_); }
103 bool More() { return entry_ != NULL; }
104 const char* CurrentKey() { return static_cast<const char*>(entry_->key); }
105 Counter* CurrentValue() { return static_cast<Counter*>(entry_->value); }
108 i::HashMap::Entry* entry_; member in class:v8::CounterMap::Iterator
H A Dprofile-generator-inl.h74 entry_(entry),
/external/chromium/chrome/browser/sync/engine/
H A Dsyncapi.cc469 if (entry_->Get(syncable::IS_DIR) == folder)
472 entry_->Put(syncable::IS_DIR, folder);
480 string old_name = entry_->Get(syncable::NON_UNIQUE_NAME);
485 entry_->Put(syncable::NON_UNIQUE_NAME, server_legal_name);
680 entry_->Get(SPECIFICS).SerializeAsString()) {
683 entry_->Put(SPECIFICS, specifics);
689 entry_->Put(syncable::LOCAL_EXTERNAL_ID, id);
693 : entry_(NULL), transaction_(transaction) {
698 delete entry_;
704 DCHECK(!entry_) << "Ini
[all...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
H A Dbackground.js366 var entry_ = xhr.responseXML.getElementsByTagName('entry');
367 if (entry_ && entry_.length > 0) {
369 for (var i = 0, entry; entry = entry_[i]; ++i) {
455 var entry_ = responseXML.getElementsByTagName('entry');
458 if (entry_ && entry_.length > 0) {
459 for (var i = 0, entry; entry = entry_[i]; ++i) {
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Drelayport.cc181 RelayEntry* entry_; member in class:cricket::AllocateRequest
727 entry_(entry), connection_(connection) {
737 entry_->port()->magic_cookie().c_str(),
738 entry_->port()->magic_cookie().size());
744 entry_->port()->username_fragment().c_str(),
745 entry_->port()->username_fragment().size());
766 entry_->OnConnect(addr, connection_);
771 entry_->ScheduleKeepAlive();
785 entry_->ScheduleKeepAlive();
790 entry_
[all...]

Completed in 479 milliseconds

12