Searched refs:sdup (Results 1 – 8 of 8) sorted by relevance
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/asn1/ |
H A D | a_type.c | 53 ASN1_STRING *sdup; in ASN1_TYPE_set1() local 54 sdup = ASN1_STRING_dup(value); in ASN1_TYPE_set1() 55 if (!sdup) in ASN1_TYPE_set1() 57 ASN1_TYPE_set(a, type, sdup); in ASN1_TYPE_set1()
|
/netbsd/crypto/external/bsd/openssl/dist/crypto/asn1/ |
H A D | a_type.c | 53 ASN1_STRING *sdup; in ASN1_TYPE_set1() local 54 sdup = ASN1_STRING_dup(value); in ASN1_TYPE_set1() 55 if (!sdup) in ASN1_TYPE_set1() 57 ASN1_TYPE_set(a, type, sdup); in ASN1_TYPE_set1()
|
/netbsd/external/bsd/libpcap/dist/ |
H A D | scanner.l | 401 ${B} { yylval->s = sdup(yyextra, yytext); return AID; } 402 {MAC} { yylval->s = sdup(yyextra, yytext); return EID; } 405 yylval->s = sdup(yyextra, (char *)yytext); return HID; } 417 yylval->s = sdup(yyextra, (char *)yytext); 483 yylval->s = sdup(yyextra, (char *)yytext); return ID; } 484 "\\"[^ !()\n\t]+ { yylval->s = sdup(yyextra, (char *)yytext + 1); return ID; }
|
H A D | gencode.h | 376 char *sdup(compiler_state_t *, const char *);
|
H A D | gencode.c | 661 sdup(compiler_state_t *cstate, const char *s) in sdup() function
|
/netbsd/crypto/external/bsd/openssh/dist/ |
H A D | misc.c | 745 char *sdup, *tmp; in parse_user_host_path() local 755 sdup = xstrdup(s); in parse_user_host_path() 758 if ((tmp = colon(sdup)) == NULL) in parse_user_host_path() 768 tmp = strrchr(sdup, '@'); in parse_user_host_path() 772 if (*sdup != '\0') in parse_user_host_path() 773 user = xstrdup(sdup); in parse_user_host_path() 775 host = xstrdup(cleanhostname(sdup)); in parse_user_host_path() 794 free(sdup); in parse_user_host_path() 812 char *sdup, *cp, *tmp; in parse_user_host_port() local 823 if ((sdup = tmp = strdup(s)) == NULL) in parse_user_host_port() [all …]
|
H A D | servconf.c | 1095 char *cp, *sdup; in parse_timeout() local 1104 sdup = xstrdup(s); in parse_timeout() 1106 if ((cp = strchr(sdup, '=')) == NULL || cp == sdup) { in parse_timeout() 1107 free(sdup); in parse_timeout() 1112 free(sdup); in parse_timeout() 1117 *typep = xstrdup(sdup); in parse_timeout() 1120 free(sdup); in parse_timeout()
|
H A D | readconf.c | 3164 char *orig, *sdup, *cp; in parse_jump() local 3170 orig = sdup = xstrdup(s); in parse_jump() 3181 if ((cp = strrchr(sdup, ',')) == NULL) in parse_jump() 3182 cp = sdup; /* last */ in parse_jump() 3200 } while (cp != sdup); in parse_jump()
|