Home
last modified time | relevance | path

Searched refs:Write (Results 1 – 10 of 10) sorted by relevance

/test/dittosuite/test/
Dwrite_file_test.cpp54 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 …]
Dinvalidate_cache_test.cpp28 EXPECT_CALL(syscall_, Write(_, _, sizeof(char), 0)); in TEST_F()
/test/dittosuite/schema/
Dbenchmark.proto56 // 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/
Dinvalidate_cache.cpp33 if (syscall_.Write(fd, &data, sizeof(char), 0) == -1) { in RunSingle()
Dsyscall.cpp142 int64_t Syscall::Write(int fd, char* buf, int64_t count, int64_t offset) { in Write() function in dittosuite::Syscall
Dread_write_file.cpp125 if (syscall_.Write(fd, buffer_.get(), unit.count, unit.offset) == -1) { in RunSingle()
/test/dittosuite/include/ditto/
Dsyscall.h66 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/
Dmock_syscall.h52 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/
DBowTest.cpp264 int Write(SectorTypes type) { in Write() function in android::FileBowTestFixture
331 auto changed = Write(type); in WriteSubmit()
343 Write(type); in WriteRestore()
/test/dittosuite/
DREADME.md422 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.