OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsFileInUse
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/installer/util/
copy_tree_work_item.h
49
bool
IsFileInUse
(const base::FilePath& path);
copy_tree_work_item.cc
52
(
IsFileInUse
(dest_path_))) {
128
bool CopyTreeWorkItem::
IsFileInUse
(const base::FilePath& path) {
installer_state.h
228
static bool
IsFileInUse
(const base::FilePath& file);
installer_state_unittest.cc
55
static bool
IsFileInUse
(const base::FilePath& file) {
56
return InstallerState::
IsFileInUse
(file);
470
TEST_F(InstallerStateTest,
IsFileInUse
) {
477
EXPECT_FALSE(MockInstallerState::
IsFileInUse
(temp_file));
490
EXPECT_TRUE(MockInstallerState::
IsFileInUse
(temp_file));
494
EXPECT_FALSE(MockInstallerState::
IsFileInUse
(temp_file));
installer_state.cc
590
bool InstallerState::
IsFileInUse
(const base::FilePath& file) {
643
if (base::PathExists(file) &&
IsFileInUse
(file))
copy_tree_work_item_unittest.cc
48
bool
IsFileInUse
(const base::FilePath& path) {
473
if (
IsFileInUse
(file_name_to))
476
ASSERT_FALSE(
IsFileInUse
(file_name_to));
Completed in 351 milliseconds