HomeSort by relevance Sort by last modified time
    Searched refs:http_credential_t (Results 1 - 6 of 6) sorted by null

  /external/libcups/cups/
tls-gnutls.c 45 static gnutls_x509_crt_t http_gnutls_create_credential(http_credential_t *credential);
374 cert = http_gnutls_create_credential((http_credential_t *)cupsArrayFirst(credentials));
443 if ((cert = http_gnutls_create_credential((http_credential_t *)cupsArrayFirst(credentials))) == NULL)
547 http_credential_t *a, *b; /* Certificates */
549 for (a = (http_credential_t *)cupsArrayFirst(tcreds), b = (http_credential_t *)cupsArrayIndex(credentials, 1);
551 a = (http_credential_t *)cupsArrayNext(tcreds), b = (http_credential_t *)cupsArrayNext(credentials))
608 cert = http_gnutls_create_credential((http_credential_t *)cupsArrayFirst(credentials));
631 http_credential_t *first; /* First certificate *
    [all...]
tls-darwin.c 64 static SecCertificateRef http_cdsa_create_credential(http_credential_t *credential);
500 http_credential_t *credential; /* Credential data */
511 for (credential = (http_credential_t *)cupsArrayFirst(credentials);
513 credential = (http_credential_t *)cupsArrayNext(credentials))
544 if ((secCert = http_cdsa_create_credential((http_credential_t *)cupsArrayFirst(credentials))) == NULL)
614 if ((secCert = http_cdsa_create_credential((http_credential_t *)cupsArrayFirst(credentials))) == NULL)
715 http_credential_t *a, *b; /* Certificates */
717 for (a = (http_credential_t *)cupsArrayFirst(tcreds), b = (http_credential_t *)cupsArrayIndex(credentials, 1);
719 a = (http_credential_t *)cupsArrayNext(tcreds), b = (http_credential_t *)cupsArrayNext(credentials)
    [all...]
testhttp.c 646 http_credential_t *cred, *lcred;
648 for (i = 1, cred = (http_credential_t *)cupsArrayFirst(creds), lcred = (http_credential_t *)cupsArrayFirst(lcreds);
650 i ++, cred = (http_credential_t *)cupsArrayNext(creds), lcred = (http_credential_t *)cupsArrayNext(lcreds))
tls-sspi.c 64 static PCCERT_CONTEXT http_sspi_create_credential(http_credential_t *cred);
170 return (http_sspi_create_credential((http_credential_t *)cupsArrayFirst(credentials)));
186 PCCERT_CONTEXT cert = http_sspi_create_credential((http_credential_t *)cupsArrayFirst(credentials));
259 cert = http_sspi_create_credential((http_credential_t *)cupsArrayFirst(credentials));
295 PCCERT_CONTEXT cert = http_sspi_create_credential((http_credential_t *)cupsArrayFirst(credentials));
333 http_credential_t *first = (http_credential_t *)cupsArrayFirst(credentials);
571 createdContext = http_sspi_create_credential((http_credential_t *)cupsArrayFirst(credentials));
    [all...]
http.c 215 http_credential_t *credential; /* Credential data */
218 if ((credential = malloc(sizeof(http_credential_t))) != NULL)
402 http_credential_t *temp1, *temp2; /* Temporary credentials */
405 for (temp1 = (http_credential_t *)cupsArrayFirst(cred1), temp2 = (http_credential_t *)cupsArrayFirst(cred2); temp1 && temp2; temp1 = (http_credential_t *)cupsArrayNext(cred1), temp2 = (http_credential_t *)cupsArrayNext(cred2))
723 http_credential_t *credential; /* Credential */
726 for (credential = (http_credential_t *)cupsArrayFirst(credentials);
728 credential = (http_credential_t *)cupsArrayNext(credentials)
    [all...]
http.h 443 } http_credential_t; typedef in typeref:struct:http_credential_s

Completed in 206 milliseconds