HomeSort by relevance Sort by last modified time
    Searched defs:Move (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/chromium/base/
file_descriptor_shuffle.cc 62 if (!delegate->Move(i->source, i->dest))
87 bool FileDescriptorTableInjection::Move(int src, int dest) {
file_descriptor_shuffle_unittest.cc 23 MOVE,
56 bool Move(int src, int dest) {
57 actions_.push_back(Action(Action::MOVE, src, dest));
105 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
116 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
117 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 2, 3));
127 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
139 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 10, 0));
153 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 0, 1));
154 EXPECT_TRUE(tracer.actions()[2] == Action(Action::MOVE, kDuplicateBase, 0))
    [all...]
file_util_posix.cc 186 bool Move(const FilePath& from_path, const FilePath& to_path) {
file_util_proxy.cc 9 // TODO(jianli): Move the code from anonymous namespace to base namespace so
15 // Performs common checks for move and copy.
17 // checks are passed (so that the copy/move correctly overwrites the
30 // It is an error to try to copy/move an entry into its child.
50 // It is an error to copy/move an entry into the same path.
55 // It is an error to copy/move an entry to a non-empty directory.
56 // Otherwise the copy/move attempt must overwrite the destination, but
57 // the file_util's Copy or Move method doesn't perform overwrite
59 // TODO(kinuko): may be better to change the file_util::{Copy,Move}.
374 if (!file_util::Move(src_file_path_, dest_file_path_)
    [all...]
file_util_win.cc 67 // Move to the next drive letter string, which starts one
178 bool Move(const FilePath& from_path, const FilePath& to_path) {
198 // the move by using Copy and Delete. Ideally we could check whether
311 // Like Move, this function is not transactional, so we just
    [all...]