Home
last modified time | relevance | path

Searched refs:store (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/external/e2fsprogs/tests/progs/test_data/
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 20000 3
[all …]
Dexpect.icount3 test_icount: store 0 0
4 store: Invalid argument passed to ext2 library while calling ext2fs_icount_store
11 test_icount: store 20001 0
12 store: Invalid argument passed to ext2 library while calling ext2fs_icount_store
23 test_icount: store 1 1
26 test_icount: store 1 2
29 test_icount: store 1 3
32 test_icount: store 1 1
35 test_icount: store 1 0
40 test_icount: store 20000 0
[all …]
/external/webkit/WebCore/platform/win/
DClipboardUtilitiesWin.cpp305 STGMEDIUM store; in getURL() local
311 } else if (SUCCEEDED(dataObject->GetData(urlWFormat(), &store))) { in getURL()
313 UChar* data = (UChar*)GlobalLock(store.hGlobal); in getURL()
315 GlobalUnlock(store.hGlobal); in getURL()
316 ReleaseStgMedium(&store); in getURL()
318 } else if (SUCCEEDED(dataObject->GetData(urlFormat(), &store))) { in getURL()
320 char* data = (char*)GlobalLock(store.hGlobal); in getURL()
322 GlobalUnlock(store.hGlobal); in getURL()
323 ReleaseStgMedium(&store); in getURL()
325 } else if (SUCCEEDED(dataObject->GetData(filenameWFormat(), &store))) { in getURL()
[all …]
/external/webkit/WebCore/bindings/v8/
DV8DOMMap.cpp144 DOMDataStore* store = list[i]; in visitDOMNodesInCurrentThread() local
145 if (!store->domData()->owningThread() == WTF::currentThread()) in visitDOMNodesInCurrentThread()
148 store->domNodeMap().visit(visitor); in visitDOMNodesInCurrentThread()
159 DOMDataStore* store = list[i]; in visitDOMObjectsInCurrentThread() local
160 if (!store->domData()->owningThread() == WTF::currentThread()) in visitDOMObjectsInCurrentThread()
163 store->domObjectMap().visit(visitor); in visitDOMObjectsInCurrentThread()
174 DOMDataStore* store = list[i]; in visitActiveDOMObjectsInCurrentThread() local
175 if (!store->domData()->owningThread() == WTF::currentThread()) in visitActiveDOMObjectsInCurrentThread()
178 store->activeDomObjectMap().visit(visitor); in visitActiveDOMObjectsInCurrentThread()
191 DOMDataStore* store = list[i]; in visitDOMSVGElementInstancesInCurrentThread() local
[all …]
DDOMData.h104 DOMDataStore* store = list[i]; in handleWeakObject() local
106 …pperMap<T>* domMap = static_cast<DOMDataStore::InternalDOMWrapperMap<T>*>(store->getDOMWrapperMap(… in handleWeakObject()
109 ASSERT(store->domData()->owningThread() == WTF::currentThread()); in handleWeakObject()
110 store->domData()->derefObject(V8DOMWrapper::domWrapperType(v8Object), domObject); in handleWeakObject()
DDOMDataStore.cpp168 DOMDataStore* store = list[i]; in weakNodeCallback() local
169 if (store->domNodeMap().removeIfPresent(node, v8Object)) { in weakNodeCallback()
170 ASSERT(store->domData()->owningThread() == WTF::currentThread()); in weakNodeCallback()
/external/openssl/crypto/store/
DREADME23 The intention is that a STORE should be able to store everything
24 needed by an application that wants a cert/key store, as well as
25 the data a CA might need to store (this includes the serial number
67 store_object - store an object and the attributes
81 update_store - update the internal data of the store
82 lock_store - lock the store
83 unlock_store - unlock the store
91 A few words on the store functions as well: update_store is
95 are used for locking a store to allow exclusive writes.
Dstr_mem.c274 struct mem_data_st *store = in mem_list_next() local
284 if (!store) in mem_list_next()
299 srch = sk_MEM_OBJECT_DATA_find_ex(store->data, &key); in mem_list_next()
315 srch < sk_MEM_OBJECT_DATA_num(store->data) in mem_list_next()
317 sk_MEM_OBJECT_DATA_value(store->data, srch)->attr_info) in mem_list_next()
319 sk_MEM_OBJECT_DATA_value(store->data, srch)->attr_info)); in mem_list_next()
325 return (sk_MEM_OBJECT_DATA_value(store->data, srch))->object; in mem_list_next()
Dstr_lib.c181 void STORE_free(STORE *store) in STORE_free() argument
183 if (store == NULL) in STORE_free()
185 if (store->meth->clean) in STORE_free()
186 store->meth->clean(store); in STORE_free()
187 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_STORE, store, &store->ex_data); in STORE_free()
188 OPENSSL_free(store); in STORE_free()
191 int STORE_ctrl(STORE *store, int cmd, long i, void *p, void (*f)(void)) in STORE_ctrl() argument
193 if (store == NULL) in STORE_ctrl()
198 if (store->meth->ctrl) in STORE_ctrl()
199 return store->meth->ctrl(store, cmd, i, p, f); in STORE_ctrl()
[all …]
/external/openssl/crypto/x509/
Dx509_vfy.c2000 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509, in X509_STORE_CTX_init() argument
2004 ctx->ctx=store; in X509_STORE_CTX_init()
2034 if (store) in X509_STORE_CTX_init()
2035 ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param); in X509_STORE_CTX_init()
2039 if (store) in X509_STORE_CTX_init()
2041 ctx->verify_cb = store->verify_cb; in X509_STORE_CTX_init()
2042 ctx->cleanup = store->cleanup; in X509_STORE_CTX_init()
2057 if (store && store->check_issued) in X509_STORE_CTX_init()
2058 ctx->check_issued = store->check_issued; in X509_STORE_CTX_init()
2062 if (store && store->get_issuer) in X509_STORE_CTX_init()
[all …]
/external/bouncycastle/src/main/java/org/bouncycastle/x509/
DExtendedPKIXParameters.java260 public void addStore(Store store) in addStore() argument
262 if (store != null) in addStore()
264 stores.add(store); in addStore()
282 public void addAdditionalStore(Store store) in addAdditionalStore() argument
284 if (store != null) in addAdditionalStore()
286 additionalStores.add(store); in addAdditionalStore()
293 public void addAddionalStore(Store store) in addAddionalStore() argument
295 addAdditionalStore(store); in addAddionalStore()
/external/proguard/src/proguard/evaluation/
DTracedVariables.java117 producerVariables.store(index, value); in setProducerValue()
165 public void store(int index, Value value) in store() method in TracedVariables
176 super.store(index, value); in store()
179 producerVariables.store(index, producerValue); in store()
184 producerVariables.store(index+1, producerValue); in store()
/external/libvpx/vp8/common/arm/neon/
Dmbloopfilter_neon.asm59 vst1.u8 {q4}, [r0] ; store op2
60 vst1.u8 {q5}, [r2] ; store op1
61 vst1.u8 {q6}, [r3], r1 ; store op0
63 vst1.u8 {q7}, [r3] ; store oq0
64 vst1.u8 {q8}, [r12], r1 ; store oq1
65 vst1.u8 {q9}, [r12] ; store oq2
116 vst1.u8 {d8}, [r0], r1 ; store u op2
117 vst1.u8 {d9}, [r3], r1 ; store v op2
118 vst1.u8 {d10}, [r0], r1 ; store u op1
119 vst1.u8 {d11}, [r3], r1 ; store v op1
[all …]
Dloopfilter_neon.asm56 vst1.u8 {q5}, [r0], r1 ; store op1
57 vst1.u8 {q6}, [r0], r1 ; store op0
58 vst1.u8 {q7}, [r0], r1 ; store oq0
59 vst1.u8 {q8}, [r0], r1 ; store oq1
110 vst1.u8 {d10}, [r0], r1 ; store u op1
111 vst1.u8 {d11}, [r2], r1 ; store v op1
112 vst1.u8 {d12}, [r0], r1 ; store u op0
113 vst1.u8 {d13}, [r2], r1 ; store v op0
114 vst1.u8 {d14}, [r0], r1 ; store u oq0
115 vst1.u8 {d15}, [r2], r1 ; store v oq0
[all …]
/external/kernel-headers/original/linux/
Dsysdev.h43 ssize_t (*store)(struct sysdev_class *, const char *, size_t); member
50 .store = _store, \
97 ssize_t (*store)(struct sys_device *, const char *, size_t); member
105 .store = _store, \
/external/webkit/JavaScriptCore/wtf/
DTCSpinLock.h84 mov eax, this ; store &lockword_ (which is this+0) in eax in Lock()
85 mov ebx, 1 ; store 1 in ebx in Lock()
87 mov r, ebx ; store old value of lockword_ in r in Lock()
116 mov eax, this ; store &lockword_ (which is this+0) in eax in Unlock()
164 mov r, ebx ; store old value of *lockword in r in TCMalloc_SlowLock()
/external/webkit/WebCore/loader/appcache/
DApplicationCacheStorage.h65 bool store(ApplicationCacheResource*, ApplicationCache*);
87 bool store(ApplicationCacheGroup*, GroupStorageIDJournal*);
88 bool store(ApplicationCache*, ResourceStorageIDJournal*);
89 bool store(ApplicationCacheResource*, unsigned cacheStorageID);
/external/openssl/apps/
Dcrl.c113 X509_STORE *store = NULL; in MAIN() local
240 store = X509_STORE_new(); in MAIN()
241 lookup=X509_STORE_add_lookup(store,X509_LOOKUP_file()); in MAIN()
246 lookup=X509_STORE_add_lookup(store,X509_LOOKUP_hash_dir()); in MAIN()
252 if(!X509_STORE_CTX_init(&ctx, store, NULL, NULL)) { in MAIN()
397 if(store) { in MAIN()
399 X509_STORE_free(store); in MAIN()
Dpkcs12.c82 int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain);
521 X509_STORE *store = X509_STORE_new(); in MAIN() local
522 if (!store) in MAIN()
527 if (!X509_STORE_load_locations(store, CAfile, CApath)) in MAIN()
528 X509_STORE_set_default_paths (store); in MAIN()
530 vret = get_cert_chain (ucert, store, &chain2); in MAIN()
531 X509_STORE_free(store); in MAIN()
827 int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain) in get_cert_chain() argument
836 X509_STORE_CTX_init(&store_ctx, store, cert, NULL); in get_cert_chain()
/external/libvpx/vp8/encoder/ppc/
Dencodemb_altivec.asm56 stvx v3, 0, r3 ;# store out diff
65 stvx v3, r10, r3 ;# store out diff
93 stvx v3, 0, r3 ;# store out diff
102 stvx v3, r10, r3 ;# store out diff
138 stvx v3, 0, r3 ;# store out diff
145 stvx v3, r10, r3 ;# store out diff
/external/v8/test/mjsunit/
Dmegamorphic-callbacks.js32 function store(o) { function
46 store(o);
65 store(o);
/external/v8/src/
Dfactory.cc920 Handle<FixedArray> store = NewFixedArray(JSRegExp::kAtomDataSize); in SetRegExpAtomData() local
922 store->set(JSRegExp::kTagIndex, Smi::FromInt(type)); in SetRegExpAtomData()
923 store->set(JSRegExp::kSourceIndex, *source); in SetRegExpAtomData()
924 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value())); in SetRegExpAtomData()
925 store->set(JSRegExp::kAtomPatternIndex, *data); in SetRegExpAtomData()
926 regexp->set_data(*store); in SetRegExpAtomData()
934 Handle<FixedArray> store = NewFixedArray(JSRegExp::kIrregexpDataSize); in SetRegExpIrregexpData() local
936 store->set(JSRegExp::kTagIndex, Smi::FromInt(type)); in SetRegExpIrregexpData()
937 store->set(JSRegExp::kSourceIndex, *source); in SetRegExpIrregexpData()
938 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags.value())); in SetRegExpIrregexpData()
[all …]
/external/libvpx/vp8/common/arm/armv6/
Dloopfilter_v6.asm176 str r9, [sp] ; store qs0 temporarily
177 str r8, [sp, #4] ; store ps0 temporarily
178 str r10, [sp, #8] ; store qs1 temporarily
179 str r7, [sp, #12] ; store ps1 temporarily
240 str r11, [src], pstep ; store op1
242 str r9, [src], pstep ; store op0 result
244 str r8, [src], pstep ; store oq0 result
246 str r10, [src], pstep ; store oq1
1010 str r7, [sp, #12] ; store ps1 temporarily
1012 str r10, [sp, #8] ; store qs1 temporarily
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_stretch.c69 unsigned char load, store; in generate_rowbytes() local
83 store = STORE_BYTE; in generate_rowbytes()
88 store = STORE_WORD; in generate_rowbytes()
108 *eip++ = store; in generate_rowbytes()
/external/chromium/net/base/
Dnetwork_change_notifier_mac.cc88 scoped_cftyperef<SCDynamicStoreRef> store( in NetworkChangeNotifierImpl() local
96 store.get(), in NetworkChangeNotifierImpl()
130 store.get(), notification_keys.get(), NULL)); in NetworkChangeNotifierImpl()

12345678910>>...12