Home
last modified time | relevance | path

Searched refs:shim_pid_ (Results 1 – 3 of 3) sorted by relevance

/system/connectivity/shill/
Dcrypto_util_proxy.cc68 shim_pid_(0) { in CryptoUtilProxy()
164 if (shim_pid_) { in StartShimForCommand()
172 shim_pid_ = process_manager_->StartProcessInMinijailWithPipes( in StartShimForCommand()
183 if (shim_pid_ == -1) { in StartShimForCommand()
211 LOG(INFO) << "Started crypto-util shim at " << shim_pid_; in StartShimForCommand()
239 if (shim_pid_) { in CleanupShim()
240 process_manager_->UpdateExitCallback(shim_pid_, in CleanupShim()
243 process_manager_->StopProcess(shim_pid_); in CleanupShim()
253 shim_pid_ = 0; in OnShimDeath()
269 CHECK(shim_pid_); in HandleShimStdinReady()
[all …]
Dcrypto_util_proxy_unittest.cc169 EXPECT_EQ(crypto_util_proxy_.shim_pid_, kTestShimPid); in StartAndCheckShim()
184 if (crypto_util_proxy_.shim_pid_) { in ExpectCleanup()
189 EXPECT_CALL(process_manager_, StopProcess(crypto_util_proxy_.shim_pid_)) in ExpectCleanup()
197 EXPECT_FALSE(crypto_util_proxy_.shim_pid_); in AssertShimDead()
218 EXPECT_EQ(crypto_util_proxy_.shim_pid_, 0); in StopAndCheckShim()
Dcrypto_util_proxy.h144 pid_t shim_pid_; variable