Home
last modified time | relevance | path

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

/external/libbrillo/brillo/
Dprocess.h147 virtual bool ResetPidByFile(const std::string& pid_file) = 0;
185 virtual bool ResetPidByFile(const std::string& pid_file);
206 FRIEND_TEST(ProcessTest, ResetPidByFile);
Dprocess_unittest.cc326 TEST_F(ProcessTest, ResetPidByFile) { in TEST_F() argument
328 EXPECT_FALSE(process_.ResetPidByFile(pid_path.value())); in TEST_F()
330 EXPECT_TRUE(process_.ResetPidByFile(pid_path.value())); in TEST_F()
Dprocess_mock.h40 MOCK_METHOD1(ResetPidByFile, bool(const std::string& pid_file));
Dprocess.cc403 bool ProcessImpl::ResetPidByFile(const std::string& pid_file) { in ResetPidByFile() function in brillo::ProcessImpl