HomeSort by relevance Sort by last modified time
    Searched refs:entry (Results 551 - 575 of 4249) sorted by null

<<21222324252627282930>>

  /external/chromium_org/net/tools/crash_cache/
crash_cache.cc 168 disk_cache::Entry* entry; local
169 int rv = cache->CreateEntry(test_name, &entry, cb.callback());
173 entry->Close();
180 rv = cache->CreateEntry(test_name, &entry, cb.callback());
198 disk_cache::Entry* entry;
199 int rv = cache->CreateEntry(kCrashEntryName, &entry, cb.callback());
203 entry->Close();
207 rv = cache->CreateEntry("some other key", &entry, cb.callback())
284 disk_cache::Entry* entry; local
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardEntryTests.java 70 public void onEntryCreated(VCardEntry entry) {
73 mEntries.add(entry);
203 VCardEntry entry = new VCardEntry(); local
209 entry.addProperty(property);
222 entry.addProperty(property);
230 entry.addProperty(property);
238 entry.addProperty(property);
247 entry.addProperty(property);
256 entry.addProperty(property);
266 entry.addProperty(property)
316 VCardEntry entry = new VCardEntry(); local
339 VCardEntry entry = new VCardEntry(); local
369 VCardEntry entry = new VCardEntry(); local
    [all...]
  /system/extras/ext4_utils/
contents.c 92 of each directory entry into dentries[i].inode, to be filled in later
93 when the inode for the entry is allocated. Returns the inode number of the
258 static size_t xattr_free_space(struct ext4_xattr_entry *entry, char *end)
260 while(!IS_LAST_ENTRY(entry) && (((char *) entry) < end)) {
261 end -= EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size));
262 entry = EXT4_XATTR_NEXT(entry);
265 if (((char *) entry) > end) {
270 return end - ((char *) entry);
    [all...]
  /frameworks/base/services/java/com/android/server/
DropBoxManagerService.java 75 // TODO: This implementation currently uses one file per entry, which is
178 public void add(DropBoxManager.Entry entry) {
181 final String tag = entry.getTag();
183 int flags = entry.getFlags();
192 InputStream input = entry.getInputStream();
263 entry.close();
278 public synchronized DropBoxManager.Entry getNextEntry(String tag, long millis) {
294 for (EntryFile entry : list.contents.tailSet(new EntryFile(millis + 1))) {
295 if (entry.tag == null) continue
613 EntryFile entry = new EntryFile(file, mBlockSize); local
703 EntryFile entry = mAllFiles.contents.first(); local
765 EntryFile entry = tag.contents.first(); local
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
log_view_painter.js 51 var entry = entries[i];
55 if (!entry.isEnd() || !canCollapseBeginWithEnd(entry.begin)) {
56 var entryTime = timeutil.convertTimeTicksToTime(entry.orig.time);
59 for (var j = entry.getDepth(); j > 0; --j)
62 var eventText = getTextForEvent(entry);
64 if (entry.isBegin()) {
67 if (entry.end) {
68 dt = entry.end.orig.time - entry.orig.time
    [all...]
  /external/chromium/chrome/browser/ui/toolbar/
back_forward_menu_model.cc 84 // Return the entry title, escaping any '&' characters and eliding it if it's
86 NavigationEntry* entry = GetNavigationEntry(index);
87 string16 menu_text(entry->GetTitleForDisplay(
129 NavigationEntry* entry = GetNavigationEntry(index); local
130 *icon = entry->favicon().bitmap();
131 if (!entry->favicon().is_valid() && menu_model_delegate()) {
132 FetchFavicon(entry);
200 // we then consider if it is a chapter-stop entry.
221 void BackForwardMenuModel::FetchFavicon(NavigationEntry* entry) {
224 if (requested_favicons_.find(entry->unique_id()) !
245 NavigationEntry* entry = NULL; local
381 int entry = contents->controller().GetCurrentEntryIndex() + offset; local
    [all...]
  /external/chromium_org/chrome/browser/ui/toolbar/
back_forward_menu_model.cc 102 // Return the entry title, escaping any '&' characters and eliding it if it's
104 NavigationEntry* entry = GetNavigationEntry(index);
107 string16 menu_text(entry->GetTitleForDisplay(
149 NavigationEntry* entry = GetNavigationEntry(index); local
150 *icon = entry->GetFavicon().image;
151 if (!entry->GetFavicon().valid && menu_model_delegate()) {
152 FetchFavicon(entry);
219 // we then consider if it is a chapter-stop entry.
244 void BackForwardMenuModel::FetchFavicon(NavigationEntry* entry) {
247 if (requested_favicons_.find(entry->GetUniqueID()) !
273 NavigationEntry* entry = NULL; local
404 int entry = contents->GetController().GetCurrentEntryIndex() + offset; local
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
HttpZipLocator.java 208 // ignore this entry, it uses encryption
214 // ignore this entry, it uses unknown compression method
220 // ignore this entry, it is directory node
225 ZipEntry2 entry = new ZipEntry2();
226 entry.name = name;
227 entry.deflate = (method == ZipEntry.DEFLATED);
228 entry.crc = getu32(table, offset + CENCRC);
229 entry.length = get32(table, offset + CENLEN);
230 entry.compSize = get32(table, offset + CENSIZ);
231 entry.offset = get32(table, offset + CENOFF)
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_manager.cc 138 NavigationEntry* entry = controller_->GetActiveEntry(); local
141 if (entry) {
151 // We may not have an entry if this is a navigation to an initial blank
153 entry->ssl() = NavigationEntry::SSLStatus();
154 entry->ssl().set_cert_id(ssl_cert_id);
155 entry->ssl().set_cert_status(ssl_cert_status);
156 entry->ssl().set_security_bits(ssl_security_bits);
157 entry->ssl().set_connection_status(ssl_connection_status);
161 UpdateEntry(entry);
170 NavigationEntry* entry = controller_->GetActiveEntry() local
    [all...]
  /external/chromium/chrome/browser/sync/engine/
build_and_process_conflict_sets_command.h 17 class Entry;
59 syncable::Entry* entry,
62 syncable::Entry* entry,
65 syncable::Entry* entry,
68 syncable::Entry* entry,
verify_updates_command.h 38 const SyncEntity& entry,
  /external/chromium/net/base/
x509_openssl_util.cc 21 X509_NAME_ENTRY* entry = X509_NAME_get_entry(name, index); local
22 if (!entry)
26 ASN1_OBJECT* object = X509_NAME_ENTRY_get_object(entry);
30 ASN1_STRING* data = X509_NAME_ENTRY_get_data(entry);
  /external/chromium/net/ftp/
ftp_auth_cache.cc 15 FtpAuthCache::Entry::Entry(const GURL& origin,
23 FtpAuthCache::Entry::~Entry() {}
29 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
42 Entry* entry = Lookup(origin); local
43 if (entry) {
44 entry->username = username;
45 entry->password = password
    [all...]
  /external/chromium/net/http/
http_cache.h 40 class Entry;
166 // Writes |buf_len| bytes of metadata stored in |buf| to the cache entry
167 // referenced by |url|, as long as the entry's |expected_response_time| has
192 // Disk cache entry data indices.
212 struct PendingOp; // Info for an entry under construction.
218 explicit ActiveEntry(disk_cache::Entry* entry);
221 disk_cache::Entry* disk_entry;
251 // Dooms the entry selected by |key|. |trans| will be notified via its IO
252 // callback if this method returns ERR_IO_PENDING. The entry can b
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
change_list_processor.h 96 // Apply |entry| to resource_metadata_.
97 void ApplyEntry(const ResourceEntry& entry);
99 // Helper function to add |entry| to its parent. Updates changed_dirs_
101 void AddEntry(const ResourceEntry& entry);
103 // Removes entry pointed to by |resource_id| from its parent. Updates
105 void RemoveEntry(const ResourceEntry& entry);
107 // Refreshes ResourceMetadata entry that has the same resource_id as
108 // |entry| with |entry|. Updates changed_dirs_ as a side effect.
109 void RefreshEntry(const ResourceEntry& entry);
    [all...]
file_system_unittest.cc 42 FileError error, scoped_ptr<ResourceEntry> entry) {
43 if (error != FILE_ERROR_OK || !entry) {
159 // Gets resource entry by path synchronously.
163 scoped_ptr<ResourceEntry> entry; local
166 google_apis::test_util::CreateCopyResultCallback(&error, &entry));
169 return entry.Pass();
186 // Returns true if an entry exists at |file_path|.
193 scoped_ptr<ResourceEntry> entry = local
195 if (entry)
196 return entry->resource_id()
348 scoped_ptr<ResourceEntry> entry = GetResourceEntryByPathSync(kFilePath); local
359 scoped_ptr<ResourceEntry> entry = GetResourceEntryByPathSync(kFilePath); local
371 scoped_ptr<ResourceEntry> entry = GetResourceEntryByPathSync(kFilePath); local
395 scoped_ptr<ResourceEntry> entry = GetResourceEntryByPathSync(kFilePath); local
406 scoped_ptr<ResourceEntry> entry = GetResourceEntryByPathSync(kFilePath); local
414 scoped_ptr<ResourceEntry> entry = GetResourceEntryByPathSync(kFilePath); local
421 scoped_ptr<ResourceEntry> entry = GetResourceEntryByPathSync(kFilePath1); local
440 scoped_ptr<ResourceEntry> entry = GetResourceEntryByPathSync(kFilePath1); local
462 scoped_ptr<ResourceEntry> entry = GetResourceEntryByPathSync(kFilePath); local
475 scoped_ptr<ResourceEntry> entry = GetResourceEntryByPathSync(kFilePath); local
483 scoped_ptr<ResourceEntry> entry = GetResourceEntryByPathSync(kFilePath); local
    [all...]
search_metadata.cc 34 // because Drive server doesn't set the field until an entry is viewed via
42 return CompareByTimestamp(a->entry, b->entry);
76 // Returns true if |entry| is eligible for the search |options| and should be
84 bool IsEligibleEntry(const ResourceEntry& entry,
88 entry.file_specific_info().is_hosted_document())
92 entry.file_info().is_directory())
96 return entry.shared_with_me();
99 if (entry.file_specific_info().is_hosted_document())
107 if (entry.resource_id() == util::kDriveGrandRootSpecialResourceId |
129 const ResourceEntry& entry = it->Get(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/log_private/
filter_handler.cc 32 const api::log_private::LogEntry& entry) const {
33 return (IsValidProcess(entry.process) && IsValidLevel(entry.level) &&
34 IsValidTime(entry.timestamp));
  /external/chromium_org/chrome/browser/safe_browsing/
ui_manager.cc 155 NavigationEntry* entry = web_contents->GetController().GetActiveEntry(); local
156 if (entry)
157 referrer_url = entry->GetReferrer().url;
254 WhiteListedEntry entry; local
255 entry.render_process_host_id = resource.render_process_host_id;
256 entry.render_view_id = resource.render_view_id;
257 entry.domain = net::registry_controlled_domains::GetDomainAndRegistry(
260 entry.threat_type = resource.threat_type;
261 white_listed_entries_.push_back(entry);
269 const WhiteListedEntry& entry = white_listed_entries_[i] local
    [all...]
  /external/chromium_org/chrome/browser/ui/search/
search_tab_helper.cc 32 // We can't use WebContents::GetURL() because that uses the active entry,
33 // whereas we want the visible entry.
34 const content::NavigationEntry* entry = local
36 if (entry && entry->GetVirtualURL() == GURL(chrome::kChromeUINewTabURL))
132 content::NavigationEntry* entry = local
134 if (entry) {
135 chrome::SetInstantSupportStateInNavigationEntry(new_state, entry);
157 content::NavigationEntry* entry = local
159 DCHECK(entry);
204 content::NavigationEntry* entry = local
    [all...]
  /external/chromium_org/content/browser/devtools/
devtools_netlog_observer.h 32 virtual void OnAddEntry(const net::NetLog::Entry& entry) OVERRIDE;
34 void OnAddURLRequestEntry(const net::NetLog::Entry& entry);
35 void OnAddHTTPStreamJobEntry(const net::NetLog::Entry& entry);
36 void OnAddSocketEntry(const net::NetLog::Entry& entry);
  /external/chromium_org/content/public/browser/
interstitial_page_delegate.h 37 // Gives an opportunity to delegates to set states on the |entry|.
40 virtual void OverrideEntry(content::NavigationEntry* entry) {}
  /external/chromium_org/net/http/
http_cache.h 41 class Entry;
163 // Writes |buf_len| bytes of metadata stored in |buf| to the cache entry
164 // referenced by |url|, as long as the entry's |expected_response_time| has
200 // Disk cache entry data indices.
218 struct PendingOp; // Info for an entry under construction.
224 explicit ActiveEntry(disk_cache::Entry* entry);
227 disk_cache::Entry* disk_entry;
257 // Dooms the entry selected by |key|, if it is currently in the list of active
261 // Dooms the entry selected by |key|. |trans| will be notified via its I
    [all...]
  /external/chromium_org/net/tools/gdig/
file_net_log.h 26 virtual void OnAddEntry(const net::NetLog::Entry& entry) OVERRIDE;
  /external/chromium_org/sync/syncable/
scoped_parent_child_index_updater.h 23 EntryKernel* entry,

Completed in 1971 milliseconds

<<21222324252627282930>>