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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/progs/test_data/
test.icount 11 store 0 0
15 store 20001 0
21 # OK, now let's test fetch and store. We also test the boundary cases
25 store 1 1
27 store 1 2
29 store 1 3
31 store 1 1
33 store 1 0
36 store 20000 0
38 store 20000
    [all...]
  /system/core/libcutils/
threads.c 20 void* thread_store_get( thread_store_t* store )
22 const pthread_key_t k = store->tls;
24 if (!store->has_tls)
27 return pthread_getspecific( store->tls );
30 extern void thread_store_set( thread_store_t* store,
34 pthread_mutex_lock( &store->lock );
35 if (!store->has_tls) {
36 if (pthread_key_create( &store->tls, destroy) != 0) {
37 pthread_mutex_unlock(&store->lock);
40 store->has_tls = 1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/
PreferenceInitializer.java 75 IPreferenceStore store = DdmsPlugin.getDefault().getPreferenceStore(); local
77 store.setDefault(ATTR_DEBUG_PORT_BASE, DdmPreferences.DEFAULT_DEBUG_PORT_BASE);
79 store.setDefault(ATTR_SELECTED_DEBUG_PORT, DdmPreferences.DEFAULT_SELECTED_DEBUG_PORT);
81 store.setDefault(ATTR_DEFAULT_THREAD_UPDATE, DdmPreferences.DEFAULT_INITIAL_THREAD_UPDATE);
82 store.setDefault(ATTR_DEFAULT_HEAP_UPDATE,
85 store.setDefault(ATTR_THREAD_INTERVAL, DdmUiPreferences.DEFAULT_THREAD_REFRESH_INTERVAL);
88 store.setDefault(ATTR_IMAGE_SAVE_DIR, homeDir);
90 store.setDefault(ATTR_LOG_LEVEL, DdmPreferences.DEFAULT_LOG_LEVEL.getStringValue());
92 store.setDefault(ATTR_LOGCAT_FONT,
95 store.setDefault(ATTR_HPROF_ACTION, HProfHandler.ACTION_OPEN)
104 IPreferenceStore store = DdmsPlugin.getDefault().getPreferenceStore(); local
    [all...]
  /cts/tools/dex-tools/test/dex/reader/util/
SpecialJavaFileManager.java 36 private Map<String, MemoryByteCode> store; field in class:SpecialJavaFileManager
40 store = new HashMap<String, MemoryByteCode>();
46 store.put(name, mbc);
51 return new HashSet<MemoryByteCode>(store.values());
55 return store.get(className);
  /dalvik/vm/mterp/x86/
OP_CONST_WIDE_16.S 8 SET_VREG_WORD(rPC,%ecx,1) # store msw
10 SET_VREG_WORD(%eax,%ecx,0) # store lsw
OP_CONST_WIDE_32.S 8 SET_VREG_WORD(rPC,%ecx,1) # store msw
10 SET_VREG_WORD(%eax,%ecx,0) # store lsw
fpcvt.S 1 %default {"instr":"","load":"","store":""}
13 $store (rFP,%ecx,4) # vA<- %st0
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
DiscourseLoggerTest.java 125 DiscourseLogger store = new DiscourseLogger(storeSize); local
128 store.addSentCommand((String) o);
131 store.addReceivedByte(b);
137 MoreAsserts.assertEquals(expected, store.getLines());
140 store.logLastDiscourse();
141 assertEquals(0, store.getLines().length);
  /external/webkit/WebCore/bindings/v8/
V8DOMMap.cpp 144 DOMDataStore* store = list[i]; local
145 if (!store->domData()->owningThread() == WTF::currentThread())
148 store->domNodeMap().visit(visitor);
159 DOMDataStore* store = list[i]; local
160 if (!store->domData()->owningThread() == WTF::currentThread())
163 store->domObjectMap().visit(visitor);
174 DOMDataStore* store = list[i]; local
175 if (!store->domData()->owningThread() == WTF::currentThread())
178 store->activeDomObjectMap().visit(visitor);
191 DOMDataStore* store = list[i] local
206 DOMDataStore* store = list[i]; local
    [all...]
  /external/webkit/WebCore/platform/win/
ClipboardUtilitiesWin.cpp 305 STGMEDIUM store; local
311 } else if (SUCCEEDED(dataObject->GetData(urlWFormat(), &store))) {
313 UChar* data = (UChar*)GlobalLock(store.hGlobal);
315 GlobalUnlock(store.hGlobal);
316 ReleaseStgMedium(&store);
318 } else if (SUCCEEDED(dataObject->GetData(urlFormat(), &store))) {
320 char* data = (char*)GlobalLock(store.hGlobal);
322 GlobalUnlock(store.hGlobal);
323 ReleaseStgMedium(&store);
325 } else if (SUCCEEDED(dataObject->GetData(filenameWFormat(), &store))) {
357 STGMEDIUM store; local
    [all...]
  /frameworks/base/core/java/android/os/
LatencyTimer.java 42 volatile HashMap<String, long[]> store = new HashMap<String, long[]>(); field in class:LatencyTimer
81 long[] data = store.get(tag);
83 synchronized(store) {
84 data = store.get(tag);
87 store.put(tag, data);
  /dalvik/vm/mterp/x86-atom/
OP_DOUBLE_TO_FLOAT.S 24 * and store the result in the destination register
35 fstps (rFP, %edx, 4) # store float
OP_FLOAT_TO_DOUBLE.S 24 * and store the result in the destintation register
35 fstpl (rFP, %edx, 4) # store double
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapElementTest.java 17 package com.android.email.mail.store.imap;
19 import com.android.email.mail.store.imap.ImapElement;
  /bionic/libc/kernel/common/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /development/ndk/platforms/android-3/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /external/kernel-headers/original/linux/
sysdev.h 43 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
50 .store = _store, \
97 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
105 .store = _store, \
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheStorage.h 65 bool store(ApplicationCacheResource*, ApplicationCache*);
87 bool store(ApplicationCacheGroup*, GroupStorageIDJournal*);
88 bool store(ApplicationCache*, ResourceStorageIDJournal*);
89 bool store(ApplicationCacheResource*, unsigned cacheStorageID);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
sysdev.h 32 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
55 ssize_t (*store)(struct sys_device *, const char *, size_t); member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /cts/apps/CtsVerifier/jni/audioquality/
LinearityTest.cpp 40 static void bubbleUp(int* store, int n, short val) {
41 if (val < store[n])
44 if (val >= store[i]) {
46 store[j] = store[j-1];
47 store[i] = val;

Completed in 1329 milliseconds

1 2 3 4 5 6 7 8 91011>>