Searched refs:args_map (Results 1 - 4 of 4) sorted by relevance

/external/boringssl/src/tool/
H A Dserver.cc47 std::map<std::string, std::string> args_map; local
49 if (!ParseKeyValueArguments(&args_map, args, kArguments)) {
59 if (args_map.count("-key") != 0) {
60 key_file = args_map["-key"];
71 if (args_map.count("-cipher") != 0 &&
72 !SSL_CTX_set_cipher_list(ctx, args_map["-cipher"].c_str())) {
78 if (!Accept(&sock, args_map["-accept"])) {
H A Dclient.cc117 std::map<std::string, std::string> args_map; local
119 if (!ParseKeyValueArguments(&args_map, args, kArguments)) {
136 if (args_map.count("-cipher") != 0 &&
137 !SSL_CTX_set_cipher_list(ctx.get(), args_map["-cipher"].c_str())) {
142 if (args_map.count("-max-version") != 0) {
144 if (!VersionFromString(&version, args_map["-max-version"])) {
146 args_map["-max-version"].c_str());
152 if (args_map.count("-min-version") != 0) {
154 if (!VersionFromString(&version, args_map["-min-version"])) {
156 args_map["
[all...]
H A Drand.cc54 std::map<std::string, std::string> args_map; local
55 if (!ParseKeyValueArguments(&args_map, args_copy, kArguments)) {
60 hex = args_map.count("-hex") > 0;
H A Dpkcs12.cc59 std::map<std::string, std::string> args_map; local
61 if (!ParseKeyValueArguments(&args_map, args, kArguments) ||
62 args_map["-dump"].empty()) {
67 int fd = open(args_map["-dump"].c_str(), O_RDONLY);

Completed in 152 milliseconds