Lines Matching refs:n

166 	char *n;  in curl_cb_write()  local
167 n = os_realloc(ctx->curl_buf, ctx->curl_buf_len + size * nmemb + 1); in curl_cb_write()
168 if (n == NULL) in curl_cb_write()
170 ctx->curl_buf = n; in curl_cb_write()
171 os_memcpy(n + ctx->curl_buf_len, ptr, size * nmemb); in curl_cb_write()
172 n[ctx->curl_buf_len + size * nmemb] = '\0'; in curl_cb_write()
241 char **n; in add_alt_name_dns() local
247 n = os_realloc_array(cert->dnsname, cert->num_dnsname + 1, in add_alt_name_dns()
249 if (n == NULL) in add_alt_name_dns()
252 cert->dnsname = n; in add_alt_name_dns()
253 n[cert->num_dnsname] = buf; in add_alt_name_dns()
461 struct http_logo *n; in DEFINE_STACK_OF() local
470 n = os_realloc_array(hcert->logo, hcert->num_logo + 1, in DEFINE_STACK_OF()
472 if (n == NULL) in DEFINE_STACK_OF()
474 hcert->logo = n; in DEFINE_STACK_OF()
475 n = &hcert->logo[hcert->num_logo]; in DEFINE_STACK_OF()
476 os_memset(n, 0, sizeof(*n)); in DEFINE_STACK_OF()
478 n->alg_oid = os_strdup(txt); in DEFINE_STACK_OF()
479 if (n->alg_oid == NULL) in DEFINE_STACK_OF()
482 n->hash_len = ASN1_STRING_length(hash->hashValue); in DEFINE_STACK_OF()
483 n->hash = os_memdup(ASN1_STRING_get0_data(hash->hashValue), in DEFINE_STACK_OF()
484 n->hash_len); in DEFINE_STACK_OF()
485 if (n->hash == NULL) { in DEFINE_STACK_OF()
486 os_free(n->alg_oid); in DEFINE_STACK_OF()
491 n->uri = os_malloc(len + 1); in DEFINE_STACK_OF()
492 if (n->uri == NULL) { in DEFINE_STACK_OF()
493 os_free(n->alg_oid); in DEFINE_STACK_OF()
494 os_free(n->hash); in DEFINE_STACK_OF()
497 os_memcpy(n->uri, ASN1_STRING_get0_data(uri), len); in DEFINE_STACK_OF()
498 n->uri[len] = '\0'; in DEFINE_STACK_OF()
1486 xml_node_t *envelope, *ret, *resp, *n; in soap_send_receive() local
1543 n = xml_node_copy(ctx->xml, ret); in soap_send_receive()
1546 return n; in soap_send_receive()