| /freebsd/libexec/bootpd/tools/bootpef/ |
| H A D | bootpef.c | 120 char *stmp; in main() local 136 stmp = NULL; in main() 148 stmp = &(argv[0][2]); in main() 152 stmp = argv[0]; in main() 154 if (!stmp || (stmp[0] != '/')) { in main() 159 chdir_path = stmp; in main() 164 stmp = &(argv[0][2]); in main() 175 stmp = argv[0]; in main() 177 if (!stmp || (sscanf(stmp, "%d", &n) != 1) || (n < 0)) { in main() 187 stmp = &(argv[0][2]); in main() [all …]
|
| /freebsd/libexec/bootpd/bootpgw/ |
| H A D | bootpgw.c | 150 char *stmp; in main() local 207 stmp = NULL; in main() 234 stmp = &(argv[0][2]); in main() 245 stmp = argv[0]; in main() 247 if (!stmp || (sscanf(stmp, "%d", &n) != 1) || (n < 0)) { in main() 256 stmp = &(argv[0][2]); in main() 260 stmp = argv[0]; in main() 262 if (!stmp || (sscanf(stmp, "%d", &n) != 1) || in main() 281 stmp = &(argv[0][2]); in main() 285 stmp = argv[0]; in main() [all …]
|
| /freebsd/crypto/openssl/apps/lib/ |
| H A D | app_x509.c | 88 char *stmp, *vtmp = NULL; in do_x509_ctrl_string() local 92 stmp = OPENSSL_strdup(value); in do_x509_ctrl_string() 93 if (stmp == NULL) in do_x509_ctrl_string() 95 vtmp = strchr(stmp, ':'); in do_x509_ctrl_string() 102 if (strcmp(stmp, "distid") == 0) { in do_x509_ctrl_string() 106 } else if (strcmp(stmp, "hexdistid") == 0) { in do_x509_ctrl_string() 112 OPENSSL_free(stmp); in do_x509_ctrl_string() 113 stmp = vtmp = hexid; in do_x509_ctrl_string() 123 OPENSSL_free(stmp); in do_x509_ctrl_string()
|
| /freebsd/sys/dev/sfxge/ |
| H A D | sfxge_tx.c | 155 &txq->stmp[txq->ptr_mask])) in sfxge_next_stmp() 156 *pstmp = &txq->stmp[0]; in sfxge_next_stmp() 226 struct sfxge_tx_mapping *stmp; in sfxge_tx_qcomplete() local 231 stmp = &txq->stmp[id]; in sfxge_tx_qcomplete() 232 if (stmp->flags & TX_BUF_UNMAP) { in sfxge_tx_qcomplete() 233 bus_dmamap_unload(txq->packet_dma_tag, stmp->map); in sfxge_tx_qcomplete() 234 if (stmp->flags & TX_BUF_MBUF) { in sfxge_tx_qcomplete() 235 struct mbuf *m = stmp->u.mbuf; in sfxge_tx_qcomplete() 240 free(stmp->u.heap_buf, M_SFXGE); in sfxge_tx_qcomplete() 242 stmp->flags = 0; in sfxge_tx_qcomplete() [all …]
|
| H A D | sfxge_tx.h | 184 struct sfxge_tx_mapping *stmp; /* Packets in flight. */ member
|
| /freebsd/sys/contrib/openzfs/include/os/linux/zfs/sys/ |
| H A D | zfs_znode_impl.h | 139 #define ZFS_TIME_ENCODE(tp, stmp) \ argument 141 (stmp)[0] = (uint64_t)(tp)->tv_sec; \ 142 (stmp)[1] = (uint64_t)(tp)->tv_nsec; \ 148 #define ZFS_TIME_DECODE(tp, stmp) \ argument 150 (tp)->tv_sec = (time64_t)(stmp)[0]; \ 151 (tp)->tv_nsec = (long)(stmp)[1]; \
|
| /freebsd/libexec/bootpd/ |
| H A D | bootpd.c | 176 char *stmp; in main() local 239 stmp = NULL; in main() 262 stmp = &(argv[0][2]); in main() 266 stmp = argv[0]; in main() 268 if (!stmp || (stmp[0] != '/')) { in main() 273 chdir_path = stmp; in main() 278 stmp = &(argv[0][2]); in main() 289 stmp = argv[0]; in main() 291 if (!stmp || (sscanf(stmp, "%d", &n) != 1) || (n < 0)) { in main() 301 stmp = &(argv[0][2]); in main() [all …]
|
| /freebsd/sys/contrib/openzfs/include/os/freebsd/zfs/sys/ |
| H A D | zfs_znode_impl.h | 164 #define ZFS_TIME_ENCODE(tp, stmp) \ argument 166 (stmp)[0] = (uint64_t)(tp)->tv_sec; \ 167 (stmp)[1] = (uint64_t)(tp)->tv_nsec; \ 171 #define ZFS_TIME_DECODE(tp, stmp) \ argument 173 (tp)->tv_sec = (time_t)(stmp)[0]; \ 174 (tp)->tv_nsec = (long)(stmp)[1]; \
|
| /freebsd/crypto/openssl/crypto/x509/ |
| H A D | x509_att.c | 351 ASN1_STRING *stmp = NULL; in X509_ATTRIBUTE_set1_data() local 359 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype, in X509_ATTRIBUTE_set1_data() 361 if (stmp == NULL) { in X509_ATTRIBUTE_set1_data() 365 atype = stmp->type; in X509_ATTRIBUTE_set1_data() 367 if ((stmp = ASN1_STRING_type_new(attrtype)) == NULL in X509_ATTRIBUTE_set1_data() 368 || !ASN1_STRING_set(stmp, data, len)) { in X509_ATTRIBUTE_set1_data() 380 ASN1_STRING_free(stmp); in X509_ATTRIBUTE_set1_data() 393 ASN1_TYPE_set(ttmp, atype, stmp); in X509_ATTRIBUTE_set1_data() 394 stmp = NULL; in X509_ATTRIBUTE_set1_data() 403 ASN1_STRING_free(stmp); in X509_ATTRIBUTE_set1_data()
|
| H A D | x509_lu.c | 325 X509_OBJECT stmp, *tmp; in ossl_x509_store_ctx_get_by_subject() local 331 stmp.type = X509_LU_NONE; in ossl_x509_store_ctx_get_by_subject() 332 stmp.data.x509 = NULL; in ossl_x509_store_ctx_get_by_subject() 358 j = X509_LOOKUP_by_subject_ex(lu, type, name, &stmp, in ossl_x509_store_ctx_get_by_subject() 361 tmp = &stmp; in ossl_x509_store_ctx_get_by_subject() 537 X509_OBJECT stmp; in x509_object_idx_cnt() local 541 stmp.type = type; in x509_object_idx_cnt() 544 stmp.data.x509 = &x509_s; in x509_object_idx_cnt() 548 stmp.data.crl = &crl_s; in x509_object_idx_cnt() 558 return sk_X509_OBJECT_find_all(h, &stmp, pnmatch); in x509_object_idx_cnt()
|
| H A D | by_dir.c | 235 X509_OBJECT stmp, *tmp; in get_cert_by_subject_ex() local 241 stmp.type = type; in get_cert_by_subject_ex() 244 stmp.data.x509 = &data.st_x509; in get_cert_by_subject_ex() 247 stmp.data.crl = &data.crl; in get_cert_by_subject_ex() 354 j = sk_X509_OBJECT_find(xl->store_ctx->objs, &stmp); in get_cert_by_subject_ex()
|
| H A D | v3_ncons.c | 441 ASN1_STRING stmp; in NAME_CONSTRAINTS_check_CN() local 444 stmp.flags = 0; in NAME_CONSTRAINTS_check_CN() 445 stmp.type = V_ASN1_IA5STRING; in NAME_CONSTRAINTS_check_CN() 447 gntmp.d.dNSName = &stmp; in NAME_CONSTRAINTS_check_CN() 469 stmp.length = idlen; in NAME_CONSTRAINTS_check_CN() 470 stmp.data = idval; in NAME_CONSTRAINTS_check_CN()
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | OSSL_PARAM_allocate_from_text.pod | 129 char *stmp, *vtmp = NULL; 131 stmp = OPENSSL_strdup(value); 132 if (stmp == NULL) 134 vtmp = strchr(stmp, ':'); 137 rv = EVP_MAC_ctrl_str(ctx, stmp, vtmp); 138 OPENSSL_free(stmp); 167 char *stmp, *vtmp = NULL; 170 if ((stmp = OPENSSL_strdup(opt)) == NULL 171 || (vtmp = strchr(stmp, ':')) == NULL) 176 paramdefs, stmp,
|
| /freebsd/crypto/openssl/crypto/asn1/ |
| H A D | x_algor.c | 181 ASN1_STRING *stmp = NULL; in ossl_x509_algor_md_to_mgf1() local 189 if (ASN1_item_pack(algtmp, ASN1_ITEM_rptr(X509_ALGOR), &stmp) == NULL) in ossl_x509_algor_md_to_mgf1() 191 *palg = ossl_X509_ALGOR_from_nid(NID_mgf1, V_ASN1_SEQUENCE, stmp); in ossl_x509_algor_md_to_mgf1() 194 stmp = NULL; in ossl_x509_algor_md_to_mgf1() 196 ASN1_STRING_free(stmp); in ossl_x509_algor_md_to_mgf1()
|
| H A D | a_strex.c | 603 ASN1_STRING stmp, *str = &stmp; in ASN1_STRING_to_UTF8() local 614 stmp.data = NULL; in ASN1_STRING_to_UTF8() 615 stmp.length = 0; in ASN1_STRING_to_UTF8() 616 stmp.flags = 0; in ASN1_STRING_to_UTF8() 621 *out = stmp.data; in ASN1_STRING_to_UTF8() 622 return stmp.length; in ASN1_STRING_to_UTF8()
|
| H A D | tasn_dec.c | 862 ASN1_STRING *stmp; in asn1_ex_c2i() local 961 stmp = ASN1_STRING_type_new(utype); in asn1_ex_c2i() 962 if (stmp == NULL) { in asn1_ex_c2i() 966 *pval = (ASN1_VALUE *)stmp; in asn1_ex_c2i() 968 stmp = (ASN1_STRING *)*pval; in asn1_ex_c2i() 969 stmp->type = utype; in asn1_ex_c2i() 973 ASN1_STRING_set0(stmp, (unsigned char *)cont /* UGLY CAST! */, len); in asn1_ex_c2i() 976 if (!ASN1_STRING_set(stmp, cont, len)) { in asn1_ex_c2i() 978 ASN1_STRING_free(stmp); in asn1_ex_c2i()
|
| /freebsd/usr.bin/stat/ |
| H A D | stat.c | 646 char *stmp, lfmt[24], tmp[20]; in format1() local 701 stmp = smode; in format1() 702 l = strlen(stmp); in format1() 703 if (stmp[l - 1] == ' ') in format1() 704 stmp[--l] = '\0'; in format1() 707 stmp += 1; in format1() 708 stmp[3] = '\0'; in format1() 713 stmp += 4; in format1() 714 stmp[3] = '\0'; in format1() 719 stmp += 7; in format1() [all …]
|
| /freebsd/usr.sbin/newsyslog/ |
| H A D | newsyslog.c | 329 struct sigwork_entry *stmp; in main() local 363 SLIST_FOREACH(stmp, &swhead, sw_nextp) in main() 364 do_sigwork(stmp); in main() 393 stmp = SLIST_FIRST(&swhead); in main() 395 free(stmp); in main() 2266 struct sigwork_entry *sprev, *stmp; in save_sigwork() local 2272 SLIST_FOREACH(stmp, &swhead, sw_nextp) { in save_sigwork() 2273 ndiff = strcmp(ent->pid_cmd_file, stmp->sw_fname); in save_sigwork() 2277 if (ent->sig == stmp->sw_signum) in save_sigwork() 2279 if (ent->sig > stmp->sw_signum) { in save_sigwork() [all …]
|
| /freebsd/libexec/rbootd/ |
| H A D | utils.c | 322 char *stmp; in NewStr() local 324 if ((stmp = (char *)malloc((unsigned) (strlen(str)+1))) == NULL) { in NewStr() 329 (void) strcpy(stmp, str); in NewStr() 330 return(stmp); in NewStr()
|
| /freebsd/crypto/openssl/providers/implementations/exchange/ |
| H A D | dh_exch.c | 215 unsigned char *stmp = NULL; in dh_X9_42_kdf_derive() local 230 if ((stmp = OPENSSL_secure_malloc(stmplen)) == NULL) in dh_X9_42_kdf_derive() 232 if (!dh_plain_derive(pdhctx, stmp, &stmplen, stmplen, 1)) in dh_X9_42_kdf_derive() 238 stmp, stmplen, in dh_X9_42_kdf_derive() 249 OPENSSL_secure_clear_free(stmp, stmplen); in dh_X9_42_kdf_derive()
|
| H A D | ecdh_exch.c | 568 unsigned char *stmp = NULL; in ecdh_X9_63_kdf_derive() local 583 if ((stmp = OPENSSL_secure_malloc(stmplen)) == NULL) in ecdh_X9_63_kdf_derive() 585 if (!ecdh_plain_derive(vpecdhctx, stmp, &stmplen, stmplen)) in ecdh_X9_63_kdf_derive() 590 stmp, stmplen, in ecdh_X9_63_kdf_derive() 600 OPENSSL_secure_clear_free(stmp, stmplen); in ecdh_X9_63_kdf_derive()
|
| /freebsd/crypto/krb5/src/include/ |
| H A D | Makefile.in | 35 $(srcdir)/autoconf.h.in: @MAINT@ $(srcdir)/autoconf.stmp 36 $(srcdir)/autoconf.stmp: $(top_srcdir)/configure.ac $(top_srcdir)/aclocal.m4 38 touch $(srcdir)/autoconf.stmp 137 $(RM) autoconf.h $(srcdir)/autoconf.stmp
|
| /freebsd/sys/contrib/device-tree/Bindings/rtc/ |
| H A D | stmp3xxx-rtc.txt | 11 - stmp,crystal-freq: override crystal frequency as determined from fuse bits.
|
| /freebsd/crypto/krb5/src/appl/gss-sample/ |
| H A D | gss-server.c | 765 int stmp; in main() local 767 if ((stmp = create_socket(port)) >= 0) { in main() 779 if ((work->s = accept(stmp, NULL, 0)) < 0) { in main() 811 closesocket(stmp); in main()
|
| /freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/ |
| H A D | Makefile.in | 31 $(RM) $(HDRS) include/*.stmp
|