HomeSort by relevance Sort by last modified time
    Searched refs:hs (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /external/chromium/chrome/browser/download/
download_history.cc 31 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
32 if (!hs) {
36 hs->QueryDownloads(&history_consumer_, callback);
39 hs->CleanUpInProgressEntries();
56 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
58 download_item->is_temporary() || !hs) {
65 hs->CreateDownload(info, &history_consumer_, callback);
75 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
76 if (!hs)
79 hs->UpdateDownload(download_item->received_bytes()
110 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
ps_hybrid_filter_bank_allocation.cpp 141 HYBRID *hs; local
147 hs = (HYBRID *)ptr;
151 hs->pResolution = (Int32*)ptr;
158 hs->pResolution[i] = pResolution[i];
173 hs->nQmfBands = noBands;
174 hs->qmfBufferMove = HYBRID_FILTER_LENGTH - 1;
176 hs->mQmfBufferReal = (Int32 **)ptr;
179 hs->mQmfBufferImag = (Int32 **)ptr;
182 tmp = hs->qmfBufferMove; /* HYBRID_FILTER_LENGTH == 13 */
186 hs->mQmfBufferReal[i] = ptr
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
LinkedHashSetTest.java 29 LinkedHashSet hs; field in class:LinkedHashSetTest
86 assertTrue("LinkedHashSet does not contain correct elements", hs
97 int size = hs.size();
98 hs.add(new Integer(8));
99 assertTrue("Added element already contained by set", hs.size() == size);
100 hs.add(new Integer(-9));
102 hs.size() == size + 1);
103 assertTrue("Failed to add element to set", hs.contains(new Integer(-9)));
111 Set orgSet = (Set) hs.clone();
112 hs.clear()
    [all...]
HashSetTest.java 35 HashSet hs; field in class:HashSetTest
92 assertTrue("HashSet does not contain correct elements", hs
103 int size = hs.size();
104 hs.add(new Integer(8));
105 assertTrue("Added element already contained by set", hs.size() == size);
106 hs.add(new Integer(-9));
108 hs.size() == size + 1);
109 assertTrue("Failed to add element to set", hs.contains(new Integer(-9)));
117 Set orgSet = (Set) hs.clone();
118 hs.clear()
216 HashSet<String> hs = new HashSet<String>(); local
    [all...]
  /external/chromium/chrome/browser/
favicon_service.cc 23 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
24 if (hs)
25 hs->GetFavicon(request, icon_url, icon_type);
39 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
40 if (hs)
41 hs->UpdateFaviconMappingAndFetch(request, page_url, icon_url, icon_type);
60 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
61 if (hs)
62 hs->GetFaviconForURL(request, page_url, icon_types);
70 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS) local
77 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
86 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
HashSetTest.java 35 HashSet hs; field in class:HashSetTest
87 assertTrue("HashSet does not contain correct elements", hs
105 int size = hs.size();
106 hs.add(new Integer(8));
107 assertTrue("Added element already contained by set", hs.size() == size);
108 hs.add(new Integer(-9));
110 hs.size() == size + 1);
111 assertTrue("Failed to add element to set", hs.contains(new Integer(-9)));
119 Set orgSet = (Set) hs.clone();
120 hs.clear()
209 HashSet<String> hs = new HashSet<String>(); local
    [all...]
LinkedHashSetTest.java 32 LinkedHashSet hs; field in class:LinkedHashSetTest
97 assertTrue("LinkedHashSet does not contain correct elements", hs
115 int size = hs.size();
116 hs.add(new Integer(8));
117 assertTrue("Added element already contained by set", hs.size() == size);
118 hs.add(new Integer(-9));
120 hs.size() == size + 1);
121 assertTrue("Failed to add element to set", hs.contains(new Integer(-9)));
129 Set orgSet = (Set) hs.clone();
130 hs.clear()
    [all...]
  /dalvik/vm/alloc/
HeapSource.cpp 37 static size_t getMaximumSize(const HeapSource *hs);
184 static bool isSoftLimited(const HeapSource *hs)
192 return hs->softLimit <= hs->idealSize;
199 static size_t getAllocLimit(const HeapSource *hs)
201 if (isSoftLimited(hs)) {
202 return hs->softLimit;
204 return mspace_max_allowed_footprint(hs2heap(hs)->msp);
212 static size_t oldHeapOverhead(const HeapSource *hs, bool includeActive)
222 for (/* i = i */; i < hs->numHeaps; i++)
264 HeapSource* hs = gDvm.gcHeap->heapSource; local
279 HeapSource* hs = gDvm.gcHeap->heapSource; local
507 HeapSource *hs; local
608 HeapSource *hs = gHs; \/\/ use a local to avoid the implicit "volatile" local
641 HeapSource *hs = (*gcHeap)->heapSource; local
670 HeapSource *hs = gHs; local
707 HeapSource *hs = gHs; local
796 HeapSource *hs = gHs; local
861 HeapSource *hs = gHs; local
1000 HeapSource *hs = gHs; local
1090 HeapSource *hs = gHs; local
1105 HeapSource *hs = gHs; local
1147 HeapSource *hs = gHs; local
1187 HeapSource *hs = gHs; local
1200 HeapSource *hs = gHs; local
1252 HeapSource *hs = gHs; local
1310 HeapSource *hs = gHs; local
1348 HeapSource *hs = gHs; local
    [all...]
  /external/bluetooth/bluez/audio/
headset.c 288 static int headset_send_valist(struct headset *hs, char *format, va_list ap)
299 if (!hs->rfcomm) {
305 fd = g_io_channel_unix_get_fd(hs->rfcomm);
322 headset_send(struct headset *hs, char *format, ...)
328 ret = headset_send_valist(hs, format, ap);
336 struct headset *hs = device->headset; local
337 struct headset_slc *slc = hs->slc;
347 err = headset_send(hs, "\r\n+BRSF: %u\r\n", ag.features);
351 return headset_send(hs, "\r\nOK\r\n");
398 struct headset *hs = device->headset local
427 struct headset *hs = dev->headset; local
437 struct headset *hs = dev->headset; local
516 struct headset *hs = device->headset; local
562 struct headset *hs = dev->headset; local
617 struct headset *hs = dev->headset; local
660 struct headset *hs = dev->headset; local
689 struct headset *hs = device->headset; local
708 struct headset *hs = device->headset; local
767 struct headset *hs = dev->headset; local
844 struct headset *hs = device->headset; local
875 struct headset *hs = device->headset; local
893 struct headset *hs = device->headset; local
951 struct headset *hs = device->headset; local
998 struct headset *hs = device->headset; local
1065 struct headset *hs = device->headset; local
1084 struct headset *hs = device->headset; local
1114 struct headset *hs = device->headset; local
1150 struct headset *hs = device->headset; local
1170 struct headset *hs = device->headset; local
1252 struct headset *hs = device->headset; local
1271 struct headset *hs; local
1373 struct headset *hs = dev->headset; local
1478 struct headset *hs = dev->headset; local
1563 struct headset *hs = device->headset; local
1606 struct headset *hs = dev->headset; local
1656 struct headset *hs = device->headset; local
1675 struct headset *hs = device->headset; local
1695 struct headset *hs = device->headset; local
1733 struct headset *hs = device->headset; local
1761 struct headset *hs = device->headset; local
1796 struct headset *hs = device->headset; local
1819 struct headset *hs = device->headset; local
1859 struct headset *hs = device->headset; local
1884 struct headset *hs = device->headset; local
1910 struct headset *hs = device->headset; local
2137 struct headset *hs = dev->headset; local
2155 struct headset *hs = dev->headset; local
2176 struct headset *hs = dev->headset; local
2198 struct headset *hs; local
2287 struct headset *hs = dev->headset; local
2335 struct headset *hs = dev->headset; local
2370 struct headset *hs = dev->headset; local
2403 struct headset *hs = dev->headset; local
2434 struct headset *hs = dev->headset; local
2441 struct headset *hs = dev->headset; local
2448 struct headset *hs = dev->headset; local
2455 struct headset *hs = dev->headset; local
2467 struct headset *hs = dev->headset; local
2488 struct headset *hs = dev->headset; local
2600 struct headset *hs = dev->headset; local
2607 struct headset *hs = dev->headset; local
2614 struct headset *hs = dev->headset; local
2624 struct headset *hs = dev->headset; local
2631 struct headset *hs = dev->headset; local
2643 struct headset *hs = dev->headset; local
2680 struct headset *hs = dev->headset; local
2690 struct headset *hs = dev->headset; local
2701 struct headset *hs = dev->headset; local
2717 struct headset *hs = dev->headset; local
2734 struct headset *hs = dev->headset; local
2795 struct headset *hs; local
    [all...]
  /external/javassist/sample/hotswap/
Test.java 6 HotSwapper hs = new HotSwapper(8000); local
14 hs.reload("HelloWorld", bytes);
22 hs.reload("HelloWorld", bytes);
  /external/dropbear/
bignum.h 33 void sha1_process_mp(hash_state *hs, mp_int *mp);
random.c 134 hash_state hs; local
146 sha1_init(&hs);
147 sha1_process(&hs, (void*)hashpool, sizeof(hashpool));
148 sha1_process(&hs, (void*)readbuf, sizeof(readbuf));
149 sha1_done(&hs, hashpool);
161 hash_state hs; local
171 sha1_init(&hs);
172 sha1_process(&hs, (void*)hashpool, sizeof(hashpool));
173 sha1_process(&hs, (void*)&pid, sizeof(pid));
174 sha1_process(&hs, (void*)&tv, sizeof(tv))
181 hash_state hs; local
    [all...]
bignum.c 63 void sha1_process_mp(hash_state *hs, mp_int *mp) {
73 sha1_process(hs, buf_getptr(buf, i), i);
dss.c 168 hash_state hs; local
189 sha1_init(&hs);
190 sha1_process(&hs, data, len);
191 sha1_done(&hs, msghash);
313 hash_state hs; local
319 sha1_init(&hs);
320 sha1_process(&hs, data, len);
321 sha1_done(&hs, msghash);
328 sha512_init(&hs);
329 sha512_process(&hs, "the quick brown fox jumped over the lazy dog", 44)
    [all...]
common-kex.c 62 const hash_state * hs, unsigned const char X);
217 * already initialised hash_state hs, which should already have processed
225 const hash_state * hs, const unsigned char X) {
230 memcpy(&hs2, hs, sizeof(hash_state));
236 memcpy(&hs2, hs, sizeof(hash_state));
260 hash_state hs; local
268 sha1_init(&hs);
269 sha1_process_mp(&hs, ses.dh_K);
272 sha1_process(&hs, ses.hash, SHA1_HASH_SIZE);
295 hashkeys(C2S_IV, SHA1_HASH_SIZE, &hs, 'A')
519 hash_state hs; local
    [all...]
signkey.c 280 hash_state hs; local
285 md5_init(&hs);
288 md5_process(&hs, keyblob, keybloblen);
290 md5_done(&hs, hash);
315 hash_state hs; local
320 sha1_init(&hs);
323 sha1_process(&hs, keyblob, keybloblen);
325 sha1_done(&hs, hash);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
Constants.java 230 public static void logHeader(HeaderSet hs) {
231 Log.v(TAG, "Dumping HeaderSet " + hs.toString());
234 Log.v(TAG, "COUNT : " + hs.getHeader(HeaderSet.COUNT));
235 Log.v(TAG, "NAME : " + hs.getHeader(HeaderSet.NAME));
236 Log.v(TAG, "TYPE : " + hs.getHeader(HeaderSet.TYPE));
237 Log.v(TAG, "LENGTH : " + hs.getHeader(HeaderSet.LENGTH));
238 Log.v(TAG, "TIME_ISO_8601 : " + hs.getHeader(HeaderSet.TIME_ISO_8601));
239 Log.v(TAG, "TIME_4_BYTE : " + hs.getHeader(HeaderSet.TIME_4_BYTE));
240 Log.v(TAG, "DESCRIPTION : " + hs.getHeader(HeaderSet.DESCRIPTION));
241 Log.v(TAG, "TARGET : " + hs.getHeader(HeaderSet.TARGET))
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 55 HashSet<Integer> hs = new HashSet<Integer>(); local
56 hs.add(new Integer(0));
57 hs.add(new Integer(25));
58 hs.add(new Integer(99));
61 col.containsAll(hs));
62 hs.add(new Integer(100));
65 !col.containsAll(hs));
Support_UnmodifiableMapTest.java 113 HashSet<String> hs = new HashSet<String>(); local
114 hs.add("0");
115 hs.add("25");
116 hs.add("99");
119 keySet.containsAll(hs));
120 hs.add("100");
123 !keySet.containsAll(hs));
  /libcore/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 55 HashSet<Integer> hs = new HashSet<Integer>(); local
56 hs.add(new Integer(0));
57 hs.add(new Integer(25));
58 hs.add(new Integer(99));
61 col.containsAll(hs));
62 hs.add(new Integer(100));
65 !col.containsAll(hs));
Support_UnmodifiableMapTest.java 113 HashSet<String> hs = new HashSet<String>(); local
114 hs.add("0");
115 hs.add("25");
116 hs.add("99");
119 keySet.containsAll(hs));
120 hs.add("100");
123 !keySet.containsAll(hs));
  /external/libvpx/vp8/common/
onyx.h 73 static __inline void Scale2Ratio(int mode, int *hr, int *hs)
79 *hs = 1;
83 *hs = 5;
87 *hs = 5;
91 *hs = 2;
95 *hs = 1;
  /external/chromium/chrome/browser/extensions/
extension_history_api.cc 233 HistoryService* hs = profile()->GetHistoryService(Profile::EXPLICIT_ACCESS);
234 hs->QueryURL(url,
286 HistoryService* hs = profile()->GetHistoryService(Profile::EXPLICIT_ACCESS); local
287 hs->QueryHistory(search_text, options, &cancelable_consumer_,
320 HistoryService* hs = profile()->GetHistoryService(Profile::EXPLICIT_ACCESS);
321 hs->AddPage(url, history::SOURCE_EXTENSION);
338 HistoryService* hs = profile()->GetHistoryService(Profile::EXPLICIT_ACCESS);
339 hs->DeleteURL(url);
359 HistoryService* hs = profile()->GetHistoryService(Profile::EXPLICIT_ACCESS); local
360 hs->ExpireHistoryBetween
376 HistoryService* hs = profile()->GetHistoryService(Profile::EXPLICIT_ACCESS); local
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptProfiler.cpp 46 v8::HandleScope hs; local
52 v8::HandleScope hs; local
94 v8::HandleScope hs; local
  /external/qemu/hw/
usb-hid.c 407 static void usb_hid_changed(USBHIDState *hs)
409 hs->changed = 1;
411 if (hs->datain)
412 hs->datain(hs->datain_opaque);
418 USBHIDState *hs = opaque; local
419 USBMouseState *s = &hs->ptr;
426 usb_hid_changed(hs);
432 USBHIDState *hs = opaque; local
433 USBMouseState *s = &hs->ptr
445 USBHIDState *hs = opaque; local
    [all...]

Completed in 426 milliseconds

1 2 3 4 5