| /freebsd/crypto/openssl/doc/ |
| H A D | build.info | 3 DEPEND[html/man1/CA.pl.html]=man1/CA.pl.pod 4 GENERATE[html/man1/CA.pl.html]=man1/CA.pl.pod 5 DEPEND[man/man1/CA.pl.1]=man1/CA.pl.pod 6 GENERATE[man/man1/CA.pl.1]=man1/CA.pl.pod 7 DEPEND[html/man1/openssl-asn1parse.html]=man1/openssl-asn1parse.pod 8 GENERATE[html/man1/openssl-asn1parse.html]=man1/openssl-asn1parse.pod 9 DEPEND[man/man1/openssl-asn1parse.1]=man1/openssl-asn1parse.pod 10 GENERATE[man/man1/openssl-asn1parse.1]=man1/openssl-asn1parse.pod 11 DEPEND[man1/openssl-asn1parse.pod]{pod}=man1/openssl-asn1parse.pod.in 12 GENERATE[man1/openssl-asn1parse.pod]=man1/openssl-asn1parse.pod.in [all …]
|
| H A D | build.info.in | 16 map { $_ => 1 } glob catfile($sourcedir, "man$section", "*.pod"); 18 map { $_ => 1 } glob catfile($sourcedir, "man$section", "*.pod.in"); 27 my $podname = basename($podfile, '.pod'); 30 my $podname = basename($podfile, ".pod"); 64 DEPEND[$podfile]{pod}=$podinfile
|
| H A D | README.md | 13 The openssl command-line tools; start with openssl.pod 22 Overviews; start with crypto.pod and ssl.pod, for example
|
| /freebsd/crypto/ |
| H A D | .gitignore | 19 # .pod files generated from .pod.in files. 23 # % find openssl/doc -name \*.pod.in | sed -e 's,\.in,,g' 24 openssl/doc/man1/openssl-asn1parse.pod 25 openssl/doc/man1/openssl-ca.pod 26 openssl/doc/man1/openssl-ciphers.pod 27 openssl/doc/man1/openssl-cmds.pod 28 openssl/doc/man1/openssl-cmp.pod 29 openssl/doc/man1/openssl-cms.pod 30 openssl/doc/man1/openssl-crl.pod 31 openssl/doc/man1/openssl-crl2pkcs7.pod [all …]
|
| /freebsd/crypto/openssl/doc/man1/ |
| H A D | build.info | 1 # All .pod.in files are detected by build.info in the parent directory, and 5 DEPEND[openssl-asn1parse.pod]=../perlvars.pm 6 DEPEND[openssl-ca.pod]=../perlvars.pm 7 DEPEND[openssl-ciphers.pod]=../perlvars.pm 8 DEPEND[openssl-cmds.pod]=../perlvars.pm 9 DEPEND[openssl-cmp.pod]=../perlvars.pm 10 DEPEND[openssl-cms.pod]=../perlvars.pm 11 DEPEND[openssl-crl2pkcs7.pod]=../perlvars.pm 12 DEPEND[openssl-crl.pod]=../perlvars.pm 13 DEPEND[openssl-dgst.pod]=../perlvars.pm [all …]
|
| /freebsd/contrib/ntp/sntp/libopts/ |
| H A D | putshell.c | 258 print_enumeration(tOptions * pOpts, tOptDesc * pOD) in print_enumeration() argument 260 uintptr_t e_val = pOD->optArg.argEnum; in print_enumeration() 261 printf(OPT_VAL_FMT, pOpts->pzPROGNAME, pOD->pz_NAME); in print_enumeration() 266 (*(pOD->pOptProc))(OPTPROC_RETURN_VALNAME, pOD); in print_enumeration() 267 printf(QUOT_ARG_FMT, pOD->optArg.argString); in print_enumeration() 268 if (pOD->fOptState & OPTST_ALLOC_ARG) in print_enumeration() 269 AGFREE(pOD->optArg.argString); in print_enumeration() 270 pOD->optArg.argEnum = e_val; in print_enumeration() 272 printf(OPT_END_FMT, pOpts->pzPROGNAME, pOD->pz_NAME); in print_enumeration() 276 print_membership(tOptions * pOpts, tOptDesc * pOD) in print_membership() argument [all …]
|
| H A D | file.c | 38 * @param pOD the option descriptor 41 check_existence(teOptFileType ftype, tOptions * pOpts, tOptDesc * pOD) in check_existence() argument 43 char const * fname = pOD->optArg.argString; in check_existence() 98 * @param pOD the option descriptor 102 open_file_fd(tOptions * pOpts, tOptDesc * pOD, tuFileMode mode) in open_file_fd() argument 104 int fd = open(pOD->optArg.argString, mode.file_flags); in open_file_fd() 106 fserr_exit(pOpts->pzProgName, "open", pOD->optArg.argString); in open_file_fd() 109 if ((pOD->fOptState & OPTST_ALLOC_ARG) != 0) in open_file_fd() 110 pOD->optCookie = VOIDP(pOD->optArg.argString); in open_file_fd() 112 AGDUPSTR(pOD->optCookie, pOD->optArg.argString, "file name"); in open_file_fd() [all …]
|
| H A D | reset.c | 33 optionReset(tOptions * pOpts, tOptDesc * pOD) in optionReset() argument 35 pOD->fOptState &= OPTST_PERSISTENT_MASK; in optionReset() 36 pOD->fOptState |= OPTST_RESET; in optionReset() 37 if (pOD->pOptProc != NULL) in optionReset() 38 pOD->pOptProc(pOpts, pOD); in optionReset() 39 pOD->optArg.argString = in optionReset() 40 pOpts->originalOptArgArray[ pOD->optIndex ].argString; in optionReset() 41 pOD->optCookie = pOpts->originalOptArgCookie[ pOD->optIndex ]; in optionReset() 42 pOD->fOptState &= OPTST_PERSISTENT_MASK; in optionReset() 49 tOptDesc * pOD = pOpts->pOptDesc; in optionResetEverything() local [all …]
|
| H A D | check.c | 72 occurs_enough(tOptions * pOpts, tOptDesc * pOD) in occurs_enough() argument 80 if (pOD->optOccCt >= pOD->optMinCt) in occurs_enough() 87 if ( (pOD->fOptState & OPTST_MUST_SET) in occurs_enough() 88 && (pOD->fOptState & (OPTST_PRESET | OPTST_SET)) ) in occurs_enough() 91 if (pOD->optMinCt > 1) in occurs_enough() 92 fprintf(stderr, zneed_more, pOpts->pzProgName, pOD->pz_Name, in occurs_enough() 93 pOD->optMinCt); in occurs_enough() 94 else fprintf(stderr, zneed_one, pOpts->pzProgName, pOD->pz_Name); in occurs_enough() 106 tOptDesc * pOD = pOpts->pOptDesc; in is_consistent() local 119 if (SELECTED_OPT(pOD)) { in is_consistent() [all …]
|
| H A D | find.c | 75 tOptDesc * pOD = opts->pOptDesc; in opt_ambiguities() local 80 if (pOD->pz_Name == NULL) in opt_ambiguities() 83 if (strneqvcmp(name, pOD->pz_Name, nm_len) == 0) in opt_ambiguities() 84 fprintf(stderr, zambig_file, hyph, pOD->pz_Name); in opt_ambiguities() 86 else if ( (pOD->pz_DisableName != NULL) in opt_ambiguities() 87 && (strneqvcmp(name, pOD->pz_DisableName, nm_len) == 0) in opt_ambiguities() 89 fprintf(stderr, zambig_file, hyph, pOD->pz_DisableName); in opt_ambiguities() 90 } while (pOD++, (++idx < opts->optCt)); in opt_ambiguities() 110 tOptDesc * pOD = opts->pOptDesc; in opt_match_ct() local 116 if (pOD->pz_Name == NULL) in opt_match_ct() [all …]
|
| H A D | env.c | 119 os->flags = OPTST_PRESET | OPTST_ALLOC_ARG | os->pOD->fOptState; in do_env_opt() 122 if ( (os->pOD->pz_DisablePfx != NULL) in do_env_opt() 123 && (streqvcmp(os->pzOptArg, os->pOD->pz_DisablePfx) == 0)) { in do_env_opt() 157 if (OPTST_GET_ARGTYPE(os->pOD->fOptState) == OPARG_TYPE_NONE) { in do_env_opt() 168 if ((os->pOD->fOptState & OPTST_ARG_OPTIONAL) == 0) in do_env_opt() 203 st.pOD = pOpts->pOptDesc; in env_presets() 209 for (;ct-- > 0; st.pOD++) { in env_presets() 215 if ( ((st.pOD->fOptState & OPTST_NO_INIT) != 0) in env_presets() 216 || (st.pOD->optEquivIndex != NO_EQUIVALENT) ) in env_presets() 223 nln = strlen(st.pOD->pz_NAME) + 1; in env_presets() [all …]
|
| H A D | enum.c | 37 enum_err(tOptions * pOpts, tOptDesc * pOD, in enum_err() argument 50 pOD->optArg.argString, pOD->pz_Name); in enum_err() 52 fprintf(option_usage_fp, zValidKeys, pOD->pz_Name); in enum_err() 141 if (OPTST_GET_ARGTYPE(pOD->fOptState) == OPARG_TYPE_MEMBERSHIP) { in enum_err() 155 * @param pOD the option descriptor for this option 160 find_name(char const * name, tOptions * pOpts, tOptDesc * pOD, in find_name() argument 178 enum_err(pOpts, pOD, paz_names, (int)name_ct); in find_name() 212 enum_err(pOpts, pOD, paz_names, (int)name_ct); in find_name() 221 * arg: tOptDesc *, pOD, enumeration option description 230 optionKeywordName(tOptDesc * pOD, unsigned int enum_val) in optionKeywordName() argument [all …]
|
| H A D | restore.c | 44 tOptDesc * pOD = pOpts->pOptDesc; in fixupSavedOptionArgs() local 51 for (; ct-- > 0; pOD++) { in fixupSavedOptionArgs() 52 switch (OPTST_GET_ARGTYPE(pOD->fOptState)) { in fixupSavedOptionArgs() 54 if (pOD->fOptState & OPTST_STACKED) { in fixupSavedOptionArgs() 55 tOptDesc * q = p->pOptDesc + (pOD - pOpts->pOptDesc); in fixupSavedOptionArgs() 58 if (pOD->fOptState & OPTST_ALLOC_ARG) { in fixupSavedOptionArgs() 59 tOptDesc * q = p->pOptDesc + (pOD - pOpts->pOptDesc); in fixupSavedOptionArgs() 60 AGDUPSTR(q->optArg.argString, pOD->optArg.argString, "arg"); in fixupSavedOptionArgs() 66 tOptDesc * q = p->pOptDesc + (pOD - pOpts->pOptDesc); in fixupSavedOptionArgs()
|
| H A D | proto.h | 44 occurs_enough(tOptions * pOpts, tOptDesc * pOD); 114 enum_err(tOptions * pOpts, tOptDesc * pOD, 118 find_name(char const * name, tOptions * pOpts, tOptDesc * pOD, 122 set_memb_shell(tOptions * pOpts, tOptDesc * pOD, char const * const * paz_names, 153 check_existence(teOptFileType ftype, tOptions * pOpts, tOptDesc * pOD); 156 open_file_fd(tOptions * pOpts, tOptDesc * pOD, tuFileMode mode); 159 fopen_file_fp(tOptions * pOpts, tOptDesc * pOD, tuFileMode mode); 423 print_enumeration(tOptions * pOpts, tOptDesc * pOD); 426 print_membership(tOptions * pOpts, tOptDesc * pOD); 429 print_stacked_arg(tOptions * pOpts, tOptDesc * pOD); [all …]
|
| /freebsd/crypto/openssl/util/perl/OpenSSL/Util/ |
| H A D | Pod.pm | 8 package OpenSSL::Util::Pod; 22 OpenSSL::Util::Pod - utilities to manipulate .pod files 26 use OpenSSL::Util::Pod; 28 my %podinfo = extract_pod_info("foo.pod"); 47 Extracts information from a .pod file, given a STRING (file name) or a 57 to be used with the given .pod file. 78 The man section number this .pod file belongs to. Often the same as 87 The whole contents of the .pod file. 141 print STDERR "DEBUG: Found new pod section $1\n" 143 print STDERR "DEBUG: Clearing pod section text\n" [all …]
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | perl | 45 # Perl POD documents 47 0 search/1024/W \=pod\n Perl POD document text 48 0 search/1024/W \n\=pod\n Perl POD document text 49 0 search/1024/W \=head1\ Perl POD document text 50 0 search/1024/W \n\=head1\ Perl POD document text 51 0 search/1024/W \=head2\ Perl POD document text 52 0 search/1024/W \n\=head2\ Perl POD document text 53 0 search/1024/W \=encoding\ Perl POD document text 54 0 search/1024/W \n\=encoding\ Perl POD document text
|
| /freebsd/crypto/openssl/doc/designs/ |
| H A D | passing-algorithmidentifier-parameters.md | 53 - `doc/man7/provider-asym_cipher.pod` 54 - `doc/man7/provider-cipher.pod` 55 - `doc/man7/provider-digest.pod` 56 - `doc/man7/provider-kdf.pod` 57 - `doc/man7/provider-kem.pod` 58 - `doc/man7/provider-keyexch.pod` 59 - `doc/man7/provider-mac.pod` 60 - `doc/man7/provider-signature.pod` 66 We may arguably want to consider `doc/man7/provider-keymgmt.pod` too, but
|
| /freebsd/crypto/openssl/util/ |
| H A D | write-man-symlinks | 17 use OpenSSL::Util::Pod; 34 my $podfile = "$srcdir/$mainf.pod"; 35 #Some pod files are generated and are in the build dir 37 $podfile = "$builddir/$mainf.pod";
|
| H A D | find-doc-nits | 15 use Pod::Checker; 23 use OpenSSL::Util::Pod; 56 -n Print nits in POD pages 118 # Collect all POD files, both internal and public, and regardless of location 203 # contains hash tables showing which POD file each of those man 204 # files depend on. We use that information to find the POD files, 223 'doc', 'internal', $mansect, '*.pod')) ) { 298 err($id, "POD markup among the names in NAME") 306 my $simplename = basename($filename, ".pod"); 318 if ( ( grep { basename($_) eq "$n.pod" } [all …]
|
| /freebsd/contrib/pam-krb5/tests/docs/ |
| H A D | pod-t | 3 # Check all POD documents in the tree, except for any embedded Perl module 4 # distribution, for POD formatting errors. 47 skip_unless_automated('POD syntax tests'); 50 use_prereq('Test::Pod');
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TargetCXXABI.h | 38 // If you add more members, especially non-POD members, please 263 /// non-POD base classes, but that restriction was removed retroactively by 269 /// available, even if it's POD. 273 /// the base class is not POD according to the rules of C++ TR1. 277 /// the base class is not POD according to the rules of C++11. 283 // permanently locked the definition of POD to the rules of C++ TR1, in getTailPaddingUseRules() 293 // AppleARM64 and WebAssembly use the C++11 POD rules. They do not honor in getTailPaddingUseRules() 302 // subobject, even if they're POD. in getTailPaddingUseRules()
|
| /freebsd/crypto/openssl/doc/HOWTO/ |
| H A D | documenting-functions-and-macros.md | 23 So, create a new `.pod` file named `doc/man3/FUNCTION.pod`. 26 you can create a single pod file in which you document them together. 31 doc/man3/BIO_set_dgram_origin.pod 34 If you do use an unrelated name (like `BIO_dgram.pod`) then you'll get
|
| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | BN_swap.3 | 2 .\" Automatically generated by Pod::Man 5.0102 (Pod::Simple 3.45) 35 .\" entries marked with X<> in POD. Of course, you'll have to process the
|
| H A D | ERR_clear_error.3 | 2 .\" Automatically generated by Pod::Man 5.0102 (Pod::Simple 3.45) 35 .\" entries marked with X<> in POD. Of course, you'll have to process the
|
| H A D | PKCS7_type_is_other.3 | 2 .\" Automatically generated by Pod::Man 5.0102 (Pod::Simple 3.45) 35 .\" entries marked with X<> in POD. Of course, you'll have to process the
|