OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tls_auth_file_
(Results
1 - 3
of
3
) sorted by null
/system/connectivity/shill/vpn/
openvpn_driver.cc
212
if (!
tls_auth_file_
.empty()) {
213
base::DeleteFile(
tls_auth_file_
, false);
214
tls_auth_file_
.clear();
650
if (!base::CreateTemporaryFile(&
tls_auth_file_
) ||
651
base::WriteFile(
tls_auth_file_
, contents.data(), contents.size()) !=
658
AppendOption("tls-auth",
tls_auth_file_
.value(), options);
[
all
...]
openvpn_driver.h
282
base::FilePath
tls_auth_file_
;
member in class:shill::OpenVPNDriver
openvpn_driver_unittest.cc
744
ASSERT_FALSE(driver_->
tls_auth_file_
.empty());
745
ExpectInFlags(options, "tls-auth", driver_->
tls_auth_file_
.value());
747
EXPECT_TRUE(base::ReadFileToString(driver_->
tls_auth_file_
, &contents));
[
all
...]
Completed in 80 milliseconds