HomeSort by relevance Sort by last modified time
    Searched refs:ResetPidByFile (Results 1 - 4 of 4) sorted by null

  /external/libbrillo/brillo/
process.h 147 virtual bool ResetPidByFile(const std::string& pid_file) = 0;
185 virtual bool ResetPidByFile(const std::string& pid_file);
206 FRIEND_TEST(ProcessTest, ResetPidByFile);
process_mock.h 40 MOCK_METHOD1(ResetPidByFile, bool(const std::string& pid_file));
process_unittest.cc 302 TEST_F(ProcessTest, ResetPidByFile) {
304 EXPECT_FALSE(process_.ResetPidByFile(pid_path.value()));
306 EXPECT_TRUE(process_.ResetPidByFile(pid_path.value()));
308 // The purpose of this unit test is to check if Process::ResetPidByFile() can
process.cc 394 bool ProcessImpl::ResetPidByFile(const std::string& pid_file) {

Completed in 1075 milliseconds