| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | X509_cmp.pod | 24 This set of functions are used to compare X509 objects, including X509 25 certificates, X509 CRL objects and various values in an X509 certificate. 27 The X509_cmp() function compares two B<X509> objects indicated by parameters 29 values of two B<X509> objects and the canonical (DER) encoding values. 31 The X509_NAME_cmp() function compares two B<X509_NAME> objects indicated by 33 the canonical (DER) encoding values of the two objects. L<i2d_X509_NAME(3)> 37 values in the given B<X509> objects B<a> and B<b>. 41 issuer names and subject names of the X<509> objects, or issuers of B<X509_CRL> 42 objects, respectively. 44 The X509_CRL_match() function compares two B<X509_CRL> objects. Unlike the [all …]
|
| H A D | SSL_SESSION_free.pod | 37 SSL_SESSION objects are allocated, when a TLS/SSL handshake operation 40 the SSL_SESSION objects are internally referenced by the SSL_CTX and 41 linked into its session cache. SSL objects may be using the SSL_SESSION object; 42 as a session may be reused, several SSL objects may be using one SSL_SESSION 52 SSL_SESSION_free() must only be called for SSL_SESSION objects, for 57 It must not be called on other SSL_SESSION objects, as this would cause
|
| H A D | OBJ_nid2obj.pod | 13 #include <openssl/objects.h> 95 OBJ_cleanup() releases any resources allocated by creating new objects. 100 identifier (NID) associated with them. A standard set of objects is 102 in the header file B<objects.h>. 110 New objects can be added by calling OBJ_create(). 112 Table objects have certain advantages over other objects: for example 123 Some objects are used to represent algorithms which do not have a
|
| H A D | OSSL_STORE_INFO.pod | 14 OSSL_STORE_INFO_new_CRL - Functions to manipulate OSSL_STORE_INFO objects 51 supported objects from B<OSSL_STORE_INFO> objects and for scheme specific 57 the objects that have been retrieved by OSSL_STORE_load() and similar 97 Additionally, for B<OSSL_STORE_INFO_NAME>` objects, 116 used by the application to get the objects in that file. 126 for the storage where the object (or collection of objects) resides.
|
| H A D | X509_LOOKUP_hash_dir.pod | 38 file into memory cache of B<X509_STORE> objects which given B<ctx> 44 or CRL object (while PEM can contain several concatenated PEM objects) 53 Functions return number of objects loaded from file or 0 in case of 94 more objects with the same hash beyond the first missing number in the 120 the number of loaded objects or 0 on error.
|
| H A D | SSL_CTX_ctrl.pod | 5 …allback_ctrl, SSL_ctrl, SSL_callback_ctrl - internal handling functions for SSL_CTX and SSL objects 20 the SSL_CTX and SSL objects. Depending on the command B<cmd> the arguments
|
| H A D | d2i_SSL_SESSION.pod | 20 SSL_SESSION objects keep internal link information about the session cache 23 only be used with one SSL_CTX object (and the SSL objects created
|
| H A D | SSL_CTX_set_ssl_version.pod | 18 SSL_CTX_set_ssl_version() sets a new default TLS/SSL B<method> for SSL objects 19 newly created from this B<ctx>. SSL objects already created with
|
| H A D | OSSL_STORE_open.pod | 7 OSSL_STORE_close - Types and functions to read objects from a URI 30 These functions help the application to fetch supported objects (see 91 Note that it may still be meaningful to try and load more objects, unless 120 relevant for PKCS#12 objects.
|
| H A D | X509_digest.pod | 10 - get digest of various objects 42 of their entire B<data> objects.
|
| /freebsd-12.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | object_pool.c | 76 apr_hash_t *objects; member 116 for (hi = apr_hash_first(subpool, object_pool->objects); in remove_unused_objects() 126 apr_hash_set(object_pool->objects, object_ref->key.data, in remove_unused_objects() 193 = apr_hash_get(object_pool->objects, key->data, key->size); in lookup() 221 = apr_hash_get(object_pool->objects, key->data, key->size); in insert() 241 apr_hash_set(object_pool->objects, object_ref->key.data, in insert() 257 > apr_hash_count(object_pool->objects) + 2) in insert() 280 result->objects = svn_hash__make(result->pool); in svn_object_pool__create()
|
| /freebsd-12.1/sys/dev/drm2/i915/ |
| H A D | i915_gem_execbuffer.c | 413 struct list_head *objects) in i915_gem_execbuffer_reserve() argument 421 while (!list_empty(objects)) { in i915_gem_execbuffer_reserve() 425 obj = list_first_entry(objects, in i915_gem_execbuffer_reserve() 513 struct list_head *objects, in i915_gem_execbuffer_relocate_slow() argument 524 while (!list_empty(objects)) { in i915_gem_execbuffer_relocate_slow() 525 obj = list_first_entry(objects, in i915_gem_execbuffer_relocate_slow() 667 struct list_head *objects) in i915_gem_execbuffer_move_to_gpu() argument 842 struct list_head objects; in i915_gem_do_execbuffer() local 1003 INIT_LIST_HEAD(&objects); in i915_gem_do_execbuffer() 1045 &objects, eb, in i915_gem_do_execbuffer() [all …]
|
| /freebsd-12.1/contrib/libucl/doc/ |
| H A D | api.md | 34 - [Primitive objects generation](#primitive-objects-generation) 47 Libucl is a parser and `C` API to parse and generate `ucl` objects. Libucl consist of several group… 53 Convert `ucl` objects to some textual or binary representation. Currently, libucl supports the foll… 63 …w creation of `ucl` objects from C types and creating of complex `ucl` objects, such as hashes or … 246 Libucl can transform UCL objects to a number of tectual formats: 280 Libucl provides the following functions for emitting UCL objects: 321 …ate UCL objects from C primitive types. Moreover, libucl allows creation and modifying complex UCL… 348 ## Primitive objects generation 409 … iterators are defined to clarify iterating over UCL objects and simplify flattening of UCL object… 413 1. Iteration over complex objects with expanding all values [all …]
|
| H A D | lua_api.md | 3 This lua module allows to parse objects from strings and to store data into 4 ucl objects. It uses `libucl` C library to parse and manipulate with ucl objects. 69 - *scalar* values are directly presented by lua objects 70 - *userdata* values are converted to lua function objects using `LUA_REGISTRYINDEX`, 73 - *objects* are converted to lua tables with string indicies
|
| /freebsd-12.1/crypto/openssl/doc/man7/ |
| H A D | passphrase-encoding.pod | 21 and stick to that throughout the lifetime of affected objects. 81 L<ossl_store(7)> acts as a general interface to access all kinds of objects, 105 This is particularly relevant for PKCS#12 objects, where human readable pass 107 For other objects, it's as legitimate to use any byte sequence (such as a 112 =head2 Creating new objects 114 For creating new pass phrase protected objects, make sure the pass phrase is 122 =head2 Opening existing objects 124 For opening pass phrase protected objects where you know what character 128 For opening pass phrase protected objects where the character encoding that was
|
| /freebsd-12.1/crypto/openssl/crypto/objects/ |
| H A D | README | 1 objects.txt syntax 4 To cover all the naming hacks that were previously in objects.h needed some 5 kind of hacks in objects.txt.
|
| /freebsd-12.1/contrib/gcclibs/libiberty/ |
| H A D | obstacks.texi | 5 An @dfn{obstack} is a pool of memory containing a stack of objects. You 6 can create any number of separate obstacks, and then allocate objects in 12 general: an obstack can contain any number of objects of any size. They 21 * Allocation in an Obstack:: Allocating objects in an obstack. 22 * Freeing Obstack Objects:: Freeing objects in an obstack. 27 complicated) growing objects. 64 The objects in the obstack are packed into large blocks called 91 the chunks of memory into which objects are packed. The other, 325 @cindex growing objects (in obstacks) 432 @cindex shrinking objects [all …]
|
| /freebsd-12.1/contrib/binutils/libiberty/ |
| H A D | obstacks.texi | 5 An @dfn{obstack} is a pool of memory containing a stack of objects. You 6 can create any number of separate obstacks, and then allocate objects in 12 general: an obstack can contain any number of objects of any size. They 21 * Allocation in an Obstack:: Allocating objects in an obstack. 22 * Freeing Obstack Objects:: Freeing objects in an obstack. 27 complicated) growing objects. 64 The objects in the obstack are packed into large blocks called 91 the chunks of memory into which objects are packed. The other, 325 @cindex growing objects (in obstacks) 432 @cindex shrinking objects [all …]
|
| /freebsd-12.1/contrib/libucl/ |
| H A D | ChangeLog.md | 5 - Streamline emitter has been added, so it is now possible to output partial `ucl` objects 13 - Allow userdata objects to be emitted and destructed 14 - Use userdata objects to store lua function references
|
| H A D | README.md | 101 …t of quotes for strings and keys, moreover, `:` may be replaced `=` or even be skipped for objects: 146 UCL accepts named keys and organize them into objects hierarchy internally. Here is an example of t… 169 Plain definitions may be more complex and contain more than a single level of nested objects: 277 …ith less priority it is ignored completely, and if we have two duplicate objects with the same pri… 282 Priorities are used by UCL parser to manage the policy of objects rewriting during including other … 285 * If we have two objects with the same priority then we form an implicit array 291 rewrite keys from the objects with lower priorities as specified by the policy. 310 …e multiline strings as well as single line ones. It uses shell/perl like notation for such objects: 347 …objects. It uses the same schema that is used for json: [json schema v4](http://json-schema.org). …
|
| /freebsd-12.1/contrib/serf/ |
| H A D | design-guide.txt | 33 disable mutexes within APR objects where applicable (e.g. pools that 36 The objects should not have any thread affinity (i.e. don't use 38 mutexes to guard entry to the serf objects, which then allows the 39 objects to be used from multiple threads. 61 set of objects, which is problematic if some are still in use.
|
| /freebsd-12.1/include/rpcsvc/ |
| H A D | nis.x | 142 nis_object objects<>; /* objects found */ 407 %#define NIS_RES_NUMOBJ(x) ((x)->objects.objects_len) 408 %#define NIS_RES_OBJECT(x) ((x)->objects.objects_val)
|
| /freebsd-12.1/contrib/elftoolchain/ |
| H A D | README.rst | 11 - managing program objects conforming to the ELF_ object format, and 12 - for managing DWARF_ debugging information in ELF objects. 35 strip Discard information from ELF objects.
|
| /freebsd-12.1/contrib/compiler-rt/lib/lsan/ |
| H A D | lsan_flags.inc | 21 "Print addresses of leaked objects after main leak report.") 24 "Aggregate two objects into one leak if this many stack frames match. If "
|
| /freebsd-12.1/contrib/ntp/ntpsnmpd/ |
| H A D | README | 18 which should give you a list of all currently supported NTP MIB objects and their current values 24 In its current state the daemon supports these objects:
|