/test/dittosuite/test/ |
D | write_file_test.cpp | 54 EXPECT_CALL(syscall_, Write(fd_, _, MockSyscall::kDefaultFileSize, 0)); in TEST_F() 64 EXPECT_CALL(syscall_, Write(fd_, _, MockSyscall::kDefaultFileSize, 0)).Times(repeat); in TEST_F() 73 EXPECT_CALL(syscall_, Write(fd_, _, MockSyscall::kDefaultFileSize, 0)); in TEST_F() 83 EXPECT_CALL(syscall_, Write(fd_, _, MockSyscall::kDefaultFileSize, 0)).Times(repeat); in TEST_F() 104 EXPECT_CALL(syscall_, Write(fd_, _, block_size, 0)); in TEST_F() 105 EXPECT_CALL(syscall_, Write(fd_, _, block_size, block_size)); in TEST_F() 106 EXPECT_CALL(syscall_, Write(fd_, _, block_size, block_size * 2)); in TEST_F() 107 EXPECT_CALL(syscall_, Write(fd_, _, block_size, block_size * 3)); in TEST_F() 133 EXPECT_CALL(syscall_, Write(fd_, _, block_size, 0)); in TEST_F() 134 EXPECT_CALL(syscall_, Write(fd_, _, block_size, block_size)); in TEST_F() [all …]
|
D | invalidate_cache_test.cpp | 28 EXPECT_CALL(syscall_, Write(_, _, sizeof(char), 0)); in TEST_F()
|
/test/dittosuite/schema/ |
D | benchmark.proto | 56 // Write the 32-bit integer into the send parcel. 58 // Write the 64-bit integer into the send parcel. 60 // Write the UTF-16 string STR into the send parcel. 62 // Write the 32-bit single-precision number into the send parcel. 64 // Write the 64-bit double-precision number into the send parcel. 66 // Write a null binder into the send parcel. 69 // Write a file descriptor for the file with given path into the send 73 // Write an ashmem file descriptor for a region containing the data 77 // Write the file descriptor into the send parcel.
|
/test/dittosuite/src/ |
D | invalidate_cache.cpp | 33 if (syscall_.Write(fd, &data, sizeof(char), 0) == -1) { in RunSingle()
|
D | syscall.cpp | 142 int64_t Syscall::Write(int fd, char* buf, int64_t count, int64_t offset) { in Write() function in dittosuite::Syscall
|
D | read_write_file.cpp | 125 if (syscall_.Write(fd, buffer_.get(), unit.count, unit.offset) == -1) { in RunSingle()
|
/test/dittosuite/include/ditto/ |
D | syscall.h | 66 virtual int64_t Write(int fd, char* buf, int64_t count, int64_t offset) = 0; 93 int64_t Write(int fd, char* buf, int64_t count, int64_t offset) override;
|
/test/dittosuite/test/include/ |
D | mock_syscall.h | 52 ON_CALL(*this, Write(::testing::_, ::testing::_, ::testing::_, ::testing::_)) in MockSyscall() 75 MOCK_METHOD(int64_t, Write, (int fd, char* buf, int64_t count, int64_t offset), (override));
|
/test/vts-testcase/kernel/bow/ |
D | BowTest.cpp | 264 int Write(SectorTypes type) { in Write() function in android::FileBowTestFixture 331 auto changed = Write(type); in WriteSubmit() 343 Write(type); in WriteRestore()
|
/test/dittosuite/ |
D | README.md | 422 T1 runs the following operations: Read, Write, Read, sends a request to T2 and 423 waits for the reply, then Write, Read. 424 T2 waits for a request, then Read, Write, then sends the reply to the requester.
|