Searched refs:target_fd (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/mojo/embedder/
H A Dplatform_channel_pair_posix.cc26 int target_fd) {
28 if (file_handle_mapping[i].second == target_fd)
95 int target_fd = base::GlobalDescriptors::kBaseDescriptor; local
96 while (IsTargetDescriptorUsed(*handle_passing_info, target_fd))
97 target_fd++;
100 std::pair<int, int>(client_handle_.get().fd, target_fd));
111 base::IntToString(target_fd));
24 IsTargetDescriptorUsed( const base::FileHandleMappingVector& file_handle_mapping, int target_fd) argument
/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp1625 int target_fd = open(path, flags, 0666); local
1627 if (target_fd == -1)
1630 return (dup2(target_fd, fd) == -1) ? false : true;
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp2152 int target_fd = open(path, flags, 0666); local
2154 if (target_fd == -1)
2157 return (dup2(target_fd, fd) == -1) ? false : true;

Completed in 108 milliseconds