/external/chromium_org/net/disk_cache/simple/ |
simple_net_log_parameters.cc | 19 const disk_cache::SimpleEntryImpl* entry, 23 base::StringPrintf("%#016" PRIx64, entry->entry_hash())); 28 const disk_cache::SimpleEntryImpl* entry, 34 dict->SetString("key", entry->key()); 43 const SimpleEntryImpl* entry) { 44 DCHECK(entry); 45 return base::Bind(&NetLogSimpleEntryConstructionCallback, entry); 49 const SimpleEntryImpl* entry, 51 DCHECK(entry); 52 return base::Bind(&NetLogSimpleEntryCreationCallback, entry, net_error) [all...] |
/external/chromium_org/net/ftp/ |
ftp_directory_listing_parser_windows.cc | 39 FtpDirectoryListingEntry entry; 41 entry.type = FtpDirectoryListingEntry::DIRECTORY; 42 entry.size = -1; 44 entry.type = FtpDirectoryListingEntry::FILE; 45 if (!base::StringToInt64(columns[2], &entry.size)) 47 if (entry.size < 0) 53 &entry.last_modified)) { 57 entry.name = FtpUtil::GetStringPartAfterColumns(lines[i], 3); 58 if (entry.name.empty()) { 60 // It's not obvious how to display such an entry, so ignore them [all...] |
/external/chromium_org/chrome/browser/ |
chrome_content_browser_client_browsertest.cc | 21 // Returns the last committed navigation entry of the first tab. May be NULL 22 // if there is no such entry. 41 NavigationEntry* entry = GetLastCommittedEntry(); local 43 ASSERT_TRUE(entry != NULL); 44 EXPECT_EQ(url_long, entry->GetURL()); 45 EXPECT_EQ(url_short, entry->GetVirtualURL()); 54 NavigationEntry* entry = GetLastCommittedEntry(); local 56 ASSERT_TRUE(entry != NULL); 57 EXPECT_EQ(url_long, entry->GetURL()); 58 EXPECT_EQ(url_short, entry->GetVirtualURL()) 66 NavigationEntry* entry = GetLastCommittedEntry(); local 78 NavigationEntry* entry = GetLastCommittedEntry(); local 96 NavigationEntry* entry = GetLastCommittedEntry(); local [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
MultisetsImmutableEntryTest.java | 20 import com.google.common.collect.Multiset.Entry; 35 private static <E> Entry<E> entry(final E element, final int count) { method in class:MultisetsImmutableEntryTest 39 private static <E> Entry<E> control(E element, int count) { 45 assertEquals("foo", entry("foo", 1).toString()); 46 assertEquals("bar x 2", entry("bar", 2).toString()); 50 assertEquals("null", entry(NE, 1).toString()); 51 assertEquals("null x 2", entry(NE, 2).toString()); 55 assertEquals(control("foo", 1), entry("foo", 1)); 56 assertEquals(control("bar", 2), entry("bar", 2)) 64 assertEquals(control(NE, 1), entry(NE, 1)); method [all...] |
/external/srec/portable/src/ |
phashtable.c | 164 PHashTableEntry *entry = table->entries[idx]; local 168 while (entry != NULL) 170 if (entry->key == NULL) 171 return entry; 173 entry = entry->next; 178 while (entry != NULL) 180 if (entry->hashCode == hashCode && table->args.compFunction(key, entry->key) == 0) 181 return entry; 210 PHashTableEntry *entry; local 234 PHashTableEntry* entry; local 279 PHashTableEntry *entry, *tmp, *next; local 345 PHashTableEntry *entry; local 427 PHashTableEntry *entry; local [all...] |
/external/chromium_org/net/spdy/ |
hpack_entry_test.cc | 37 size_t IndexOf(const HpackEntry& entry) const { 38 if (entry.IsStatic()) { 39 return 1 + entry.InsertionIndex() + table_size_; 41 return total_insertions_ - entry.InsertionIndex(); 58 HpackEntry entry(StaticEntry()); 60 EXPECT_EQ(name_, entry.name()); 61 EXPECT_EQ(value_, entry.value()); 62 EXPECT_TRUE(entry.IsStatic()); 63 EXPECT_EQ(1u, IndexOf(entry)); 64 EXPECT_EQ(Size(), entry.Size()) 88 HpackEntry entry; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
__init__.py | 74 entry = _cache.get(encoding, _unknown) 75 if entry is not _unknown: 76 return entry 119 # Now ask the module for the registry entry 120 entry = getregentry() 121 if not isinstance(entry, codecs.CodecInfo): 122 if not 4 <= len(entry) <= 7: 126 if not hasattr(entry[0], '__call__') or \ 127 not hasattr(entry[1], '__call__') or \ 128 (entry[2] is not None and not hasattr(entry[2], '__call__')) or [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
__init__.py | 74 entry = _cache.get(encoding, _unknown) 75 if entry is not _unknown: 76 return entry 119 # Now ask the module for the registry entry 120 entry = getregentry() 121 if not isinstance(entry, codecs.CodecInfo): 122 if not 4 <= len(entry) <= 7: 126 if not hasattr(entry[0], '__call__') or \ 127 not hasattr(entry[1], '__call__') or \ 128 (entry[2] is not None and not hasattr(entry[2], '__call__')) or [all...] |
/hardware/intel/common/wrs_omxil_core/utils/src/ |
queue.c | 54 void __queue_push_head(struct queue *queue, struct list *entry) 56 queue->head = __list_add_head(queue->head, entry); 65 struct list *entry = list_alloc(data); local 67 if (!entry) 70 queue->head = __list_add_head(queue->head, entry); 79 void __queue_push_tail(struct queue *queue, struct list *entry) 81 queue->tail = list_add_tail(queue->tail, entry); 95 struct list *entry = list_alloc(data); local 97 if (!entry) 100 queue->tail = __list_add_tail(queue->tail, entry); 113 struct list *entry = queue->head; local 128 struct list *entry; local 142 struct list *entry = queue->tail; local 157 struct list *entry; local 181 struct list *entry; local 193 struct list *entry; local [all...] |
/external/qemu/util/ |
envlist.c | 42 struct envlist_entry *entry; local 47 entry = envlist->el_entries.lh_first; 48 QLIST_REMOVE(entry, ev_link); 50 free((char *)entry->ev_var); 51 free(entry); 87 * and calls given callback for each entry. 132 struct envlist_entry *entry = NULL; local 147 * new entry. 149 for (entry = envlist->el_entries.lh_first; entry != NULL 181 struct envlist_entry *entry; local 224 struct envlist_entry *entry; local [all...] |
/frameworks/base/tools/aapt/tests/ |
AaptGroupEntry_test.cpp | 26 static ::testing::AssertionResult TestParse(AaptGroupEntry& entry, const String8& dirName, 28 if (entry.initFromDirName(dirName, outType)) { 34 static ::testing::AssertionResult TestParse(AaptGroupEntry& entry, const char* input, 36 return TestParse(entry, String8(input), outType); 40 AaptGroupEntry entry; local 42 EXPECT_TRUE(TestParse(entry, "menu", &type)); 47 AaptGroupEntry entry; local 49 EXPECT_TRUE(TestParse(entry, "anim", &type)); 52 EXPECT_TRUE(TestParse(entry, "animator", &type));
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ |
X509CRLEntryHolder.java | 15 * Holding class for an X.509 CRL Entry structure. 19 private TBSCertList.CRLEntry entry; field in class:X509CRLEntryHolder 22 X509CRLEntryHolder(TBSCertList.CRLEntry entry, boolean isIndirect, GeneralNames previousCA) 24 this.entry = entry; 27 if (isIndirect && entry.hasExtensions()) 29 Extension currentCaName = entry.getExtensions().getExtension(Extension.certificateIssuer); 45 return entry.getUserCertificate().getValue(); 55 return entry.getRevocationDate().getDate(); 59 * Return whether or not the holder's CRL entry contains extensions [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMException.cpp | 103 const CoreException* entry = getErrorEntry(ec); local 104 ASSERT(entry); 105 return adoptRefWillBeNoop(new DOMException(entry->code, 106 entry->name ? entry->name : "Error", 107 sanitizedMessage.isNull() ? String(entry->message) : sanitizedMessage, 123 const CoreException* entry = getErrorEntry(ec); local 124 ASSERT(entry); 125 if (!entry) 128 return entry->name 133 const CoreException* entry = getErrorEntry(ec); local [all...] |
/external/chromium_org/third_party/android_crazy_linker/src/src/ |
crazy_linker_proc_maps.cpp | 22 // of input. On success, returns true and sets |*entry|, false otherwise. 24 // IMPORTANT: On success, |entry->path| will point into the input line, 29 ProcMaps::Entry* entry) { 80 entry->path = NULL; 81 entry->path_len = 0; 89 entry->vma_start = static_cast<size_t>(strtoumax(tok_start, NULL, 16)); 93 entry->vma_end = static_cast<size_t>(strtoumax(tok_start, NULL, 16)); 107 entry->prot_flags = flags; 111 entry->load_offset 144 ProcMaps::Entry entry = {0, }; local 178 ProcMaps::Entry& entry = entries_[n]; local 211 ProcMaps::Entry entry; local 224 ProcMaps::Entry entry; local 251 ProcMaps::Entry entry; local 270 ProcMaps::Entry entry; local [all...] |
crazy_linker_rdebug.h | 73 // actually point to a specially crafted fake entry for it called 80 // - Eventually, another entry for VDSOs on platforms that support them. 95 // a new entry at the end of the '_r_debug.r_map' list, but 102 // 4/ The system dlopen() adds a new entry to the "_r_debug.r_map" 103 // list by updating the l_next / l_prev fields of the entry pointed 176 void AddEntry(link_map_t* entry) { RunOrDelay(&AddEntryInternal, entry); } 177 void DelEntry(link_map_t* entry) { RunOrDelay(&DelEntryInternal, entry); } 200 void AddEntryImpl(link_map_t* entry); [all...] |
/external/oprofile/opjitconv/ |
conversion.c | 20 struct jitentry * entry, * next; local 22 for (entry = jitentry_list; entry; entry = next) { 23 if (entry->sym_name_malloced) 24 free(entry->symbol_name); 25 next = entry->next; 26 free(entry); 33 struct jitentry_debug_line * entry, * next; local 35 for (entry = jitentry_debug_line_list; entry; entry = next) [all...] |
/ndk/sources/android/crazy_linker/src/ |
crazy_linker_proc_maps.cpp | 22 // of input. On success, returns true and sets |*entry|, false otherwise. 24 // IMPORTANT: On success, |entry->path| will point into the input line, 29 ProcMaps::Entry* entry) { 75 entry->path = NULL; 76 entry->path_len = 0; 84 entry->vma_start = static_cast<size_t>(strtoumax(tok_start, NULL, 16)); 88 entry->vma_end = static_cast<size_t>(strtoumax(tok_start, NULL, 16)); 102 entry->prot_flags = flags; 106 entry->load_offset 139 ProcMaps::Entry entry = {0, }; local 173 ProcMaps::Entry& entry = entries_[n]; local 206 ProcMaps::Entry entry; local 219 ProcMaps::Entry entry; local 246 ProcMaps::Entry entry; local 265 ProcMaps::Entry entry; local [all...] |
crazy_linker_rdebug.h | 73 // actually point to a specially crafted fake entry for it called 80 // - Eventually, another entry for VDSOs on platforms that support them. 95 // a new entry at the end of the '_r_debug.r_map' list, but 102 // 4/ The system dlopen() adds a new entry to the "_r_debug.r_map" 103 // list by updating the l_next / l_prev fields of the entry pointed 176 void AddEntry(link_map_t* entry) { RunOrDelay(&AddEntryInternal, entry); } 177 void DelEntry(link_map_t* entry) { RunOrDelay(&DelEntryInternal, entry); } 200 void AddEntryImpl(link_map_t* entry); [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
hash.c | 50 * An entry in the hash table. 53 GLuint Key; /**< the entry's key */ 54 void *Data; /**< the entry's data */ 55 struct HashEntry *Next; /**< pointer to next entry */ 92 * Frees each entry on the hash table and then the hash table structure itself. 104 struct HashEntry *entry = table->Table[pos]; local 105 while (entry) { 106 struct HashEntry *next = entry->Next; 107 if (entry->Data) { 111 free(entry); 130 const struct HashEntry *entry; local 180 struct HashEntry *entry; local 234 struct HashEntry *entry, *prev; local 293 struct HashEntry *entry, *next; local 330 struct HashEntry *entry, *next; local 375 const struct HashEntry *entry; local 423 const struct HashEntry *entry = table->Table[pos]; local 492 const struct HashEntry *entry; local [all...] |
/external/mesa3d/src/mesa/main/ |
hash.c | 50 * An entry in the hash table. 53 GLuint Key; /**< the entry's key */ 54 void *Data; /**< the entry's data */ 55 struct HashEntry *Next; /**< pointer to next entry */ 92 * Frees each entry on the hash table and then the hash table structure itself. 104 struct HashEntry *entry = table->Table[pos]; local 105 while (entry) { 106 struct HashEntry *next = entry->Next; 107 if (entry->Data) { 111 free(entry); 130 const struct HashEntry *entry; local 180 struct HashEntry *entry; local 234 struct HashEntry *entry, *prev; local 293 struct HashEntry *entry, *next; local 330 struct HashEntry *entry, *next; local 375 const struct HashEntry *entry; local 423 const struct HashEntry *entry = table->Table[pos]; local 492 const struct HashEntry *entry; local [all...] |
/external/replicaisland/src/com/replica/replicaisland/ |
DrawableFactory.java | 78 DrawableBitmap entry = new DrawableBitmap(null, 0, 0); local 79 entry.setParentPool(this); 80 getAvailable().add(entry); 85 public void release(Object entry) { 86 ((DrawableBitmap)entry).reset(); 87 super.release(entry); 115 ScrollableBitmap entry = new ScrollableBitmap(null, 0, 0); local 116 entry.setParentPool(this); 117 getAvailable().add(entry); 122 public void release(Object entry) { 144 TiledBackgroundVertexGrid entry = new TiledBackgroundVertexGrid(); local [all...] |
/external/chromium_org/remoting/client/ |
server_log_entry_client.cc | 98 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); 99 entry->AddRoleField(kValueRoleClient); 100 entry->AddEventNameField(kValueEventNameSessionState); 102 entry->Set(kKeySessionState, GetValueSessionState(state)); 104 entry->Set(kKeyConnectionError, GetValueError(error)); 107 return entry.Pass(); 112 scoped_ptr<ServerLogEntry> entry(new ServerLogEntry()); 113 entry->AddRoleField(kValueRoleClient); 114 entry->AddEventNameField(kValueEventNameStatistics); 116 entry->Set("video-bandwidth" [all...] |
/external/chromium_org/base/process/ |
process_iterator_win.cc | 30 void ProcessIterator::InitProcessEntry(ProcessEntry* entry) { 31 memset(entry, 0, sizeof(*entry)); 32 entry->dwSize = sizeof(*entry); 37 return _wcsicmp(executable_name_.c_str(), entry().exe_file()) == 0 &&
|
/external/lldb/tools/debugserver/scripts/ |
diagnose-termination.d | 1 fbt::exception_deliver:entry 8 syscall::kill:entry 14 syscall::__pthread_kill:entry
|
/art/runtime/jdwp/ |
object_registry.cc | 61 ObjectRegistryEntry* entry = nullptr; local 62 if (ContainsLocked(soa.Self(), obj_h.Get(), identity_hash_code, &entry)) { 64 ++entry->reference_count; 66 entry = new ObjectRegistryEntry; 67 entry->jni_reference_type = JNIWeakGlobalRefType; 68 entry->jni_reference = nullptr; 69 entry->reference_count = 0; 70 entry->id = 0; 71 entry->identity_hash_code = identity_hash_code; 72 object_to_entry_.insert(std::make_pair(identity_hash_code, entry)); 96 ObjectRegistryEntry* entry = it->second; local 114 const ObjectRegistryEntry* entry = pair.second; local 134 ObjectRegistryEntry& entry = *it->second; local 146 ObjectRegistryEntry& entry = *it->second; local 193 ObjectRegistryEntry& entry = *it->second; local 209 ObjectRegistryEntry* entry = it->second; local [all...] |