Home
last modified time | relevance | path

Searched refs:subject (Results 1 – 25 of 1571) sorted by relevance

12345678910>>...63

/illumos-gate/usr/src/cmd/cmd-crypto/pktool/
H A Dexport.c108 if (subject != NULL) { in pk_export_file_objects()
111 strlen(subject)); in pk_export_file_objects()
195 if (subject != NULL) { in pk_export_pk12_nss()
197 KMF_SUBJECT_NAME_ATTR, subject, strlen(subject)); in pk_export_pk12_nss()
316 if (subject != NULL) { in pk_export_nss_objects()
319 strlen(subject)); in pk_export_nss_objects()
402 if (subject != NULL) { in pk_export_pk12_pk11()
404 KMF_SUBJECT_NAME_ATTR, subject, strlen(subject)); in pk_export_pk12_pk11()
626 if (subject != NULL) { in pk_export_pk11_objects()
629 strlen(subject)); in pk_export_pk11_objects()
[all …]
H A Ddelete.c348 if (subject != NULL) { in delete_nss_certs()
351 strlen(subject)); in delete_nss_certs()
382 char *issuer, char *subject) in delete_nss_crl() argument
407 if (subject != NULL) { in delete_nss_crl()
409 subject, strlen(subject)); in delete_nss_crl()
554 if (subject != NULL) { in delete_pk11_certs()
556 subject, strlen(subject)); in delete_pk11_certs()
595 if (subject != NULL) { in delete_file_certs()
597 subject, strlen(subject)); in delete_file_certs()
723 char *subject = NULL; in pk_delete() local
[all …]
H A Dlist.c50 subject = NULL; in pk_show_certs()
71 subject); in pk_show_certs()
106 kmf_free_str(subject); in pk_show_certs()
475 if (subject != NULL) { in list_pk11_objects()
478 strlen(subject)); in list_pk11_objects()
629 if (subject != NULL) { in list_file_objects()
632 strlen(subject)); in list_file_objects()
814 if (subject != NULL) { in list_nss_objects()
817 strlen(subject)); in list_nss_objects()
904 char *subject = NULL; in pk_list() local
[all …]
H A Dsigncsr.c108 char *issuer, char *subject, in build_cert_from_csr() argument
142 if (subject) { in build_cert_from_csr()
143 if (kmf_dn_parser(subject, &subjectDN) != KMF_OK) { in build_cert_from_csr()
151 signedCert->certificate.subject = csrdata->csr.subject; in build_cert_from_csr()
200 if (subject != NULL) in build_cert_from_csr()
251 char *subject, in pk_signcsr_files() argument
295 issuer, subject, altname, alttype, altcrit, kubits, in pk_signcsr_files()
405 issuer, subject, altname, in pk_signcsr_pk11_nss()
527 char *subject = NULL; in pk_signcsr() local
586 if (subject) in pk_signcsr()
[all …]
H A Dgencert.c48 char *token, char *subject, char *altname, in gencert_pkcs11() argument
74 if (kmf_dn_parser(subject, &certSubject) != KMF_OK) { in gencert_pkcs11()
81 if (kmf_dn_parser(subject, &certIssuer) != KMF_OK) { in gencert_pkcs11()
249 uint32_t ltime, char *subject, char *altname, in gencert_file() argument
410 char *token, char *subject, char *altname, in gencert_nss() argument
576 char *subject = NULL; in pk_gencert() local
625 if (interactive || subject) in pk_gencert()
636 if (interactive || subject) in pk_gencert()
639 subject = optarg_av; in pk_gencert()
830 if (EMPTYSTRING(subject)) { in pk_gencert()
[all …]
H A Dgencsr.c47 char *token, char *subject, char *altname, in gencsr_pkcs11() argument
69 if ((kmfrv = kmf_dn_parser(subject, &csrSubject)) != KMF_OK) in gencsr_pkcs11()
171 char *subject, char *altname, KMF_GENERALNAMECHOICES alttype, in gencsr_file() argument
204 if ((kmfrv = kmf_dn_parser(subject, &csrSubject)) != KMF_OK) { in gencsr_file()
262 char *token, char *subject, char *altname, in gencsr_nss() argument
374 char *subject = NULL; in pk_gencsr() local
416 else if (subject) { in pk_gencsr()
431 if (subject) in pk_gencsr()
440 subject = optarg_av; in pk_gencsr()
620 if (EMPTYSTRING(subject)) { in pk_gencsr()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/comp/
H A Dregexp.c94 _re_exec(regexp_t* re, const char* subject, const char* handle, int anchor) in _re_exec() argument
100 if (regexec(&env->re, subject, elementsof(match), match, 0) || anchor && match[0].rm_so) in _re_exec()
102 re->re_loc1 = (char*)subject + match[0].rm_so; in _re_exec()
103 re->re_loc2 = (char*)subject + match[0].rm_eo; in _re_exec()
106 re->re_braslist[n-1] = (char*)subject + match[n].rm_so; in _re_exec()
107 re->re_braelist[n-1] = (char*)subject + match[n].rm_eo; in _re_exec()
H A Dregcmp.c190 regex(const char* handle, const char* subject, ...) in regex() argument
200 va_start(ap, subject); in regex()
201 if (!(re = (Regex_t*)handle) || !subject) in regex()
212 if (regexec(&re->re, subject, SUB + 1, match, 0)) in regex()
219 strlcpy(sub[n], subject + match[i].rm_so, k); in regex()
222 __loc1 = (char*)subject + match[0].rm_so; in regex()
223 return (char*)subject + match[0].rm_eo; in regex()
H A Dfnmatch.c53 fnmatch(const char* pattern, const char* subject, register int flags) in fnmatch() argument
67 reflags = regexec(&re, subject, 1, &match, 0); in fnmatch()
69 if (!reflags && (reflags = subject[match.rm_eo])) in fnmatch()
75 reflags = regexec(&re, subject, 0, NiL, 0); in fnmatch()
H A Dre_comp.c70 re_exec(const char* subject) in re_exec() argument
72 if (state.valid && subject) in re_exec()
73 switch (regexec(&state.re, subject, 0, NiL, 0)) in re_exec()
/illumos-gate/usr/src/cmd/fm/dicts/
H A DFMNOTIFY.po6 # The contents of this file are subject to the terms of the
28 # default format for subject of emails generated by the smtp-notify agent
32 msgid "smtp-notify-subject-template"
36 # format for subject of emails generated by the smtp-notify agent
41 msgid "smtp-notify-smf-subject-template"
45 # format for subject of emails generated by the smtp-notify agent
50 msgid "smtp-notify-fm-subject-template"
H A DTEST.dict5 # The contents of this file are subject to the terms of the
23 # Use is subject to license terms.
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/tests/
H A Dglob.sh77 typeset lineno expected subject pattern got
78 lineno=$1 expected=$2 subject=$3 pattern=$4
80 case $subject in
86 then 'err_exit' $lineno "case $subject in $pattern) -- expected '$expected', got '$got'"
306 x='${subject'$2'}'
309 then 'err_exit' $1 subject="'$subject' $x failed, expected '$3', got '$g'"
353 subject='e'
362 subject='a'
367 subject='aha'
/illumos-gate/usr/src/cmd/bnu/
H A Dmailst.c53 char subject[BUFSIZ]; local
63 strncpy(subject, subj, c-subj);
64 subject[c-subj] = NULLCHAR;
65 subj = subject;
/illumos-gate/usr/src/pkg/license_files/
H A Dlic_OSBL_preamble1 Some or all of the code in this package is subject to and you are bound
3 you are receiving this package as part of Solaris, the code is subject to
6 License applies, then the code is "Redistributable" subject to its terms.
/illumos-gate/usr/src/cmd/auditrecord/
H A Daudit_record_attr.txt11 ## The contents of this file are subject to the terms of the
71 token=subj:subject
175 # subject
183 # subject
190 # subject
197 # subject
941 # subject,tuser1,root,staff,root,staff,9689,12289,0 0 tmach2
1149 # subject,abc,root,other,root,other,1726,1715,255 66049 ohboy
1737 # subject,tuser1,root,staff,tuser1,staff,10420,497,0 0 tmach2
2034 # no subject or return / exit token
[all …]
/illumos-gate/usr/src/cmd/svc/milestone/
H A DREADME4 # The contents of this file are subject to the terms of the
24 Use is subject to license terms.
25 Use is subject to license terms.
/illumos-gate/usr/src/cmd/pools/poold/
H A Dpoold.properties3 # Use is subject to license terms.
7 # The contents of this file are subject to the terms of the
28 # edit this file. Its format and contents are subject to change in
/illumos-gate/usr/src/uts/common/io/scsi/adapters/pmcs/
H A DLICENSE1 The code in this package is subject to and you are bound by the terms of
3 this package as part of Solaris, the code is subject to and you are bound
6 then the code is "Redistributable" subject to its terms.
41 Software or Redistributables subject to a license agreement that protects
87 subject to a license agreement that protects Sun's interests consistent
118 the subject of a claim of intellectual property infringement or trade
162 delivered under this Agreement are subject to U.S. export control laws
163 and may be subject to export or import regulations in other countries.
193 its subject matter. It supersedes all prior or contemporaneous oral or
197 its subject matter during the term of this Agreement. No modification
/illumos-gate/usr/src/lib/iconv_modules/hi_IN/testData/
H A DNuktaTest.iscii4 # The contents of this file are subject to the terms of the
22 # Use is subject to license terms.
H A DPremTest.iscii4 # The contents of this file are subject to the terms of the
22 # Use is subject to license terms.
/illumos-gate/usr/src/lib/iconv_modules/utf-8/common/tbls/
H A Dutf8_to_us-ascii.tbl4 * The contents of this file are subject to the terms of the
23 * Use is subject to license terms.
/illumos-gate/usr/src/cmd/gss/etc/
H A Dkpropd.acl3 # Use is subject to license terms.
7 # The contents of this file are subject to the terms of the
/illumos-gate/usr/src/test/zfs-tests/tests/functional/atime/
H A Datime.cfg4 # The contents of this file are subject to the terms of the
24 # Use is subject to license terms.
/illumos-gate/usr/src/cmd/cmd-inet/etc/
H A Dhosts3 # The contents of this file are subject to the terms of the
21 # Use is subject to license terms.

12345678910>>...63