Searched refs:node (Results 1 – 12 of 12) sorted by relevance
/openssl-master/crypto/x509/ |
A D | pcy_node.c | 47 X509_POLICY_NODE *node; in ossl_policy_level_find_node() local 51 if (node->parent == parent) { in ossl_policy_level_find_node() 53 return node; in ossl_policy_level_find_node() 64 X509_POLICY_NODE *node; in ossl_policy_level_add_node() local 66 node = OPENSSL_zalloc(sizeof(*node)); in ossl_policy_level_add_node() 67 if (node == NULL) { in ossl_policy_level_add_node() 71 node->data = data; in ossl_policy_level_add_node() 72 node->parent = parent; in ossl_policy_level_add_node() 109 return node; in ossl_policy_level_add_node() 112 ossl_policy_node_free(node); in ossl_policy_level_add_node() [all …]
|
A D | pcy_tree.c | 60 X509_POLICY_NODE *node = in tree_print() local 330 if (node->nchild) in tree_link_unmatched() 361 X509_POLICY_NODE *node; in tree_link_any() local 391 X509_POLICY_NODE *node; in tree_prune() local 400 OPENSSL_free(node); in tree_prune() 411 if (node->nchild == 0) { in tree_prune() 413 OPENSSL_free(node); in tree_prune() 517 X509_POLICY_NODE *node; in tree_calculate_user_set() local 542 if (!node) { in tree_calculate_user_set() 599 if (node->data && (node->data->flags & POLICY_DATA_FLAG_EXTRA_NODE)) in exnode_free() [all …]
|
A D | pcy_lib.c | 86 const ASN1_OBJECT *X509_policy_node_get0_policy(const X509_POLICY_NODE *node) in X509_policy_node_get0_policy() argument 88 if (!node) in X509_policy_node_get0_policy() 90 return node->data->valid_policy; in X509_policy_node_get0_policy() 95 *node) in STACK_OF() 97 if (!node) in STACK_OF() 99 return node->data->qualifier_set; in STACK_OF() 103 *node) in X509_policy_node_get0_parent() argument 105 if (!node) in X509_policy_node_get0_parent() 107 return node->parent; in X509_policy_node_get0_parent()
|
A D | pcy_local.h | 134 #define node_critical(node) node_data_critical(node->data) argument 161 void ossl_policy_node_free(X509_POLICY_NODE *node); 163 const X509_POLICY_NODE *node, const ASN1_OBJECT *oid);
|
A D | v3_cpols.c | 484 void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent) in X509_POLICY_NODE_print() argument 486 const X509_POLICY_DATA *dat = node->data; in X509_POLICY_NODE_print()
|
/openssl-master/crypto/ |
A D | README-sparse_array.md | 7 The sparse array is represented using a tree structure. Each node in the 9 to another node. 48 index 0 results in the allocation of a top level node full of null pointers 74 Inserting at element 2N+1 creates a new root node and pushes down the old root 75 node. It then creates a second second level node to hold the pointer to the
|
A D | sparse_array.c | 70 static void sa_doall(const OPENSSL_SA *sa, void (*node)(void **), in sa_doall() 85 if (p != NULL && node != NULL) in sa_doall() 86 (*node)(p); in sa_doall()
|
/openssl-master/crypto/dso/ |
A D | dso_win32.c | 191 const char *node; member 229 result->node = start; in win32_splitter() 292 result->node = NULL; in win32_splitter() 313 if (file_split->node) { in win32_joiner() 341 if (file_split->node) { in win32_joiner() 344 strncpy(&result[offset], file_split->node, file_split->nodelen); in win32_joiner() 426 if (!filespec1_split->node && !filespec1_split->device) { in win32_merger() 427 filespec1_split->node = filespec2_split->node; in win32_merger()
|
/openssl-master/ |
A D | NOTES-NONSTOP.md | 51 NonStop node, managing the location of your build distribution is crucial. 164 node named `\CS3`:
|
/openssl-master/include/openssl/ |
A D | x509_vfy.h.in | 787 const ASN1_OBJECT *X509_policy_node_get0_policy(const X509_POLICY_NODE *node); 790 *X509_policy_node_get0_qualifiers(const X509_POLICY_NODE *node); 792 *X509_policy_node_get0_parent(const X509_POLICY_NODE *node);
|
A D | x509v3.h.in | 783 void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent);
|
/openssl-master/apps/lib/ |
A D | apps.c | 2023 X509_POLICY_NODE *node; in nodes_print() local 2030 node = sk_X509_POLICY_NODE_value(nodes, i); in nodes_print() 2031 X509_POLICY_NODE_print(bio_err, node, 2); in nodes_print()
|
Completed in 25 milliseconds