Searched refs:passwdp (Results 1 - 14 of 14) sorted by relevance

/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dcurl_sasl.h39 const char *passwdp,
53 const char *passwdp,
60 const char *passwdp,
68 const char *passwdp,
78 const char *passwdp,
H A Dcurl_ntlm_msgs.h31 const char *passwdp,
39 const char *passwdp,
H A Dcurl_ntlm.c132 const char *passwdp; local
149 passwdp = conn->proxypasswd;
156 passwdp = conn->passwd;
166 if(!passwdp)
167 passwdp = "";
182 error = Curl_ntlm_create_type1_message(userp, passwdp, ntlm, &base64,
201 error = Curl_ntlm_create_type3_message(conn->data, userp, passwdp,
H A Dcurl_sasl.c94 const char *passwdp,
102 plen = strlen(passwdp);
117 memcpy(plainauth + 2 * ulen + 2, passwdp, plen);
184 const char *passwdp,
205 (const unsigned char *) passwdp,
206 curlx_uztoui(strlen(passwdp)));
255 const char *passwdp,
330 Curl_MD5_update(ctxt, (const unsigned char *) passwdp,
331 curlx_uztoui(strlen(passwdp)));
429 const char *passwdp,
92 Curl_sasl_create_plain_message(struct SessionHandle *data, const char *userp, const char *passwdp, char **outptr, size_t *outlen) argument
181 Curl_sasl_create_cram_md5_message(struct SessionHandle *data, const char *chlg64, const char *userp, const char *passwdp, char **outptr, size_t *outlen) argument
252 Curl_sasl_create_digest_md5_message(struct SessionHandle *data, const char *chlg64, const char *userp, const char *passwdp, const char *service, char **outptr, size_t *outlen) argument
428 Curl_sasl_create_ntlm_type1_message(const char *userp, const char *passwdp, struct ntlmdata *ntlm, char **outptr, size_t *outlen) argument
456 Curl_sasl_create_ntlm_type3_message(struct SessionHandle *data, const char *header, const char *userp, const char *passwdp, struct ntlmdata *ntlm, char **outptr, size_t *outlen) argument
[all...]
H A Dhttp_digest.c292 const char *passwdp; local
313 passwdp = conn->proxypasswd;
320 passwdp = conn->passwd;
333 if(!passwdp)
334 passwdp="";
370 aprintf("%s:%s:%s", userp, d->realm, passwdp);
H A Dcurl_ntlm_msgs.c325 const char *passwdp,
414 passwd.tchar_ptr = Curl_convert_UTF8_to_tchar((char *)passwdp);
481 (void)passwdp;
574 const char *passwdp,
609 (void)passwdp;
719 Curl_ntlm_core_mk_nt_hash(data, passwdp, ntbuffer))
736 Curl_ntlm_core_mk_nt_hash(data, passwdp, ntbuffer))
741 Curl_ntlm_core_mk_lm_hash(data, passwdp, lmbuffer);
324 Curl_ntlm_create_type1_message(const char *userp, const char *passwdp, struct ntlmdata *ntlm, char **outptr, size_t *outlen) argument
572 Curl_ntlm_create_type3_message(struct SessionHandle *data, const char *userp, const char *passwdp, struct ntlmdata *ntlm, char **outptr, size_t *outlen) argument
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/ldap/
H A Dapr_ldap_rebind.c249 * passwdp Pointer to the password associated with the DName (in *or* out)
253 static int LDAP_rebindproc(LDAP *ld, char **binddnp, char **passwdp, int *methodp, int freeit) argument
263 *passwdp = strdup(my_conn->bindPW);
266 *passwdp = NULL;
272 if (*passwdp) {
273 free(*passwdp);
/macosx-10.9.5/apr-30/apr-util/apr-util/ldap/
H A Dapr_ldap_rebind.c249 * passwdp Pointer to the password associated with the DName (in *or* out)
253 static int LDAP_rebindproc(LDAP *ld, char **binddnp, char **passwdp, int *methodp, int freeit) argument
263 *passwdp = strdup(my_conn->bindPW);
266 *passwdp = NULL;
272 if (*passwdp) {
273 free(*passwdp);
/macosx-10.9.5/CF-855.17/
H A DCFStringEncodings.c910 struct passwd passwdBuf, *passwdp = NULL; local
912 switch (getpwuid_r((uid_t)uid, &passwdBuf, passwdExtraBuf, sizeof(passwdExtraBuf), &passwdp)) {
916 passwdp = getpwuid((uid_t)uid);
919 passwdp = NULL;
921 if (passwdp) {
929 path = passwdp->pw_dir;
976 struct passwd *passwdp = getpwuid((uid_t)0); local
977 if (passwdp) {
978 const char *path = passwdp->pw_dir;
1003 struct passwd *passwdp local
[all...]
/macosx-10.9.5/hfs-226.1.1/mount_hfs/
H A Dmount_hfs.c835 struct passwd *passwdp; local
837 if ((passwdp = getpwuid(0))) { /* root account */
841 strlcpy(buffer, passwdp->pw_dir, sizeof(buffer));
/macosx-10.9.5/msdosfs-198/mount_msdos.tproj/
H A Dmount_msdos.c472 struct passwd *passwdp; local
483 if ((passwdp = getpwuid(getuid()))) {
484 strlcpy(buffer, passwdp->pw_dir, sizeof(buffer));
/macosx-10.9.5/msdosfs-198/msdos_util.tproj/
H A Ddosutil.c604 struct passwd *passwdp; local
615 if ((passwdp = getpwuid(getuid()))) {
616 strlcpy(buffer, passwdp->pw_dir, sizeof(buffer));
/macosx-10.9.5/hfs-226.1.1/hfs_util/
H A Dhfsutil_main.c251 struct passwd *passwdp; local
253 if ((passwdp = getpwuid(0))) { // root account
257 strlcpy(buffer, passwdp->pw_dir, sizeof(buffer));
/macosx-10.9.5/hfs-226.1.1/newfs_hfs/
H A Dmakehfs.c1960 struct passwd *passwdp; local
1962 if ((passwdp = getpwuid(0))) { // root account
1966 strlcpy(buffer, passwdp->pw_dir, sizeof(buffer));

Completed in 227 milliseconds