Searched refs:store (Results 1 - 25 of 118) sorted by relevance

12345

/external/e2fsprogs/tests/progs/test_data/
H A Dtest.icount11 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 2000
[all...]
/external/webkit/WebCore/bindings/v8/
H A DV8DOMMap.cpp144 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 local
206 DOMDataStore* store = list[i]; local
[all...]
H A DDOMData.h104 DOMDataStore* store = list[i]; local
106 DOMDataStore::InternalDOMWrapperMap<T>* domMap = static_cast<DOMDataStore::InternalDOMWrapperMap<T>*>(store->getDOMWrapperMap(mapType));
109 ASSERT(store->domData()->owningThread() == WTF::currentThread());
110 store->domData()->derefObject(V8DOMWrapper::domWrapperType(v8Object), domObject);
H A DDOMDataStore.cpp168 DOMDataStore* store = list[i]; local
169 if (store->domNodeMap().removeIfPresent(node, v8Object)) {
170 ASSERT(store->domData()->owningThread() == WTF::currentThread());
/external/webkit/WebCore/platform/win/
H A DClipboardUtilitiesWin.cpp305 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...]
/external/v8/test/mjsunit/
H A Dmegamorphic-callbacks.js32 function store(o) { function
46 store(o);
62 // Perform the store checks.
64 assertEquals(200, o.y_mirror, "normal store");
65 store(o);
66 assertEquals(42, o.y_mirror, "ic store");
/external/icu4c/tools/gensprep/
H A DMakefile5 LOCAL_SRC_FILES := gensprep.c store.c
/external/kernel-headers/original/linux/
H A Dsysdev.h43 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/apache-http/src/org/apache/http/client/protocol/
H A DClientContextConfigurer.java60 public void setCookieStore(final CookieStore store) { argument
61 this.context.setAttribute(COOKIE_STORE, store);
/external/e2fsprogs/tests/progs/
H A Dtest_icount_cmds.ct26 store;
/external/icu4c/tools/genbidi/
H A DMakefile6 LOCAL_SRC_FILES := genbidi.c store.c
/external/icu4c/tools/gencase/
H A DMakefile5 LOCAL_SRC_FILES := gencase.c store.c
/external/icu4c/tools/gennorm/
H A DMakefile5 LOCAL_SRC_FILES := gennorm.c store.c
/external/icu4c/tools/genprops/
H A DMakefile5 LOCAL_SRC_FILES := genprops.c props2.c store.c
/external/webkit/LayoutTests/http/tests/appcache/resources/
H A Dversioned-manifest.php34 print("uncacheable-resource.php\n"); // with Cache-control: no-store
/external/webkit/WebCore/loader/appcache/
H A DApplicationCacheStorage.h65 bool store(ApplicationCacheResource*, ApplicationCache*);
87 bool store(ApplicationCacheGroup*, GroupStorageIDJournal*);
88 bool store(ApplicationCache*, ResourceStorageIDJournal*);
89 bool store(ApplicationCacheResource*, unsigned cacheStorageID);
/external/proguard/src/proguard/evaluation/
H A DTracedVariables.java35 * to the most recent variable that has been initialized by a store operation.
72 * Sets the Value that will be stored along with all store instructions.
117 producerVariables.store(index, value);
165 public void store(int index, Value value) method in class:TracedVariables
167 // Is this store operation an initialization of the variable?
176 super.store(index, value);
179 producerVariables.store(index, producerValue);
184 producerVariables.store(index+1, producerValue);
/external/openssl/crypto/store/
H A Dstr_locl.h1 /* crypto/store/str_locl.h -*- mode:C; c-file-style: "eay" -*- */
63 #include <openssl/store.h>
102 /* Store-level function to get exclusive access to the store. */
104 /* Store-level function to release exclusive access to the store. */
H A Dstr_mem.c1 /* crypto/store/str_mem.c -*- mode:C; c-file-style: "eay" -*- */
63 /* The memory store is currently highly experimental. It's meant to become
64 a base store used by other stores for internal caching (for full caching
133 "OpenSSL memory store interface",
212 will then find the first matching element in the store, and then
213 walk all the way to the end of the store (since any combination
269 struct mem_data_st *store = local
279 if (!store)
291 srch = sk_find_ex(store->data, (char *)&key);
307 srch < sk_num(store
[all...]
H A DMakefile2 # OpenSSL/crypto/store/Makefile
5 DIR= store
26 #EXHEADER= store.h str_compat.h
27 EXHEADER= store.h
84 str_err.o: ../../include/openssl/store.h ../../include/openssl/symhacks.h
97 str_lib.o: ../../include/openssl/stack.h ../../include/openssl/store.h
105 str_mem.o: ../../include/openssl/store.h ../../include/openssl/symhacks.h
111 str_meth.o: ../../include/openssl/store.h ../../include/openssl/symhacks.h
/external/webkit/JavaScriptCore/wtf/
H A DTCSpinLock.h84 mov eax, this ; store &lockword_ (which is this+0) in eax
85 mov ebx, 1 ; store 1 in ebx
87 mov r, ebx ; store old value of lockword_ in r
116 mov eax, this ; store &lockword_ (which is this+0) in eax
164 mov r, ebx ; store old value of *lockword in r
/external/openssl/crypto/x509/
H A Dx509_vfy.c196 * we can find it in the store. We must have an exact
212 /* We have a match: replace certificate with store version
231 /* We now lookup certs from the certificate store */
1347 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509, argument
1351 ctx->ctx=store;
1380 if (store)
1381 ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param);
1385 if (store)
1387 ctx->verify_cb = store->verify_cb;
1388 ctx->cleanup = store
[all...]
/external/openssl/apps/
H A Dcrl.c113 X509_STORE *store = NULL; local
240 store = X509_STORE_new();
241 lookup=X509_STORE_add_lookup(store,X509_LOOKUP_file());
246 lookup=X509_STORE_add_lookup(store,X509_LOOKUP_hash_dir());
252 if(!X509_STORE_CTX_init(&ctx, store, NULL, NULL)) {
254 "Error initialising X509 store\n");
397 if(store) {
399 X509_STORE_free(store);
/external/stlport/src/
H A Dsparc_atomic.s36 add %o2, 0x1, %o3 ! Increment and store current
58 sub %o2, 0x1, %o3 ! decrement and store current
H A Dsparc_atomic64.s34 addx %o2, 0x1, %o3 ! Increment and store current
54 subx %o2, 0x1, %o3 ! decrement and store current

Completed in 241 milliseconds

12345