Home
last modified time | relevance | path

Searched refs:ResetPidByFile (Results 1 – 4 of 4) sorted by relevance

/external/libbrillo/brillo/
Dprocess.h153 virtual bool ResetPidByFile(const std::string& pid_file) = 0;
192 virtual bool ResetPidByFile(const std::string& pid_file);
213 FRIEND_TEST(ProcessTest, ResetPidByFile);
Dprocess_unittest.cc345 TEST_F(ProcessTest, ResetPidByFile) { in TEST_F() argument
347 EXPECT_FALSE(process_.ResetPidByFile(pid_path.value())); in TEST_F()
349 EXPECT_TRUE(process_.ResetPidByFile(pid_path.value())); in TEST_F()
Dprocess_mock.h42 MOCK_METHOD1(ResetPidByFile, bool(const std::string& pid_file));
Dprocess.cc412 bool ProcessImpl::ResetPidByFile(const std::string& pid_file) { in ResetPidByFile() function in brillo::ProcessImpl