HomeSort by relevance Sort by last modified time
    Searched refs:entry (Results 51 - 75 of 5119) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/chromeos/login/easy_unlock/
easy_unlock_get_keys_operation.cc 71 const cryptohome::KeyDefinition::ProviderData& entry = provider_data[i]; local
72 if (entry.name == kEasyUnlockKeyMetaNameBluetoothAddress) {
73 if (entry.bytes)
74 device.bluetooth_address = *entry.bytes;
77 } else if (entry.name == kEasyUnlockKeyMetaNamePubKey) {
78 if (entry.bytes)
79 device.public_key = *entry.bytes;
82 } else if (entry.name == kEasyUnlockKeyMetaNamePsk) {
83 if (entry.bytes)
84 device.psk = *entry.bytes
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
accelerator_table_unittest.cc 37 const AcceleratorMapping& entry = *it; local
38 EXPECT_TRUE(acclerators.insert(entry).second)
39 << "Duplicated accelerator: " << entry.keycode << ", "
40 << (entry.modifiers & ui::EF_SHIFT_DOWN) << ", "
41 << (entry.modifiers & ui::EF_CONTROL_DOWN) << ", "
42 << (entry.modifiers & ui::EF_ALT_DOWN);
52 const AcceleratorMapping& entry = *it; local
53 acclerators.insert(entry);
66 AcceleratorMapping entry; local
67 entry.keycode = ash_entry.keycode
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
cros_language_options_handler_unittest.cc 44 base::DictionaryValue* entry = NULL; local
52 ASSERT_TRUE(list->GetDictionary(0, &entry));
53 ASSERT_TRUE(entry->GetString("id", &input_method_id));
54 ASSERT_TRUE(entry->GetString("displayName", &display_name));
55 ASSERT_TRUE(entry->GetDictionary("languageCodeSet", &language_code_set));
62 ASSERT_TRUE(list->GetDictionary(1, &entry));
63 ASSERT_TRUE(entry->GetString("id", &input_method_id));
64 ASSERT_TRUE(entry->GetString("displayName", &display_name));
65 ASSERT_TRUE(entry->GetDictionary("languageCodeSet", &language_code_set));
71 ASSERT_TRUE(list->GetDictionary(2, &entry));
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
CSVFormatter.java 42 public String getOutput(TrackerEntry entry) {
45 rowOutput.append(entry.getTimestamp());
47 rowOutput.append(entry.getTag());
49 //rowOutput.append(entry.getType());
51 if (entry.getType() == EntryType.LOCATION_TYPE) {
52 if (entry.getLocation().hasAccuracy()) {
53 rowOutput.append(entry.getLocation().getAccuracy());
56 rowOutput.append(entry.getLocation().getLatitude());
58 rowOutput.append(entry.getLocation().getLongitude());
60 if (entry.getLocation().hasAltitude())
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
eviction.h 33 // Updates the ranking information for an entry.
34 void UpdateRank(EntryImpl* entry, bool modified);
36 // Notifications of interesting events for a given entry.
37 void OnOpenEntry(EntryImpl* entry);
38 void OnCreateEntry(EntryImpl* entry);
39 void OnDoomEntry(EntryImpl* entry);
40 void OnDestroyEntry(EntryImpl* entry);
51 void ReportTrimTimes(EntryImpl* entry);
52 Rankings::List GetListForEntry(EntryImpl* entry);
59 void UpdateRankV2(EntryImpl* entry, bool modified)
    [all...]
webfonts_histogram.h 19 void RecordCacheHit(EntryImpl* entry);
20 void RecordEviction(EntryImpl* entry);
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ScanFilterQueue.java 51 class Entry {
77 Entry other = (Entry) obj;
89 private Set<Entry> mEntries = new HashSet<Entry>();
92 Entry entry = new Entry(); local
93 entry.type = TYPE_DEVICE_ADDRESS;
94 entry.address = address
100 Entry entry = new Entry(); local
106 Entry entry = new Entry(); local
114 Entry entry = new Entry(); local
122 Entry entry = new Entry(); local
129 Entry entry = new Entry(); local
136 Entry entry = new Entry(); local
147 Entry entry = new Entry(); local
157 Entry entry = new Entry(); local
169 Entry entry = iterator.next(); local
180 Entry entry = it.next(); local
    [all...]
  /system/core/libzipfile/
zipfile.c 33 Zipentry* entry = file->entries; local
34 while (entry) {
35 Zipentry* next = entry->next;
36 free(entry);
37 entry = next;
46 Zipentry* entry = file->entries; local
47 while (entry) {
48 if (0 == memcmp(entryName, entry->fileName, entry->fileNameLength)) {
49 return entry;
117 Zipentry* entry = (Zipentry*)e; local
134 Zipentry* entry = zip->entries; local
149 Zipentry* entry = (Zipentry*)*cookie; local
    [all...]
  /external/qemu/qobject/
qdict.c 76 QDictEntry *entry; local
78 entry = g_malloc0(sizeof(*entry));
79 entry->key = g_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
410 QDictEntry *entry; local
446 QDictEntry *entry; local
468 QDictEntry *entry = QLIST_FIRST(&qdict->table[i]); local
483 const QDictEntry *entry, *next; local
541 const QDictEntry *entry, *next; local
    [all...]
  /external/chromium_org/net/disk_cache/simple/
simple_net_log_parameters.h 17 // SimpleEntryImpl. Contains the entry's hash. |entry| can't be NULL and must
20 const SimpleEntryImpl* entry);
24 // and, if successful, the entry's key. |entry| can't be NULL and must outlive
27 const SimpleEntryImpl* entry,
  /external/chromium_org/sync/engine/
conflict_util.h 20 void IgnoreLocalChanges(syncable::MutableEntry* entry);
25 void OverwriteServerChanges(syncable::MutableEntry* entry);
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_array_splitting.cpp 135 variable_entry *entry = (variable_entry *)iter.get(); local
136 if (entry->var == var)
137 return entry;
140 variable_entry *entry = new(mem_ctx) variable_entry(var); local
141 this->variable_list.push_tail(entry);
142 return entry;
149 variable_entry *entry = this->get_variable_entry(ir); local
151 if (entry)
152 entry->declaration = true;
160 variable_entry *entry = this->get_variable_entry(ir->var) local
215 variable_entry *entry = get_variable_entry(var); local
224 variable_entry *entry = (variable_entry *)iter.get(); local
270 variable_entry *entry = (variable_entry *)iter.get(); local
291 variable_entry *entry = get_splitting_entry(var); local
368 variable_entry *entry = (variable_entry *)iter.get(); local
    [all...]
opt_constant_variable.cpp 65 struct assignment_entry *entry; local
67 foreach_list_typed(struct assignment_entry, entry, link, list) {
68 if (entry->var == var)
69 return entry;
72 entry = (struct assignment_entry *)calloc(1, sizeof(*entry));
73 entry->var = var;
74 list->push_head(&entry->link);
75 return entry;
81 struct assignment_entry *entry = get_assignment_entry(ir, &this->list) local
98 struct assignment_entry *entry; local
143 struct assignment_entry *entry; local
155 struct assignment_entry *entry; local
178 struct assignment_entry *entry; local
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
GroupedLinkedMap.java 22 LinkedEntry<K, V> entry = keyToEntry.get(key); local
24 if (entry == null) {
25 entry = new LinkedEntry<K, V>(key);
26 makeTail(entry);
27 keyToEntry.put(key, entry);
32 entry.add(value);
36 LinkedEntry<K, V> entry = keyToEntry.get(key); local
37 if (entry == null) {
38 entry = new LinkedEntry<K, V>(key);
39 keyToEntry.put(key, entry);
    [all...]
  /external/mesa3d/src/glsl/
opt_array_splitting.cpp 135 variable_entry *entry = (variable_entry *)iter.get(); local
136 if (entry->var == var)
137 return entry;
140 variable_entry *entry = new(mem_ctx) variable_entry(var); local
141 this->variable_list.push_tail(entry);
142 return entry;
149 variable_entry *entry = this->get_variable_entry(ir); local
151 if (entry)
152 entry->declaration = true;
160 variable_entry *entry = this->get_variable_entry(ir->var) local
215 variable_entry *entry = get_variable_entry(var); local
224 variable_entry *entry = (variable_entry *)iter.get(); local
270 variable_entry *entry = (variable_entry *)iter.get(); local
291 variable_entry *entry = get_splitting_entry(var); local
368 variable_entry *entry = (variable_entry *)iter.get(); local
    [all...]
opt_constant_variable.cpp 65 struct assignment_entry *entry; local
67 foreach_list_typed(struct assignment_entry, entry, link, list) {
68 if (entry->var == var)
69 return entry;
72 entry = (struct assignment_entry *)calloc(1, sizeof(*entry));
73 entry->var = var;
74 list->push_head(&entry->link);
75 return entry;
81 struct assignment_entry *entry = get_assignment_entry(ir, &this->list) local
98 struct assignment_entry *entry; local
143 struct assignment_entry *entry; local
155 struct assignment_entry *entry; local
178 struct assignment_entry *entry; local
    [all...]
  /frameworks/volley/tests/src/com/android/volley/utils/
CacheTestUtils.java 12 * Makes a random cache entry.
14 * @param isExpired Whether the TTLs should be set such that this entry is expired
15 * @param needsRefresh Whether the TTLs should be set such that this entry needs refresh
17 public static Cache.Entry makeRandomCacheEntry(
20 Cache.Entry entry = new Cache.Entry(); local
22 entry.data = data;
24 entry.data = new byte[random.nextInt(1024)];
26 entry.etag = String.valueOf(random.nextLong())
    [all...]
  /external/chromium_org/ui/events/keycodes/dom4/
keycode_converter_unittest.cc 48 const ui::KeycodeMapEntry* entry = &keycode_map[i]; local
50 if (entry->native_keycode == ui::KeycodeConverter::InvalidNativeKeycode())
55 entry->native_keycode,
56 ui::KeycodeConverter::UsbKeycodeToNativeKeycode(entry->usb_keycode));
59 if (entry->code) {
60 EXPECT_EQ(entry->native_keycode,
61 ui::KeycodeConverter::CodeToNativeKeycode(entry->code));
63 entry->code,
64 ui::KeycodeConverter::NativeKeycodeToCode(entry->native_keycode));
68 ui::KeycodeConverter::CodeToNativeKeycode(entry->code))
    [all...]
  /external/valgrind/main/VEX/switchback/
test_simple.c 8 void entry ( void*(*service)(int,int) ) function
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryHandler.java 34 * The method called when one vCard entry is created. Children come before their parent in
38 * In the following vCard, the entry for "entry2" comes before one for "entry1".
48 public void onEntryCreated(final VCardEntry entry);
  /external/wpa_supplicant_8/src/rsn_supp/
pmksa_cache.c 27 void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx,
36 static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry)
38 bin_clear_free(entry, sizeof(*entry));
43 struct rsn_pmksa_cache_entry *entry,
46 wpa_sm_remove_pmkid(pmksa->sm, entry->aa, entry->pmkid);
48 pmksa->free_cb(entry, pmksa->ctx, reason);
49 _pmksa_cache_free_entry(entry);
60 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa local
82 struct rsn_pmksa_cache_entry *entry; local
127 struct rsn_pmksa_cache_entry *entry, *pos, *prev; local
250 struct rsn_pmksa_cache_entry *entry, *prev = NULL, *tmp; local
286 struct rsn_pmksa_cache_entry *entry, *prev; local
315 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; local
364 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; local
468 struct rsn_pmksa_cache_entry *entry; local
    [all...]
  /external/elfutils/0.153/libdw/
dwarf_next_cfi.c 1 /* Advance to next CFI entry.
61 dwarf_next_cfi (e_ident, data, eh_frame_p, off, next_off, entry)
67 Dwarf_CFI_Entry *entry;
83 /* This points into the .debug_frame section at the start of the entry. */
87 /* The format of a CFI entry is described in DWARF3 6.4.1:
108 /* Now we know how large the entry is. Note the trick in the
118 entry->cie.CIE_id = read_8ubyte_unaligned_inc (&dw, bytes);
121 entry->cie.CIE_id = read_4ubyte_unaligned_inc (&dw, bytes);
123 if (!eh_frame_p && entry->cie.CIE_id == DW_CIE_ID_32)
124 entry->cie.CIE_id = DW_CIE_ID_64
    [all...]
  /bionic/libc/bionic/
pthread_atfork.cpp 89 atfork_t* entry = reinterpret_cast<atfork_t*>(malloc(sizeof(atfork_t))); local
90 if (entry == NULL) {
94 entry->prepare = prepare;
95 entry->parent = parent;
96 entry->child = child;
100 // Append 'entry' to the list.
101 entry->next = NULL;
102 entry->prev = g_atfork_list.last;
103 if (entry->prev != NULL) {
104 entry->prev->next = entry
    [all...]
  /external/chromium_org/base/process/
kill.cc 16 while (const ProcessEntry* entry = iter.NextProcessEntry()) {
18 result &= KillProcessById(entry->pid(), exit_code, true);
20 result &= KillProcess(entry->pid(), exit_code, true);
  /external/replicaisland/src/com/replica/replicaisland/
HitPointPool.java 30 public void release(Object entry) {
31 ((HitPoint)entry).reset();
32 super.release(entry);

Completed in 553 milliseconds

1 23 4 5 6 7 8 91011>>