Home
last modified time | relevance | path

Searched refs:file_wrapper (Results 1 – 12 of 12) sorted by relevance

/third_party/boost/boost/interprocess/detail/
Dfile_wrapper.hpp34 class file_wrapper class
37 BOOST_MOVABLE_BUT_NOT_COPYABLE(file_wrapper)
43 file_wrapper();
47file_wrapper(create_only_t, const char *name, mode_t mode, const permissions &perm = permissions()) in file_wrapper() function in boost::interprocess::ipcdetail::file_wrapper
53file_wrapper(open_or_create_t, const char *name, mode_t mode, const permissions &perm = permissio… in file_wrapper() function in boost::interprocess::ipcdetail::file_wrapper
58 file_wrapper(open_only_t, const char *name, mode_t mode) in file_wrapper() function in boost::interprocess::ipcdetail::file_wrapper
64 file_wrapper(BOOST_RV_REF(file_wrapper) moved) in file_wrapper() function in boost::interprocess::ipcdetail::file_wrapper
71 file_wrapper &operator=(BOOST_RV_REF(file_wrapper) moved) in operator =()
73 file_wrapper tmp(boost::move(moved)); in operator =()
80 void swap(file_wrapper &other);
[all …]
/third_party/boost/libs/interprocess/test/
Dmapped_file_test.cpp51 <boost::interprocess::ipcdetail::file_wrapper, 0, true, false>
54 <boost::interprocess::ipcdetail::file_wrapper, 0, true, false> mapped_file;
72 <boost::interprocess::ipcdetail::file_wrapper, 0, true, false> mapped_file; in main()
Dxsi_shared_memory_mapping_test.cpp66 { ipcdetail::file_wrapper(create_only, names[0], read_write); } in main()
Dmanaged_xsi_shared_memory_test.cpp66 { ipcdetail::file_wrapper(create_only, ShmemName, read_write); } in main()
/third_party/boost/boost/interprocess/
Dmanaged_mapped_file.hpp45 < file_wrapper, AllocationAlgorithm::Alignment, true, false> type;
71 typedef ipcdetail::file_wrapper device_type;
/third_party/python/Doc/library/
Dasyncore.rst276 :class:`file_wrapper` constructor.
280 .. class:: file_wrapper()
282 A file_wrapper takes an integer file descriptor and calls :func:`os.dup` to
284 of the file_wrapper. This class implements sufficient methods to emulate a
Dwsgiref.rst707 A ``wsgi.file_wrapper`` factory, or ``None``. The default value of this
/third_party/python/Lib/test/
Dtest_asyncore.py386 w = asyncore.file_wrapper(fd)
400 w = asyncore.file_wrapper(fd)
425 f = asyncore.file_wrapper(fd)
434 f = asyncore.file_wrapper(fd)
/third_party/python/Lib/
Dasyncore.py592 class file_wrapper: class
647 self.socket = file_wrapper(fd)
/third_party/python/Misc/NEWS.d/
D3.5.0a1.rst3175 asyncore: emit a ResourceWarning when an unclosed file_wrapper object is
/third_party/boost/libs/interprocess/doc/
Dinterprocess.qbk6945 …/pull/3 GitHub Pull #3] (['"Fix/mingw interprocess_exception throw in file_wrapper::priv_open_or_c…
/third_party/python/Misc/
DHISTORY1580 - Issue #11453: asyncore: emit a ResourceWarning when an unclosed file_wrapper
13182 - Issue #9354: Provide getsockopt() in asyncore's file_wrapper.