Searched refs:store (Results 1 – 11 of 11) sorted by relevance
/system/core/libcutils/ |
D | threads.c | 20 void* thread_store_get( thread_store_t* store ) in thread_store_get() argument 22 if (!store->has_tls) in thread_store_get() 25 return pthread_getspecific( store->tls ); in thread_store_get() 28 extern void thread_store_set( thread_store_t* store, in thread_store_set() argument 32 pthread_mutex_lock( &store->lock ); in thread_store_set() 33 if (!store->has_tls) { in thread_store_set() 34 if (pthread_key_create( &store->tls, destroy) != 0) { in thread_store_set() 35 pthread_mutex_unlock(&store->lock); in thread_store_set() 38 store->has_tls = 1; in thread_store_set() 40 pthread_mutex_unlock( &store->lock ); in thread_store_set() [all …]
|
/system/core/fastbootd/ |
D | secure.c | 57 X509_STORE *store; in cert_store_from_path() local 66 if (!(store = X509_STORE_new())) { in cert_store_from_path() 71 lookup = X509_STORE_add_lookup(store,X509_LOOKUP_hash_dir()); in cert_store_from_path() 80 lookup = X509_STORE_add_lookup(store,X509_LOOKUP_file()); in cert_store_from_path() 93 return store; in cert_store_from_path() 131 int cert_verify(BIO *content, CMS_ContentInfo *content_info, X509_STORE *store, int *out_fd) { in cert_verify() argument 148 ret = CMS_verify(content_info, NULL ,store, content, output_temp, 0); in cert_verify()
|
D | secure.h | 45 static inline void cert_release_store(X509_STORE *store) { in cert_release_store() argument 46 X509_STORE_free(store); in cert_release_store() 50 int cert_verify(BIO *content, CMS_ContentInfo *content_info, X509_STORE *store, int *out_fd);
|
/system/core/fastbootd/commands/ |
D | flash.c | 125 X509_STORE *store = NULL; in flash_validate_certificate() local 135 store = cert_store_from_path(cert_path); in flash_validate_certificate() 136 if (store == NULL) { in flash_validate_certificate() 146 ret = cert_verify(content, content_info, store, data_fd); in flash_validate_certificate() 152 if (store != NULL) in flash_validate_certificate() 153 cert_release_store(store); in flash_validate_certificate()
|
/system/core/include/cutils/ |
D | threads.h | 65 extern void* thread_store_get(thread_store_t* store); 67 extern void thread_store_set(thread_store_t* store,
|
/system/core/libpixelflinger/codeflinger/ |
D | load_store.cpp | 31 void GGLAssembler::store(const pointer_t& addr, const pixel_t& s, uint32_t flags) in store() function in android::GGLAssembler
|
D | GGLAssembler.h | 381 void store(const pointer_t& addr, const pixel_t& src, uint32_t flags=0);
|
D | MIPSAssembler.h | 331 #pragma mark Load/store...
|
D | GGLAssembler.cpp | 306 store(parts.cbPtr, pixel, WRITE_BACK); in scanline_core()
|
D | MIPSAssembler.cpp | 1696 #pragma mark Load/store...
|
/system/core/rootdir/ |
D | init.rc | 152 # Create location for fs_mgr to store abbreviated output from filesystem
|