Searched defs:name_list (Results 1 - 6 of 6) sorted by relevance
/external/chromium_org/third_party/openssl/openssl/ssl/ |
H A D | ssl_cert.c | 568 static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list,STACK_OF(X509_NAME) *name_list) 573 *ca_list=name_list; 595 void SSL_set_client_CA_list(SSL *s,STACK_OF(X509_NAME) *name_list) argument 597 set_client_CA_list(&(s->client_CA),name_list); 600 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx,STACK_OF(X509_NAME) *name_list) argument 602 set_client_CA_list(&(ctx->client_CA),name_list);
|
/external/openssl/ssl/ |
H A D | ssl_cert.c | 548 static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list,STACK_OF(X509_NAME) *name_list) 553 *ca_list=name_list; 575 void SSL_set_client_CA_list(SSL *s,STACK_OF(X509_NAME) *name_list) argument 577 set_client_CA_list(&(s->client_CA),name_list); 580 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx,STACK_OF(X509_NAME) *name_list) argument 582 set_client_CA_list(&(ctx->client_CA),name_list);
|
/external/oprofile/libutil/ |
H A D | op_file.c | 115 int get_matching_pathnames(void * name_list, get_pathname_callback getpathname, argument 155 getpathname(ent->d_name, name_list); 163 name_list, getpathname, 166 getpathname(name, name_list); 178 * name_list and quit; else, recurse. 181 getpathname(name, name_list); 184 name_list, getpathname,
|
/external/oprofile/libutil++/ |
H A D | file_manip.cpp | 114 static void get_pathname(const char * pathname, void * name_list) argument 116 list<string> * file_list = (list<string> *)name_list;
|
/external/oprofile/opjitconv/ |
H A D | opjitconv.c | 88 static void get_pathname(char const * pathname, void * name_list) argument 90 struct list_head * names = (struct list_head *) name_list;
|
/external/chromium_org/chrome/third_party/mozilla_security_manager/ |
H A D | nsNSSCertHelper.cpp | 563 CERTGeneralName* name_list) { 565 CERTGeneralName* current = name_list; 573 } while (current != name_list); 578 CERTGeneralName* name_list; local 583 name_list = CERT_DecodeAltNameExtension(arena.get(), extension_data); 584 if (!name_list) 587 return ProcessGeneralNames(arena.get(), name_list); 562 ProcessGeneralNames(PRArenaPool* arena, CERTGeneralName* name_list) argument
|
Completed in 158 milliseconds