HomeSort by relevance Sort by last modified time
    Searched refs:entry (Results 451 - 475 of 4263) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
hamt.c 41 STAILQ_ENTRY(HAMTEntry) next; /* next hash table entry */
170 HAMTEntry *entry; local
171 entry = STAILQ_FIRST(&hamt->entries);
173 deletefunc(entry->data);
174 yasm_xfree(entry);
190 HAMTEntry *entry; local
191 STAILQ_FOREACH(entry, &hamt->entries, next) {
192 int retval = func(entry->data, d);
212 HAMTEntry_get_data(const HAMTEntry *entry)
214 return entry->data
223 HAMTEntry *entry; local
    [all...]
  /external/chromium_org/v8/src/
profile-generator.cc 50 for (HashMap::Entry* p = names_.Start();
79 HashMap::Entry* cache_entry = names_.Lookup(str, hash, true);
81 // New entry added.
126 size += sizeof(HashMap::Entry) * names_.capacity();
127 for (HashMap::Entry* p = names_.Start(); p != NULL; p = names_.Next(p)) {
173 bool CodeEntry::IsSameAs(CodeEntry* entry) const {
174 return this == entry
175 || (tag_ == entry->tag_
176 && shared_id_ == entry->shared_id_
178 || (name_prefix_ == entry->name_prefix
444 const CodeEntryInfo& entry = locator.value(); local
460 const CodeEntryInfo& entry = locator.value(); local
645 CodeEntry** entry = entries.start(); local
    [all...]
  /external/srec/shared/src/
HashMapImpl.c 82 PHashTableEntry *entry = NULL; local
101 CHKLOG(rc, PHashTableGetEntry(impl->table, key, &entry));
102 rc = PHashTableEntrySetValue(entry, value, NULL);
111 PHashTableEntry *entry = NULL; local
116 CHK(rc, PHashTableGetEntry(impl->table, key, &entry));
117 CHK(rc, PHashTableEntryGetKeyValue(entry, (void **)&clonedKey, (void **)&value));
124 return PHashTableEntryRemove(entry);
191 PHashTableEntry *entry = NULL; local
194 CHK(rc, PHashTableGetEntry(impl->table, key, &entry));
195 CHK(rc, PHashTableEntryGetKeyValue(entry, (void **)NULL, (void **)value))
226 PHashTableEntry *entry = NULL; local
241 PHashTableEntry *entry = NULL; local
256 PHashTableEntry *entry = NULL; local
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
FileCache.java 26 import com.android.gallery3d.common.Entry.Table;
104 FileEntry entry = new FileEntry(); local
105 entry.hashCode = Utils.crc64Long(downloadUrl);
106 entry.contentUrl = downloadUrl;
107 entry.filename = file.getName();
108 entry.size = file.length();
109 entry.lastAccess = System.currentTimeMillis();
110 if (entry.size >= mCapacity) {
112 throw new IllegalArgumentException("file too large: " + entry.size);
118 entry.filename = original.filename
124 mDbHelper.getWritableDatabase(), entry); local
131 CacheEntry entry; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
WidgetDatabaseHelper.java 68 public static class Entry {
76 private Entry() {}
78 private Entry(int id, Cursor cursor) {
90 private Entry(Cursor cursor) {
110 private void saveData(SQLiteDatabase db, int oldVersion, ArrayList<Entry> data) {
118 Entry entry = new Entry(); local
119 entry.type = TYPE_SINGLE_PHOTO;
120 entry.widgetId = cursor.getInt(0)
134 Entry entry = new Entry(); local
    [all...]
  /system/core/gpttool/
gpttool.c 84 struct efi_entry entry[EFI_ENTRIES]; member in struct:ptable
121 struct efi_entry *entry = ptbl->entry; local
133 for (n = 0; n < EFI_ENTRIES; n++, entry++) {
134 if (entry->type_uuid[0])
136 memcpy(entry->type_uuid, partition_type_uuid, 16);
137 get_uuid(entry->uniq_uuid);
138 entry->first_lba = first;
139 entry->last_lba = last;
141 entry->name[n] = *name++
162 struct efi_entry *entry = ptbl->entry; local
183 struct efi_entry *entry = ptbl->entry; local
255 struct efi_entry *entry; local
    [all...]
  /external/chromium/chrome/browser/sync/engine/
get_commit_ids_command.cc 58 Entry parent(trans, GET_BY_ID, parent_id);
76 bool GetCommitIdsCommand::AddItem(syncable::Entry* item,
90 syncable::Entry* item,
100 syncable::Entry prev(trans, syncable::GET_BY_ID, prev_id);
113 syncable::Entry* item,
138 syncable::Entry entry(write_transaction,
141 if (!entry.Get(syncable::IS_DEL)) {
143 entry.Get(syncable::PARENT_ID), routes);
144 AddPredecessorsThenItem(write_transaction, &entry,
    [all...]
  /external/dnsmasq/src/
log.c 262 struct log_entry *entry; local
317 if ((entry = free_entries))
318 free_entries = entry->next;
319 else if (entries_alloced < max_logs && (entry = malloc(sizeof(struct log_entry))))
322 if (!entry)
327 entry->next = NULL;
329 entries = entry;
334 tmp->next = entry;
338 p = entry->payload;
344 len = p - entry->payload
    [all...]
  /external/qemu/
input.c 112 void qemu_activate_mouse_event_handler(QEMUPutMouseEntry *entry)
114 QTAILQ_REMOVE(&mouse_handlers, entry, node);
115 QTAILQ_INSERT_HEAD(&mouse_handlers, entry, node);
120 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry *entry)
122 QTAILQ_REMOVE(&mouse_handlers, entry, node);
124 qemu_free(entry->qemu_put_mouse_event_name);
125 qemu_free(entry);
143 void qemu_remove_led_event_handler(QEMUPutLEDEntry *entry)
145 if (entry == NULL)
147 QTAILQ_REMOVE(&led_handlers, entry, next)
170 QEMUPutMouseEntry *entry; local
215 QEMUPutMouseEntry *entry; local
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/util/
PduCache.java 95 synchronized public boolean put(Uri uri, PduCacheEntry entry) {
96 int msgBoxId = entry.getMessageBox();
103 long threadId = entry.getThreadId();
111 boolean result = super.put(finalKey, entry);
165 PduCacheEntry entry = super.purge(key); local
166 if (entry != null) {
167 removeFromThreads(key, entry);
168 removeFromMessageBoxes(key, entry);
169 return entry;
185 * @return Uri The normalized key of cached entry
222 PduCacheEntry entry = super.purge(key); local
247 PduCacheEntry entry = super.purge(key); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 55 * Application entry mapping UUIDs to appIDs and callbacks.
113 * Add an entry to the application context list.
128 App entry = i.next(); local
129 if (entry.id == id) {
130 entry.unlinkToDeath();
143 App entry = getById(id); local
144 if (entry != null){
172 App entry = i.next(); local
173 if (entry.id == id) return entry;
185 App entry = i.next(); local
223 App entry = getById(id); local
265 App entry = i.next(); local
286 App entry = i.next(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumSetSlotRenderer.java 132 AlbumSetEntry entry = mDataWindow.get(index); local
134 renderRequestFlags |= renderContent(canvas, entry, width, height);
135 renderRequestFlags |= renderLabel(canvas, entry, width, height);
136 renderRequestFlags |= renderOverlay(canvas, index, entry, width, height);
141 GLCanvas canvas, int index, AlbumSetEntry entry, int width, int height) {
143 if (entry.album != null && entry.album.isCameraRoll()) {
160 } else if ((mHighlightItemPath != null) && (mHighlightItemPath == entry.setPath)) {
162 } else if (mInSelectionMode && mSelectionManager.isItemSelected(entry.setPath)) {
169 GLCanvas canvas, AlbumSetEntry entry, int width, int height)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
robotparser.py 68 def _add_entry(self, entry):
69 if "*" in entry.useragents:
70 # the default entry is considered last
72 # the first default entry wins
73 self.default_entry = entry
75 self.entries.append(entry)
87 entry = Entry()
93 entry = Entry()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
robotparser.py 68 def _add_entry(self, entry):
69 if "*" in entry.useragents:
70 # the default entry is considered last
72 # the first default entry wins
73 self.default_entry = entry
75 self.entries.append(entry)
87 entry = Entry()
93 entry = Entry()
    [all...]
  /system/core/libzipfile/
centraldir.c 64 read_central_directory_entry(Zipfile* file, Zipentry* entry,
91 fprintf(stderr, "cde entry not large enough\n");
103 entry->compressionMethod = read_le_short(&p[0x0a]);
107 entry->compressedSize = read_le_int(&p[0x14]);
108 entry->uncompressedSize = read_le_int(&p[0x18]);
109 entry->fileNameLength = read_le_short(&p[0x1c]);
120 if (entry->fileNameLength != 0) {
121 entry->fileName = p;
123 entry->fileName = NULL;
125 p += entry->fileNameLength;
235 Zipentry* entry = malloc(sizeof(Zipentry)); local
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_prepopulate_data_unittest.cc 100 DictionaryValue* entry = new DictionaryValue; local
101 entry->SetString("name", "foo");
102 entry->SetString("keyword", "fook");
103 entry->SetString("search_url", "http://foo.com/s?q={searchTerms}");
104 entry->SetString("favicon_url", "http://foi.com/favicon.ico");
105 entry->SetString("suggest_url", "");
106 entry->SetString("instant_url", "");
107 entry->SetString("encoding", "UTF-8");
108 entry->SetInteger("search_engine_type", 1);
109 entry->SetInteger("logo_id", 0)
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_policy.h 32 void DidRunInsecureContent(NavigationEntry* entry,
38 // Update the SSL information in |entry| to match the current state.
39 // |tab_contents| is the TabContents associated with this entry.
40 void UpdateEntry(NavigationEntry* entry, TabContents* tab_contents);
58 // If the security style of |entry| has not been initialized, then initialize
60 void InitializeEntryIfNeeded(NavigationEntry* entry);
  /external/chromium/net/websockets/
websocket_net_log_params.cc 25 std::string entry = headers_.substr(last, pos - last); local
29 headers->Append(new StringValue(entry));
31 if (entry.empty()) {
  /external/chromium_org/chrome/browser/browsing_data/
mock_browsing_data_flash_lso_helper.cc 21 std::vector<std::string>::iterator entry = local
23 ASSERT_TRUE(entry != domains_.end());
24 domains_.erase(entry);
  /external/chromium_org/chrome/browser/chromeos/policy/
device_local_account.cc 79 scoped_ptr<base::DictionaryValue> entry(new base::DictionaryValue);
80 entry->SetStringWithoutPathExpansion(
83 entry->SetIntegerWithoutPathExpansion(
87 entry->SetStringWithoutPathExpansion(
91 entry->SetStringWithoutPathExpansion(
96 list.Append(entry.release());
113 const base::DictionaryValue* entry = NULL; local
114 if (!list->GetDictionary(i, &entry)) {
115 LOG(ERROR) << "Corrupt entry in device-local account list at index " << i
121 if (!entry->GetStringWithoutPathExpansion
    [all...]
  /external/chromium_org/chrome/browser/ui/search_engines/
search_engine_tab_helper.cc 30 // Returns true if the entry's transition type is FORM_SUBMIT.
31 bool IsFormSubmit(const NavigationEntry* entry) {
32 return (content::PageTransitionStripQualifier(entry->GetTransitionType()) ==
36 string16 GenerateKeywordFromNavigationEntry(const NavigationEntry* entry) {
39 if (IsFormSubmit(entry))
44 GURL url = entry->GetUserTypedURL();
46 url = entry->GetURL();
115 const NavigationEntry* entry = controller.GetLastCommittedEntry(); local
117 (index > 0) && IsFormSubmit(entry);
118 entry = controller.GetEntryAtIndex(index)
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_screenshot_manager.h 23 // current navigation entry of a NavigationControllerImpl, and managing these
31 // Takes a screenshot of the last-committed entry of the controller.
39 NavigationEntryImpl* entry);
43 virtual void OnScreenshotSet(NavigationEntryImpl* entry);
50 // This sets the screenshot on the navigation entry.
64 // Removes the screenshot for the entry, returning true if the entry had a
66 bool ClearScreenshot(NavigationEntryImpl* entry);
  /external/chromium_org/net/disk_cache/simple/
simple_entry_operation.cc 33 SimpleEntryImpl* entry,
36 Entry** out_entry) {
37 return SimpleEntryOperation(entry,
53 SimpleEntryImpl* entry,
56 Entry** out_entry) {
57 return SimpleEntryOperation(entry,
73 SimpleEntryImpl* entry) {
74 return SimpleEntryOperation(entry,
90 SimpleEntryImpl* entry,
97 return SimpleEntryOperation(entry,
    [all...]
  /external/chromium_org/net/websockets/
websocket_net_log_params.cc 25 std::string entry = headers->substr(last, pos - last); local
29 header_list->Append(new base::StringValue(entry));
31 if (entry.empty()) {
  /external/chromium_org/remoting/base/
vlog_net_log.cc 22 virtual void OnAddEntry(const net::NetLog::Entry& entry) OVERRIDE;
34 void VlogNetLog::Observer::OnAddEntry(const net::NetLog::Entry& entry) {
36 scoped_ptr<Value> value(entry.ToValue());

Completed in 5452 milliseconds

<<11121314151617181920>>