Home
last modified time | relevance | path

Searched defs:UniqueFd (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/system/incremental_delivery/incfs/include/
H A Dincfs.h65 explicit UniqueFd(int fd) : fd_(fd) {} in UniqueFd() function
66 UniqueFd() : UniqueFd(-1) {} in UniqueFd() function
68 UniqueFd(UniqueFd&& other) noexcept : fd_(other.release()) {} in UniqueFd() function
/aosp_15_r20/packages/modules/Connectivity/staticlibs/netd/libnetdutils/include/netdutils/
DUniqueFd.h40 UniqueFd(Fd fd) : mFd(fd) {} in UniqueFd() function
49 UniqueFd(UniqueFd&& other) { std::swap(mFd, other.mFd); } in UniqueFd() function
/aosp_15_r20/device/google/cuttlefish/host/commands/process_sandboxer/
Dunique_fd.cpp25 UniqueFd::UniqueFd(int fd) : fd_(fd) {} in UniqueFd() function in cuttlefish::process_sandboxer::UniqueFd
27 UniqueFd::UniqueFd(UniqueFd&& other) { std::swap(fd_, other.fd_); } in UniqueFd() function in cuttlefish::process_sandboxer::UniqueFd
Dsandbox_manager.cpp359 std::vector<std::pair<UniqueFd, int>> fds, in RunProcess()
394 std::vector<std::pair<UniqueFd, int>> fds, in RunSandboxedProcess()
459 std::vector<std::pair<UniqueFd, int>> fds, in RunProcessNoSandbox()
Dpidfd.cpp57 std::vector<std::pair<UniqueFd, int>> fds, in LaunchSubprocess()
/aosp_15_r20/hardware/google/graphics/common/libhwc2.1/libdrmresource/include/
Dautofd.h27 UniqueFd(int fd) : fd_(fd) { in UniqueFd() function
29 UniqueFd(UniqueFd &&rhs) { in UniqueFd() function
/aosp_15_r20/external/drm_hwcomposer/utils/
H A Dfd.h27 using UniqueFd = std::unique_ptr<int, void (*)(const int *)>; variable
/aosp_15_r20/frameworks/base/services/incremental/
H A DServiceWrappers.h80 using UniqueFd = incfs::UniqueFd; variable