/external/chromium_org/chrome_frame/crash_reporting/ |
nt_loader.cc | 13 // Make sure we own the loader's lock on entry here. 18 for (LIST_ENTRY* entry = head->Flink; entry != head; entry = entry->Flink) { 20 CONTAINING_RECORD(entry, LDR_DATA_TABLE_ENTRY, InLoadOrderLinks);
|
/external/chromium_org/net/disk_cache/flash/ |
log_store_entry_unittest.cc | 21 scoped_ptr<LogStoreEntry> entry(new LogStoreEntry(&log_store)); 22 EXPECT_TRUE(entry->Init()); 23 EXPECT_TRUE(entry->Close()); 25 entry.reset(new LogStoreEntry(&log_store, entry->id())); 26 EXPECT_TRUE(entry->Init()); 31 EXPECT_EQ(0, entry->GetDataSize(i)); 32 EXPECT_EQ(0, entry->ReadData(i, 0, buf.get(), kSize)); 34 EXPECT_TRUE(entry->Close()); 42 scoped_ptr<LogStoreEntry> entry(new LogStoreEntry(&log_store)) [all...] |
/external/llvm/include/llvm/Support/ |
RegistryParser.h | 24 /// static cl::opt<Registry<Collector>::entry, false, 35 public cl::parser<const typename U::entry*>, 38 typedef typename U::entry entry; typedef in class:llvm::RegistryParser 42 void registered(const entry &E) { 49 cl::parser<const typename U::entry*>::initialize(O);
|
/frameworks/compile/mclinker/unittests/ |
DirIteratorTest.cpp | 52 Directory::iterator entry = m_pDir->begin(); local 56 while( entry!=enEnd ) { 57 if (0 != entry.path()) 58 size = entry.path()->native().size(); 60 ++entry;
|
/frameworks/volley/tests/src/com/android/volley/toolbox/ |
HttpHeaderParserTest.java | 49 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 51 assertNotNull(entry); 52 assertNull(entry.etag); 53 assertEquals(0, entry.serverDate); 54 assertEquals(0, entry.ttl); 55 assertEquals(0, entry.softTtl); 61 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 63 assertNotNull(entry); 72 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 83 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 97 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 114 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 126 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 140 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local 151 Cache.Entry entry = HttpHeaderParser.parseCacheHeaders(response); local [all...] |
/external/chromium_org/chrome/browser/google/ |
google_search_counter.cc | 17 // Returns true iff |entry| represents a Google search from the Omnibox. 18 // This method assumes that we have already verified that |entry|'s URL is a 20 bool IsOmniboxGoogleSearchNavigation(const content::NavigationEntry& entry) { 22 PageTransitionStripQualifier(entry.GetTransitionType()); 23 DCHECK(google_util::IsGoogleSearchUrl(entry.GetURL())); 27 // Returns true iff |entry| represents a Google search from the Google Search 28 // App. This method assumes that we have already verified that |entry|'s URL is 30 bool IsSearchAppGoogleSearchNavigation(const content::NavigationEntry& entry) { 31 DCHECK(google_util::IsGoogleSearchUrl(entry.GetURL())); 32 return entry.GetURL().query().find("source=search_app") ! 60 const content::NavigationEntry& entry = *commit->entry; local [all...] |
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/ |
entry_x86_tls.h | 100 char *entry; local 104 for (entry = x86_entry_start; entry < x86_entry_end; entry += 16) 105 memcpy(entry, patch, sizeof(patch)); 116 entry_patch(mapi_func entry, int slot) 118 char *code = (char *) entry; 131 mapi_func entry; local 140 entry = (mapi_func) code; 141 entry_patch(entry, slot) [all...] |
/external/mesa3d/src/mapi/mapi/ |
entry_x86_tls.h | 100 char *entry; local 104 for (entry = x86_entry_start; entry < x86_entry_end; entry += 16) 105 memcpy(entry, patch, sizeof(patch)); 116 entry_patch(mapi_func entry, int slot) 118 char *code = (char *) entry; 131 mapi_func entry; local 140 entry = (mapi_func) code; 141 entry_patch(entry, slot) [all...] |
/external/smack/src/org/xbill/DNS/ |
Compression.java | 15 private static class Entry { 18 Entry next; 23 private Entry [] table; 31 table = new Entry[TABLE_SIZE]; 35 * Adds a compression entry mapping a name to a position in a message. 44 Entry entry = new Entry(); local 45 entry.name = name; 46 entry.pos = pos [all...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
entry_id_manager.js | 10 function computeName(entry) { 11 return entry.filesystem.name + ':' + entry.fullPath; 14 function computeId(entry) { 16 entry.filesystem.name); 20 return fileSystemId + ':' + $String.slice(entry.fullPath, 1); 23 function registerEntry(id, entry) { 24 var name = computeName(entry); 26 idsToEntries[id] = entry; 29 function getEntryId(entry) { [all...] |
/external/emma/core/java12/com/vladium/util/ |
IntSet.java | 59 m_buckets = new Entry [initialCapacity]; 85 final Entry [] buckets = m_buckets; 89 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) 91 if (key == entry.m_key) 109 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next [all...] |
IntIntMap.java | 27 // TODO: optimize key comparisons using key.hash == entry.key.hash condition 61 m_buckets = new Entry [initialCapacity]; 87 final Entry [] buckets = m_buckets; 91 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next) 93 if (key == entry.m_key) return true; 111 final Entry [] buckets = m_buckets [all...] |
/external/qemu/ |
qdict.c | 76 QDictEntry *entry; local 78 entry = qemu_mallocz(sizeof(*entry)); 79 entry->key = qemu_strdup(key); 80 entry->value = value; 82 return entry; 86 * qdict_entry_value(): Return qdict entry value 90 QObject *qdict_entry_value(const QDictEntry *entry) 92 return entry->value; 96 * qdict_entry_key(): Return qdict entry ke 112 QDictEntry *entry; local 135 QDictEntry *entry; local 159 QDictEntry *entry; local 358 QDictEntry *entry; local 424 QDictEntry *entry; local 446 QDictEntry *entry = QLIST_FIRST(&qdict->table[i]); local [all...] |
/external/grub/util/ |
grub-set-default | 3 # Set a default boot entry for GRUB 25 entry= 31 Usage: grub-set-default [OPTION] entry 32 Set the default boot entry for GRUB. 38 ENTRY is a number or the special keyword \`default\'. 61 if test "x$entry" != x; then 67 entry="${option}" ;; 71 if test "x$entry" = x; then 72 echo "entry not specified." 1>&2 97 $entry [all...] |
grub-set-default.in | 3 # Set a default boot entry for GRUB 25 entry= 31 Usage: grub-set-default [OPTION] entry 32 Set the default boot entry for GRUB. 38 ENTRY is a number or the special keyword \`default\'. 61 if test "x$entry" != x; then 67 entry="${option}" ;; 71 if test "x$entry" = x; then 72 echo "entry not specified." 1>&2 97 $entry [all...] |
/system/netd/ |
UidMarkMap.cpp | 32 UidMarkEntry *entry = *it; local 33 if (entry->uid_start <= uid_end && uid_start <= entry->uid_end) { 47 UidMarkEntry *entry = *it; local 48 if (entry->uid_start == uid_start && entry->uid_end == uid_end && entry->mark == mark) { 50 delete entry; 61 UidMarkEntry *entry = *it; local 62 if (entry->uid_start <= uid && entry->uid_end >= uid) 73 UidMarkEntry *entry = *it; local [all...] |
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
FatFile.java | 36 private final FatDirectoryEntry entry; field in class:FatFile 42 this.entry = myEntry; 46 static FatFile get(Fat fat, FatDirectoryEntry entry) 49 if (entry.isDirectory()) 50 throw new IllegalArgumentException(entry + " is a directory"); 53 fat, entry.getStartCluster(), entry.isReadonlyFlag()); 55 if (entry.getLength() > cc.getLengthOnDisk()) throw new IOException( 56 "entry is larger than associated cluster chain"); 58 return new FatFile(entry, cc) [all...] |
FatType.java | 23 * Enumerates the different entry sizes of 12, 16 and 32 bits for the different 51 void writeEntry(byte[] data, int index, long entry) { 55 data[idx] = (byte) (entry & 0xFF); 56 data[idx + 1] = (byte) ((entry >> 8) & 0x0F); 58 data[idx] |= (byte) ((entry & 0x0F) << 4); 59 data[idx + 1] = (byte) ((entry >> 4) & 0xFF); 78 void writeEntry(byte[] data, int index, long entry) { 80 data[idx] = (byte) (entry & 0xFF); 81 data[idx + 1] = (byte) ((entry >> 8) & 0xFF); 101 void writeEntry(byte[] data, int index, long entry) { [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
AbstractMapEntryTest.java | 24 import java.util.Map.Entry; 36 private static <K, V> Entry<K, V> entry(final K key, final V value) { method in class:AbstractMapEntryTest 47 private static <K, V> Entry<K, V> control(K key, V value) { 52 assertEquals("foo=1", entry("foo", 1).toString()); 56 assertEquals("null=1", entry(NK, 1).toString()); 57 assertEquals("foo=null", entry("foo", NV).toString()); 58 assertEquals("null=null", entry(NK, NV).toString()); 62 Entry<String, Integer> foo1 = entry("foo", 1) [all...] |
/packages/apps/Settings/src/com/android/settings/users/ |
RestrictionUtils.java | 66 RestrictionEntry entry = new RestrictionEntry( local 69 entry.setTitle(res.getString(sRestrictionTitles[i])); 70 entry.setDescription(res.getString(sRestrictionDescriptions[i])); 71 entry.setType(RestrictionEntry.TYPE_BOOLEAN); 72 entries.add(entry); 83 for (RestrictionEntry entry : entries) { 84 userRestrictions.putBoolean(entry.getKey(), !entry.getSelectedState()); 85 if (entry.getKey().equals(UserManager.DISALLOW_SHARE_LOCATION) 86 && !entry.getSelectedState()) [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
glsl_symbol_table.cpp | 33 void *entry = ralloc_size(ctx, size); local 34 assert(entry != NULL); 35 return entry; 39 static void operator delete(void *entry) 41 ralloc_free(entry); 90 * the current scope, just update the existing entry to include 'v'. 97 /* If not declared at this scope, add a new entry. But if an existing 98 * entry includes a function, propagate that to this block - otherwise 101 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(v); local 103 entry->f = existing->f 113 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(v); local 119 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(t); local 133 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(f); local 139 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(u); local 145 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(f); local 153 symbol_table_entry *entry = get_entry(name); local 159 symbol_table_entry *entry = get_entry(name); local 165 symbol_table_entry *entry = get_entry(name); local [all...] |
opt_structure_splitting.cpp | 115 variable_entry2 *entry = (variable_entry2 *)iter.get(); local 116 if (entry->var == var) 117 return entry; 120 variable_entry2 *entry = new(mem_ctx) variable_entry2(var); local 121 this->variable_list.push_tail(entry); 122 return entry; 129 variable_entry2 *entry = this->get_variable_entry2(ir); local 131 if (entry) 132 entry->declaration = true; 141 variable_entry2 *entry = this->get_variable_entry2(var) local 217 variable_entry2 *entry = (variable_entry2 *)iter.get(); local 323 variable_entry2 *entry = (variable_entry2 *)iter.get(); local 345 variable_entry2 *entry = (variable_entry2 *)iter.get(); local [all...] |
/external/mesa3d/src/glsl/ |
glsl_symbol_table.cpp | 33 void *entry = ralloc_size(ctx, size); local 34 assert(entry != NULL); 35 return entry; 39 static void operator delete(void *entry) 41 ralloc_free(entry); 90 * the current scope, just update the existing entry to include 'v'. 97 /* If not declared at this scope, add a new entry. But if an existing 98 * entry includes a function, propagate that to this block - otherwise 101 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(v); local 103 entry->f = existing->f 113 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(v); local 119 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(t); local 133 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(f); local 139 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(u); local 145 symbol_table_entry *entry = new(mem_ctx) symbol_table_entry(f); local 153 symbol_table_entry *entry = get_entry(name); local 159 symbol_table_entry *entry = get_entry(name); local 165 symbol_table_entry *entry = get_entry(name); local [all...] |
/external/oprofile/daemon/ |
opd_cookie.c | 105 struct cookie_entry * entry = xmalloc(sizeof(struct cookie_entry)); local 107 entry->value = cookie; 108 entry->name = xmalloc(PATH_MAX + 1); 110 err = lookup_dcookie(cookie, entry->name, PATH_MAX); 115 free(entry->name); 116 entry->name = NULL; 117 entry->ignored = 0; 119 entry->ignored = is_image_ignored(entry->name); 122 return entry; 137 struct cookie_entry * entry; local 160 struct cookie_entry * entry; local 182 struct cookie_entry * entry; local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
Profile.java | 39 // This is a watchdog entry for one thread. 109 for (WatchEntry entry : mList) { 110 if (currentTime > entry.wakeTime) { 111 entry.wakeTime += entry.cycleTime; 112 Thread thread = entry.thread; 113 sampleStack(entry); 116 if (entry.wakeTime > nextWakeTime) { 117 nextWakeTime = entry.wakeTime; 125 private void sampleStack(WatchEntry entry) { 141 WatchEntry entry = mList.get(i); local 156 WatchEntry entry = findEntry(t); local 167 WatchEntry entry = findEntry(t); local 178 WatchEntry entry = findEntry(t); local [all...] |