Home
last modified time | relevance | path

Searched refs:source_in (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/boost/process/detail/windows/
Dasync_pipe.hpp219 auto source_in = const_cast<handle_type&>(_source).native_handle(); in source() local
220 if (source_in == ::boost::winapi::INVALID_HANDLE_VALUE_) in source()
223 proc, source_in, proc, &source, 0, in source()
259 auto source_in = const_cast<handle_type&>(p._source).native_handle(); in async_pipe() local
262 if (source_in == ::boost::winapi::INVALID_HANDLE_VALUE_) in async_pipe()
265 proc, source_in, proc, &source, 0, in async_pipe()
333 auto source_in = p.native_source(); in operator =() local
336 if (source_in == ::boost::winapi::INVALID_HANDLE_VALUE_) in operator =()
339 proc, source_in.native_handle(), proc, &source, 0, in operator =()
370 auto &source_in = const_cast<::boost::asio::windows::stream_handle &>(p._source); in operator =() local
[all …]
/third_party/boost/boost/process/detail/posix/
Dasync_pipe.hpp185 … auto source_in = const_cast<::boost::asio::posix::stream_descriptor &>(_source).native_handle(); in source() local
186 return ::boost::asio::posix::stream_descriptor(ios, ::dup(source_in)); in source()
226 auto source_in = const_cast<::boost::asio::posix::stream_descriptor &>(_source).native_handle(); in async_pipe() local
228 if (source_in == -1) in async_pipe()
232 _source.assign(::dup(source_in)); in async_pipe()
253 … auto source_in = const_cast<::boost::asio::posix::stream_descriptor &>(p._source).native_handle(); in operator =() local
255 if (source_in == -1) in operator =()
259 source = ::dup(source_in); in operator =()
292 auto source_in = const_cast<::boost::asio::posix::stream_descriptor &>(_source).native_handle(); in operator basic_pipe<CharT,Traits>() local
296 if (source_in == -1) in operator basic_pipe<CharT,Traits>()
[all …]
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dparser_impl.h217 Source source_in);
279 VarDeclInfo(Source source_in,
Dparser_impl.cc221 Source source_in) in TypedIdentifier() argument
222 : type(type_in), name(std::move(name_in)), source(std::move(source_in)) {} in TypedIdentifier()
250 ParserImpl::VarDeclInfo::VarDeclInfo(Source source_in, in VarDeclInfo() argument
255 : source(std::move(source_in)), in VarDeclInfo()