| /trueos/crypto/openssl/crypto/conf/ |
| HD | conf_lib.c | 134 CONF ctmp; in LHASH_OF() local 137 CONF_set_nconf(&ctmp, conf); in LHASH_OF() 139 ret = NCONF_load_bio(&ctmp, bp, eline); in LHASH_OF() 141 return ctmp.data; in LHASH_OF() 151 CONF ctmp; in STACK_OF() local 152 CONF_set_nconf(&ctmp, conf); in STACK_OF() 153 return NCONF_get_section(&ctmp, section); in STACK_OF() 163 CONF ctmp; in CONF_get_string() local 164 CONF_set_nconf(&ctmp, conf); in CONF_get_string() 165 return NCONF_get_string(&ctmp, group, name); in CONF_get_string() [all …]
|
| /trueos/sys/libkern/ |
| HD | iconv_xlat16.c | 122 uint16_t c1, c2, ctmp; in iconv_xlat16_conv() local 138 ctmp = 0; in iconv_xlat16_conv() 151 ctmp = towlower(((u_char)*src << 8) | (u_char)*(src + 1), in iconv_xlat16_conv() 154 ctmp = towupper(((u_char)*src << 8) | (u_char)*(src + 1), in iconv_xlat16_conv() 156 if (ctmp) { in iconv_xlat16_conv() 157 c1 = C2I1(ctmp); in iconv_xlat16_conv() 158 c2 = C2I2(ctmp); in iconv_xlat16_conv() 178 ctmp = towlower((u_char)*src, dp->f_ctp); in iconv_xlat16_conv() 180 ctmp = (u_char)(code >> 16); in iconv_xlat16_conv() 183 ctmp = towupper((u_char)*src, dp->f_ctp); in iconv_xlat16_conv() [all …]
|
| /trueos/crypto/openssl/crypto/x509v3/ |
| HD | v3_conf.c | 468 CONF ctmp; in X509V3_EXT_conf() local 469 CONF_set_nconf(&ctmp, conf); in X509V3_EXT_conf() 470 return X509V3_EXT_nconf(&ctmp, ctx, name, value); in X509V3_EXT_conf() 478 CONF ctmp; in X509V3_EXT_conf_nid() local 479 CONF_set_nconf(&ctmp, conf); in X509V3_EXT_conf_nid() 480 return X509V3_EXT_nconf_nid(&ctmp, ctx, ext_nid, value); in X509V3_EXT_conf_nid() 509 CONF ctmp; in X509V3_EXT_add_conf() local 510 CONF_set_nconf(&ctmp, conf); in X509V3_EXT_add_conf() 511 return X509V3_EXT_add_nconf(&ctmp, ctx, section, cert); in X509V3_EXT_add_conf() 519 CONF ctmp; in X509V3_EXT_CRL_add_conf() local [all …]
|
| HD | v3_info.c | 152 CONF_VALUE *cnf, ctmp; in v2i_AUTHORITY_INFO_ACCESS() local 175 ctmp.name = ptmp + 1; in v2i_AUTHORITY_INFO_ACCESS() 176 ctmp.value = cnf->value; in v2i_AUTHORITY_INFO_ACCESS() 177 if (!v2i_GENERAL_NAME_ex(acc->location, method, ctx, &ctmp, 0)) in v2i_AUTHORITY_INFO_ACCESS()
|
| /trueos/libexec/rbootd/ |
| HD | rbootd.c | 344 CLIENT *ctmp; in FindClient() local 346 for (ctmp = Clients; ctmp != NULL; ctmp = ctmp->next) in FindClient() 348 (char *)&ctmp->addr[0], RMP_ADDRLEN) == 0) in FindClient() 351 return(ctmp); in FindClient()
|
| HD | utils.c | 273 CLIENT *ctmp; in NewClient() local 275 if ((ctmp = (CLIENT *) malloc(sizeof(CLIENT))) == NULL) { in NewClient() 281 memset(ctmp, 0, sizeof(CLIENT)); in NewClient() 282 memmove(&ctmp->addr[0], addr, RMP_ADDRLEN); in NewClient() 283 return(ctmp); in NewClient() 305 CLIENT *ctmp; in FreeClients() local 308 ctmp = Clients; in FreeClients() 310 FreeClient(ctmp); in FreeClients()
|
| /trueos/crypto/openssl/apps/ |
| HD | rsautl.c | 285 unsigned char ctmp; in MAIN() local 287 ctmp = rsa_in[i]; in MAIN() 289 rsa_in[rsa_inlen - 1 - i] = ctmp; in MAIN()
|
| HD | pkeyutl.c | 287 unsigned char ctmp; in MAIN() local 290 ctmp = buf_in[i]; in MAIN() 292 buf_in[l - 1 - i] = ctmp; in MAIN()
|
| /trueos/crypto/openssl/ssl/ |
| HD | ssl_ciph.c | 500 SSL_COMP ctmp; in ssl_cipher_get_evp() local 506 ctmp.id = s->compress_meth; in ssl_cipher_get_evp() 508 i = sk_SSL_COMP_find(ssl_comp_methods, &ctmp); in ssl_cipher_get_evp() 1821 SSL_COMP *ctmp; in ssl3_comp_find() local 1828 ctmp = sk_SSL_COMP_value(sk, i); in ssl3_comp_find() 1829 if (ctmp->id == n) in ssl3_comp_find() 1830 return (ctmp); in ssl3_comp_find()
|
| /trueos/contrib/libucl/src/ |
| HD | ucl_util.c | 393 struct ucl_chunk *chunk, *ctmp; local 413 LL_FOREACH_SAFE (parser->chunks, chunk, ctmp) {
|
| /trueos/contrib/wpa/wpa_supplicant/ |
| HD | ctrl_iface.c | 3163 char *ctmp; in wpa_supplicant_ctrl_iface_bss() local 3175 if ((ctmp = os_strchr(cmd + 6, '-')) == NULL) { in wpa_supplicant_ctrl_iface_bss() 3183 id2 = atoi(ctmp + 1); in wpa_supplicant_ctrl_iface_bss() 3244 if ((ctmp = os_strstr(cmd, "MASK=")) != NULL) { in wpa_supplicant_ctrl_iface_bss() 3245 mask = strtoul(ctmp + 5, NULL, 0x10); in wpa_supplicant_ctrl_iface_bss()
|