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

/system/core/libcutils/
H A Dthreads.c20 void* thread_store_get( thread_store_t* store )
22 if (!store->has_tls)
25 return pthread_getspecific( store->tls );
28 extern void thread_store_set( thread_store_t* store, argument
32 pthread_mutex_lock( &store->lock );
33 if (!store->has_tls) {
34 if (pthread_key_create( &store->tls, destroy) != 0) {
35 pthread_mutex_unlock(&store->lock);
38 store->has_tls = 1;
40 pthread_mutex_unlock( &store
56 thread_store_set( thread_store_t* store, void* value, thread_store_destruct_t destroy ) argument
[all...]
/system/core/fastbootd/
H A Dsecure.h45 static inline void cert_release_store(X509_STORE *store) { argument
46 X509_STORE_free(store);
50 int cert_verify(BIO *content, CMS_ContentInfo *content_info, X509_STORE *store, int *out_fd);
H A Dsecure.c57 X509_STORE *store; local
66 if (!(store = X509_STORE_new())) {
71 lookup = X509_STORE_add_lookup(store,X509_LOOKUP_hash_dir());
80 lookup = X509_STORE_add_lookup(store,X509_LOOKUP_file());
93 return store;
131 int cert_verify(BIO *content, CMS_ContentInfo *content_info, X509_STORE *store, int *out_fd) { argument
148 ret = CMS_verify(content_info, NULL ,store, content, output_temp, 0);
/system/core/fastbootd/commands/
H A Dflash.c125 X509_STORE *store = NULL; local
135 store = cert_store_from_path(cert_path);
136 if (store == NULL) {
137 D(ERR, "unable to create certification store");
146 ret = cert_verify(content, content_info, store, data_fd);
152 if (store != NULL)
153 cert_release_store(store);
/system/core/include/cutils/
H A Dthreads.h65 extern void* thread_store_get(thread_store_t* store);
67 extern void thread_store_set(thread_store_t* store,
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.h202 enum { //load/store flags
380 // load/store stuff
381 void store(const pointer_t& addr, const pixel_t& src, uint32_t flags=0);
H A DMIPSAssembler.h203 AMODE_IMM_12_PRE, AMODE_IMM_12_POST, // for load/store
331 #pragma mark Load/store...
H A Dload_store.cpp31 void GGLAssembler::store(const pointer_t& addr, const pixel_t& s, uint32_t flags) function in class:android::GGLAssembler
H A DGGLAssembler.cpp305 comment("store");
306 store(parts.cbPtr, pixel, WRITE_BACK);
H A DMIPSAssembler.cpp846 // If we will writeback, then update the index reg, then store.
851 // No writeback so store offset by value
1696 #pragma mark Load/store...

Completed in 188 milliseconds