/external/curl/tests/unit/ |
unit1394.c | 80 char *certname, *passphrase; variable 82 parse_cert_parameter(p[0], &certname, &passphrase); 84 if(certname) { 85 if(strcmp(p[1], certname)) { 86 printf("expected certname '%s' but got '%s' " 87 "for -E param '%s'\n", p[1], certname, p[0]); 92 printf("expected certname '%s' but got NULL " 98 if(certname) { 99 printf("expected certname NULL but got '%s' " 100 "for -E param '%s'\n", certname, p[0]) 125 if(certname) free(certname); variable [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/ |
msi.py | 33 certname = None
variable [all...] |
/external/python/cpython2/Tools/msi/ |
msi.py | 33 certname = os.environ.get("CERTNAME", None) variable [all...] |
/external/curl/src/ |
tool_getparam.c | 323 /* Split the argument of -E to 'certname' and 'passphrase' separated by colon. 331 char **certname, 338 *certname = NULL; 351 *certname = strdup(cert_parameter); 359 *certname = certname_place; 428 char *certname, *passphrase; local 429 parse_cert_parameter(nextarg, &certname, &passphrase); 431 *file = certname; [all...] |