/system/tools/aidl/tests/ |
D | aidl_test_client_file_descriptors.cpp | 30 using android::base::unique_fd; 37 void DoPipe(unique_fd* read_side, unique_fd* write_side) { in DoPipe() 46 void WriteStringToFd(const std::string& str, const unique_fd& fd) { in WriteStringToFd() 53 void ReadFdToStringAndCompare(const unique_fd& fd, const std::string& str) { in ReadFdToStringAndCompare() 68 unique_fd read_fd; in TEST_F() 69 unique_fd write_fd; in TEST_F() 72 unique_fd return_fd; in TEST_F() 87 std::vector<unique_fd> array; in TEST_F() 91 std::vector<unique_fd> repeated; in TEST_F() 97 repeated = std::vector<unique_fd>(array.size()); in TEST_F() [all …]
|
/system/hardware/interfaces/suspend/1.0/default/ |
D | SystemSuspend.h | 41 using ::android::base::unique_fd; 97 SystemSuspend(unique_fd wakeupCountFd, unique_fd stateFd, unique_fd suspendStatsFd, 98 size_t maxStatsEntries, unique_fd kernelWakelockStatsFd, 99 unique_fd wakeupReasonsFd, unique_fd suspendTimeFd, 124 unique_fd mWakeupCountFd; 125 unique_fd mStateFd; 127 unique_fd mSuspendStatsFd; 128 unique_fd mSuspendTimeFd; 152 unique_fd mWakeLockFd; 153 unique_fd mWakeUnlockFd; [all …]
|
D | main.cpp | 38 using android::base::unique_fd; 67 unique_fd wakeupCountFd{TEMP_FAILURE_RETRY(open(kSysPowerWakeupCount, O_CLOEXEC | O_RDWR))}; in main() 71 unique_fd stateFd{TEMP_FAILURE_RETRY(open(kSysPowerState, O_CLOEXEC | O_RDWR))}; in main() 75 unique_fd kernelWakelockStatsFd{ in main() 80 unique_fd suspendStatsFd{ in main() 85 unique_fd wakeupReasonsFd{ in main() 90 unique_fd suspendTimeFd{TEMP_FAILURE_RETRY(open(kSysKernelSuspendTime, O_CLOEXEC | O_RDONLY))}; in main()
|
/system/core/fs_mgr/libdm/ |
D | loop_control_test.cpp | 33 using unique_fd = android::base::unique_fd; typedef 35 static unique_fd TempFile() { in TempFile() 38 unique_fd fd(CreateTempFile("temp", 0)); in TempFile() 53 unique_fd fd = TempFile(); in TEST() 60 unique_fd loop_fd(open(loop.device().c_str(), O_RDWR)); in TEST()
|
D | test_util.cpp | 29 using unique_fd = android::base::unique_fd; typedef 33 unique_fd CreateTempFile(const std::string& name, size_t size) { in CreateTempFile() 34 unique_fd fd(syscall(__NR_memfd_create, name.c_str(), MFD_ALLOW_SEALING)); in CreateTempFile()
|
/system/core/debuggerd/tombstoned/include/tombstoned/ |
D | tombstoned.h | 25 bool tombstoned_connect(pid_t pid, android::base::unique_fd* tombstoned_socket, 26 android::base::unique_fd* text_output_fd, 27 android::base::unique_fd* proto_output_fd, DebuggerdDumpType dump_type); 29 bool tombstoned_connect(pid_t pid, android::base::unique_fd* tombstoned_socket, 30 android::base::unique_fd* text_output_fd, DebuggerdDumpType dump_type);
|
/system/core/debuggerd/tombstoned/ |
D | tombstoned_client.cpp | 33 using android::base::unique_fd; 35 bool tombstoned_connect(pid_t pid, unique_fd* tombstoned_socket, unique_fd* text_output_fd, in tombstoned_connect() 40 bool tombstoned_connect(pid_t pid, unique_fd* tombstoned_socket, unique_fd* text_output_fd, in tombstoned_connect() 41 unique_fd* proto_output_fd, DebuggerdDumpType dump_type) { in tombstoned_connect() 42 unique_fd sockfd( in tombstoned_connect() 62 unique_fd tmp_output_fd, tmp_proto_fd; in tombstoned_connect()
|
D | intercept_manager.h | 39 android::base::unique_fd sockfd; 42 android::base::unique_fd output_fd; 56 bool GetIntercept(pid_t pid, DebuggerdDumpType dump_type, android::base::unique_fd* out_fd);
|
/system/libbase/ |
D | cmsg_test.cpp | 28 using android::base::unique_fd; 57 unique_fd send; 58 unique_fd recv; 63 unique_fd fd1; 64 unique_fd fd2; 74 unique_fd received; in TEST_P() 86 unique_fd received1, received2; in TEST_P() 108 unique_fd received; in TEST_P() 121 unique_fd received; in TEST_P() 139 std::vector<unique_fd> received1; in TEST_P() [all …]
|
/system/core/libsysutils/src/ |
D | SocketListener_test.cpp | 35 using android::base::unique_fd; 46 unique_fd serverSocket(const std::string& path) { in serverSocket() 49 unique_fd fd(socket(PF_UNIX, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK, 0)); in serverSocket() 62 unique_fd clientSocket(const std::string& path) { in clientSocket() 63 unique_fd fd(socket(PF_UNIX, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK, 0)); in clientSocket() 140 unique_fd client_fd = clientSocket(mSocketPath); in testCommand() 149 unique_fd mSserverFd; 176 unique_fd client1 = clientSocket(mSocketPath); in TEST_F() 177 unique_fd client2 = clientSocket(mSocketPath); in TEST_F()
|
/system/core/debuggerd/ |
D | debuggerd_test.cpp | 69 using android::base::unique_fd; 114 static void tombstoned_intercept(pid_t target_pid, unique_fd* intercept_fd, unique_fd* output_fd, in tombstoned_intercept() 127 unique_fd output_pipe_write; in tombstoned_intercept() 174 unique_fd crasher_pipe; 175 unique_fd intercept_fd; 180 void StartIntercept(unique_fd* output_fd, DebuggerdDumpType intercept_type = kDebuggerdTombstone); 213 void CrasherTest::StartIntercept(unique_fd* output_fd, DebuggerdDumpType intercept_type) { in StartIntercept() 240 unique_fd read_pipe; in StartProcess() 241 unique_fd crasher_read_pipe; in StartProcess() 292 static void ConsumeFd(unique_fd fd, std::string* output) { in ConsumeFd() [all …]
|
/system/netd/client/ |
D | NetdClientTest.cpp | 64 android::base::unique_fd ipv4(socketFuncPtr(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, 0)), in expectAllowNetworkingForProcess() 70 android::base::unique_fd dnsproxydSocket(openDnsProxyFuncPtr()); in expectAllowNetworkingForProcess() 76 android::base::unique_fd unixSocket(socketFuncPtr(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0)); in expectNotAllowNetworkingForProcess() 78 android::base::unique_fd ipv4(socketFuncPtr(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, 0)); in expectNotAllowNetworkingForProcess() 81 android::base::unique_fd ipv6(socketFuncPtr(AF_INET6, SOCK_STREAM | SOCK_CLOEXEC, 0)); in expectNotAllowNetworkingForProcess() 86 android::base::unique_fd dnsproxydSocket(openDnsProxyFuncPtr()); in expectNotAllowNetworkingForProcess() 100 android::base::unique_fd clientFd, serverFd; in TEST()
|
/system/libbase/tidy/ |
D | unique_fd_test.cpp | 23 extern void consume_unique_fd(android::base::unique_fd fd); 25 TEST(unique_fd, bugprone_use_after_move) { in TEST() argument 27 android::base::unique_fd ufd(open("/dev/null", O_RDONLY | O_CLOEXEC)); in TEST()
|
/system/core/fs_mgr/tests/ |
D | file_wait_test.cpp | 25 using android::base::unique_fd; 43 unique_fd fd(open(test_file_.c_str(), O_CREAT | O_TRUNC | O_RDWR, 0700)); in TEST_F() 58 unique_fd fd(open(test_file_.c_str(), O_CREAT | O_TRUNC | O_RDWR, 0700)); in TEST_F() 67 unique_fd fd(open(test_file_.c_str(), O_CREAT | O_TRUNC | O_RDWR, 0700)); in TEST_F() 76 unique_fd fd(open(test_file_.c_str(), O_CREAT | O_TRUNC | O_RDWR, 0700)); in TEST_F()
|
/system/netd/tests/ |
D | netd_client_test.cpp | 41 android::base::unique_fd sock(socket(AF_INET6, SOCK_DGRAM | SOCK_CLOEXEC, IPPROTO_UDP)); in checkNetworkConnectivity() 61 android::base::unique_fd ipv4(socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, 0)), in expectHasNetworking() 80 android::base::unique_fd unixSocket(socket(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0)); in expectNoNetworking() 82 android::base::unique_fd ipv4(socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, 0)); in expectNoNetworking() 85 android::base::unique_fd ipv6(socket(AF_INET6, SOCK_STREAM | SOCK_CLOEXEC, 0)); in expectNoNetworking()
|
/system/core/fs_mgr/libsnapshot/include/libsnapshot/ |
D | snapshot_writer.h | 57 android::base::unique_fd source_fd_; 66 bool SetCowDevice(android::base::unique_fd&& cow_device); 81 android::base::unique_fd cow_device_; 92 void SetSnapshotDevice(android::base::unique_fd&& snapshot_fd, uint64_t cow_size); 108 android::base::unique_fd snapshot_fd_;
|
/system/memory/libmeminfo/ |
D | pageacct.cpp | 26 using unique_fd = ::android::base::unique_fd; typedef 47 unique_fd count_fd(TEMP_FAILURE_RETRY(open("/proc/kpagecount", O_RDONLY | O_CLOEXEC))); in InitPageAcct() 56 unique_fd flags_fd(TEMP_FAILURE_RETRY(open("/proc/kpageflags", O_RDONLY | O_CLOEXEC))); in InitPageAcct() 65 unique_fd idle_fd( in InitPageAcct()
|
/system/core/fs_mgr/liblp/ |
D | test_partition_opener.cpp | 24 using android::base::unique_fd; 31 unique_fd TestPartitionOpener::Open(const std::string& partition_name, int flags) const { in Open() 37 return unique_fd{dup(iter->second)}; in Open()
|
D | io_test.cpp | 40 using unique_fd = android::base::unique_fd; typedef 51 static unique_fd CreateFakeDisk(off_t size) { in CreateFakeDisk() 52 unique_fd fd(syscall(__NR_memfd_create, "fake_disk", MFD_ALLOW_SEALING)); in CreateFakeDisk() 77 static unique_fd CreateFakeDisk() { in CreateFakeDisk() 103 static unique_fd CreateFlashedDisk() { in CreateFlashedDisk() 108 unique_fd fd = CreateFakeDisk(); in CreateFlashedDisk() 127 unique_fd fd = CreateFakeDisk(); in TEST_F() 150 unique_fd fd = CreateFakeDisk(); in TEST_F() 164 unique_fd fd = CreateFakeDisk(); in TEST_F() 210 unique_fd fd = CreateFlashedDisk(); in TEST_F() [all …]
|
/system/libbase/include/android-base/ |
D | cmsg.h | 62 std::vector<android::base::unique_fd>* fds); 83 std::vector<unique_fd*> fds; in ReceiveFileDescriptors() 86 std::vector<unique_fd> result; in ReceiveFileDescriptors() 90 for (unique_fd* fd : fds) { in ReceiveFileDescriptors()
|
/system/core/fastboot/device/ |
D | usb.h | 50 android::base::unique_fd control; 51 android::base::unique_fd bulk_out; // "out" from the host's perspective => source for adbd 52 android::base::unique_fd bulk_in; // "in" from the host's perspective => sink for adbd
|
/system/core/libcutils/ |
D | ashmem_test.cpp | 30 using android::base::unique_fd; 32 void TestCreateRegion(size_t size, unique_fd &fd, int prot) { in TestCreateRegion() 33 fd = unique_fd(ashmem_create_region(nullptr, size)); in TestCreateRegion() 45 void TestMmap(const unique_fd& fd, size_t size, int prot, void** region, off_t off = 0) { in TestMmap() 52 void TestProtDenied(const unique_fd &fd, size_t size, int prot) { in TestProtDenied() 58 void TestProtIs(const unique_fd& fd, int prot) { in TestProtIs() 75 unique_fd fd; in TEST() 97 unique_fd fd; in TEST() 133 unique_fd fd; in TEST() 191 unique_fd fd; in TEST() [all …]
|
/system/memory/libmeminfo/include/meminfo/ |
D | pageacct.h | 63 ::android::base::unique_fd kpagecount_fd_; 64 ::android::base::unique_fd kpageflags_fd_; 65 ::android::base::unique_fd pageidle_fd_;
|
/system/vold/ |
D | Loop.cpp | 49 using android::base::unique_fd; 55 unique_fd ctl_fd(open("/dev/loop-control", O_RDWR | O_CLOEXEC)); in create() 69 unique_fd target_fd; in create() 85 unique_fd device_fd(open(out_device.c_str(), O_RDWR | O_CLOEXEC)); in create() 143 unique_fd fd(open(path.c_str(), O_RDWR | O_CLOEXEC)); in destroyAll() 175 unique_fd fd(open(file, O_CREAT | O_WRONLY | O_TRUNC | O_CLOEXEC, 0600)); in createImageFile()
|
/system/core/debuggerd/client/ |
D | debuggerd_client_test.cpp | 38 using android::base::unique_fd; 73 unique_fd pipe_read, pipe_write; in TEST() 108 unique_fd pipe_read, pipe_write; in TEST() 122 unique_fd output_read, output_write; in TEST()
|