HomeSort by relevance Sort by last modified time
    Searched refs:store (Results 1 - 25 of 377) 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...]