OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cipher_strings
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/net/ssl/
ssl_cipher_suite_names_unittest.cc
47
const char* const
cipher_strings
[] = {
local
53
for (size_t i = 0; i < arraysize(
cipher_strings
); ++i) {
55
EXPECT_FALSE(ParseSSLCipherString(
cipher_strings
[i], &cipher_suite));
/external/chromium_org/chrome/browser/net/
ssl_config_service_manager_pref.cc
47
const std::vector<std::string>&
cipher_strings
) {
49
cipher_suites.reserve(
cipher_strings
.size());
51
for (std::vector<std::string>::const_iterator it =
cipher_strings
.begin();
52
it !=
cipher_strings
.end(); ++it) {
/external/chromium_org/chrome/browser/prefs/
command_line_pref_store.cc
172
std::vector<std::string>
cipher_strings
;
local
173
base::SplitString(cipher_suites, ',', &
cipher_strings
);
175
for (std::vector<std::string>::const_iterator it =
cipher_strings
.begin();
176
it !=
cipher_strings
.end(); ++it) {
Completed in 76 milliseconds