Home | History | Annotate | Download | only in Plugins

Lines Matching refs:password

2295                                     password:(char**)passwordStr passwordLength:(uint32_t*)passwordLength
2301 CString password;
2302 if (!getAuthenticationInfo(protocolStr, hostStr, port, schemeStr, realmStr, username, password))
2309 *passwordLength = password.length();
2310 *passwordStr = static_cast<char*>(NPN_MemAlloc(password.length()));
2311 memcpy(*passwordStr, password.data(), password.length());