• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/platform/network/blackberry/

Lines Matching refs:protectionSpace

130 bool CredentialBackingStore::addLogin(const ProtectionSpace& protectionSpace, const Credential& credential)
138 m_addLoginStatement->bindText(1, protectionSpace.host());
139 m_addLoginStatement->bindInt(2, protectionSpace.port());
140 m_addLoginStatement->bindInt(3, static_cast<int>(protectionSpace.serverType()));
141 m_addLoginStatement->bindText(4, protectionSpace.realm());
142 m_addLoginStatement->bindInt(5, static_cast<int>(protectionSpace.authenticationScheme()));
162 unsigned hash = hashCredentialInfo(protectionSpace, credential.user());
166 bool CredentialBackingStore::updateLogin(const ProtectionSpace& protectionSpace, const Credential& credential)
182 m_updateLoginStatement->bindText(3, protectionSpace.host());
183 m_updateLoginStatement->bindInt(4, protectionSpace.port());
184 m_updateLoginStatement->bindInt(5, static_cast<int>(protectionSpace.serverType()));
185 m_updateLoginStatement->bindText(6, protectionSpace.realm());
186 m_updateLoginStatement->bindInt(7, static_cast<int>(protectionSpace.authenticationScheme()));
198 unsigned hash = hashCredentialInfo(protectionSpace, credential.user());
202 bool CredentialBackingStore::hasLogin(const ProtectionSpace& protectionSpace)
210 m_hasLoginStatement->bindText(1, protectionSpace.host());
211 m_hasLoginStatement->bindInt(2, protectionSpace.port());
212 m_hasLoginStatement->bindInt(3, static_cast<int>(protectionSpace.serverType()));
213 m_hasLoginStatement->bindText(4, protectionSpace.realm());
214 m_hasLoginStatement->bindInt(5, static_cast<int>(protectionSpace.authenticationScheme()));
227 Credential CredentialBackingStore::getLogin(const ProtectionSpace& protectionSpace)
235 m_getLoginStatement->bindText(1, protectionSpace.host());
236 m_getLoginStatement->bindInt(2, protectionSpace.port());
237 m_getLoginStatement->bindInt(3, static_cast<int>(protectionSpace.serverType()));
238 m_getLoginStatement->bindText(4, protectionSpace.realm());
239 m_getLoginStatement->bindInt(5, static_cast<int>(protectionSpace.authenticationScheme()));
251 unsigned hash = hashCredentialInfo(protectionSpace, username);
260 bool CredentialBackingStore::removeLogin(const ProtectionSpace& protectionSpace, const String& username)
268 m_removeLoginStatement->bindText(1, protectionSpace.host());
269 m_removeLoginStatement->bindInt(2, protectionSpace.port());
270 m_removeLoginStatement->bindInt(3, static_cast<int>(protectionSpace.serverType()));
271 m_removeLoginStatement->bindText(4, protectionSpace.realm());
272 m_removeLoginStatement->bindInt(5, static_cast<int>(protectionSpace.authenticationScheme()));
282 unsigned hash = hashCredentialInfo(protectionSpace, username);
289 bool CredentialBackingStore::addNeverRemember(const ProtectionSpace& protectionSpace)
297 m_addNeverRememberStatement->bindText(1, protectionSpace.host());
298 m_addNeverRememberStatement->bindInt(2, protectionSpace.port());
299 m_addNeverRememberStatement->bindInt(3, static_cast<int>(protectionSpace.serverType()));
300 m_addNeverRememberStatement->bindText(4, protectionSpace.realm());
301 m_addNeverRememberStatement->bindInt(5, static_cast<int>(protectionSpace.authenticationScheme()));
311 bool CredentialBackingStore::hasNeverRemember(const ProtectionSpace& protectionSpace)
319 m_hasNeverRememberStatement->bindText(1, protectionSpace.host());
320 m_hasNeverRememberStatement->bindInt(2, protectionSpace.port());
321 m_hasNeverRememberStatement->bindInt(3, static_cast<int>(protectionSpace.serverType()));
322 m_hasNeverRememberStatement->bindText(4, protectionSpace.realm());
323 m_hasNeverRememberStatement->bindInt(5, static_cast<int>(protectionSpace.authenticationScheme()));
336 bool CredentialBackingStore::removeNeverRemember(const ProtectionSpace& protectionSpace)
344 m_removeNeverRememberStatement->bindText(1, protectionSpace.host());
345 m_removeNeverRememberStatement->bindInt(2, protectionSpace.port());
346 m_removeNeverRememberStatement->bindInt(3, static_cast<int>(protectionSpace.serverType()));
347 m_removeNeverRememberStatement->bindText(4, protectionSpace.realm());
348 m_removeNeverRememberStatement->bindInt(5, static_cast<int>(protectionSpace.authenticationScheme()));