| /netbsd-src/external/apache2/llvm/dist/libcxx/src/ |
| H A D | random.cpp | 46 random_device::random_device(const string& __token) in random_device() argument 48 if (__token != "/dev/urandom") in random_device() 49 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); in random_device() 69 random_device::random_device(const string& __token) 71 if (__token != "/dev/urandom") 72 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); 87 random_device::random_device(const string& __token) 88 : __f_(open(__token.c_str(), O_RDONLY)) 91 __throw_system_error(errno, ("random_device failed to open " + __token).c_str()); 124 random_device::random_device(const string& __token) [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/ |
| H A D | socket | 958 _CompletionToken&& __token) 960 async_completion<_CompletionToken, void(error_code)> __init{__token}; 1021 async_wait(wait_type __w, _CompletionToken&& __token) 1023 async_completion<_CompletionToken, void(error_code)> __init{__token}; 1176 _CompletionToken&& __token) 1179 std::forward<_CompletionToken>(__token)); 1186 _CompletionToken&& __token) 1189 __init{__token}; 1280 _CompletionToken&& __token) 1284 std::forward<_CompletionToken>(__token)); [all …]
|
| H A D | executor | 320 dispatch(_CompletionToken&& __token); 324 dispatch(const _Executor& __ex, _CompletionToken&& __token); 328 dispatch(_ExecutionContext& __ctx, _CompletionToken&& __token); 334 post(_CompletionToken&& __token); 338 post(const _Executor& __ex, _CompletionToken&& __token); 342 post(_ExecutionContext& __ctx, _CompletionToken&& __token); 348 defer(_CompletionToken&& __token); 351 defer(const _Executor& __ex, _CompletionToken&& __token); 354 defer(_ExecutionContext& __ctx, _CompletionToken&& __token); 1341 dispatch(_CompletionToken&& __token) [all …]
|
| H A D | buffer | 742 _CompletionToken&& __token) 752 _CompletionToken&& __token) 755 std::forward<_CompletionToken>(__token)); 763 _CompletionToken&& __token) 772 _CompletionToken&& __token) 775 std::forward<_CompletionToken>(__token)); 824 _CompletionToken&& __token); 830 _CompletionToken&& __token); 834 _DynamicBuffer&& __b, _CompletionToken&& __token); 840 _CompletionToken&& __token); [all …]
|
| H A D | timer | 155 async_wait(_CompletionToken&& __token) 157 async_completion<_CompletionToken, void(error_code)> __init(__token);
|
| H A D | internet | 1863 _CompletionToken&& __token) 1867 forward<_CompletionToken>(__token)); 1873 flags __f, _CompletionToken&& __token); // TODO 1911 _CompletionToken&& __token) 1915 forward<_CompletionToken>(__token)); 1922 flags __f, _CompletionToken&& __token); // TODO 1934 async_resolve(const endpoint_type& __ep, _CompletionToken&& __token);
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
| H A D | socket | 994 _CompletionToken&& __token) 996 async_completion<_CompletionToken, void(error_code)> __init{__token}; 1057 async_wait(wait_type __w, _CompletionToken&& __token) 1059 async_completion<_CompletionToken, void(error_code)> __init{__token}; 1212 _CompletionToken&& __token) 1215 std::forward<_CompletionToken>(__token)); 1222 _CompletionToken&& __token) 1225 __init{__token}; 1316 _CompletionToken&& __token) 1320 std::forward<_CompletionToken>(__token)); [all …]
|
| H A D | executor | 319 dispatch(_CompletionToken&& __token); 323 dispatch(const _Executor& __ex, _CompletionToken&& __token); 327 dispatch(_ExecutionContext& __ctx, _CompletionToken&& __token); 333 post(_CompletionToken&& __token); 337 post(const _Executor& __ex, _CompletionToken&& __token); 341 post(_ExecutionContext& __ctx, _CompletionToken&& __token); 347 defer(_CompletionToken&& __token); 350 defer(const _Executor& __ex, _CompletionToken&& __token); 353 defer(_ExecutionContext& __ctx, _CompletionToken&& __token); 1367 dispatch(_CompletionToken&& __token) [all …]
|
| H A D | buffer | 742 _CompletionToken&& __token) 752 _CompletionToken&& __token) 755 std::forward<_CompletionToken>(__token)); 763 _CompletionToken&& __token) 772 _CompletionToken&& __token) 775 std::forward<_CompletionToken>(__token)); 824 _CompletionToken&& __token); 830 _CompletionToken&& __token); 834 _DynamicBuffer&& __b, _CompletionToken&& __token); 840 _CompletionToken&& __token); [all …]
|
| H A D | timer | 155 async_wait(_CompletionToken&& __token) 157 async_completion<_CompletionToken, void(error_code)> __init(__token);
|
| H A D | internet | 1936 _CompletionToken&& __token) 1940 forward<_CompletionToken>(__token)); 1946 flags __f, _CompletionToken&& __token); // TODO 1984 _CompletionToken&& __token) 1988 forward<_CompletionToken>(__token)); 1995 flags __f, _CompletionToken&& __token); // TODO 2007 async_resolve(const endpoint_type& __ep, _CompletionToken&& __token);
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
| H A D | barrier | 226 using __token = typename __algorithm_t::arrival_token; 227 explicit arrival_token(__token __tok) noexcept : _M_tok(__tok) { } 228 __token _M_tok;
|
| H A D | stop_token | 583 stop_callback(const stop_token& __token, _Cb&& __cb) 587 if (auto __state = __token._M_state) 597 stop_callback(stop_token&& __token, _Cb&& __cb) 601 if (auto& __state = __token._M_state)
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
| H A D | stop_token | 601 stop_callback(const stop_token& __token, _Cb&& __cb) 605 if (auto __state = __token._M_state) 615 stop_callback(stop_token&& __token, _Cb&& __cb) 619 if (auto& __state = __token._M_state)
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
| H A D | random.h | 1472 random_device(const std::string& __token = "/dev/urandom") in _GLIBCXX_VISIBILITY() 1474 if ((__token != "/dev/urandom" && __token != "/dev/random") in _GLIBCXX_VISIBILITY() 1475 || !(_M_file = std::fopen(__token.c_str(), "rb"))) in _GLIBCXX_VISIBILITY() 1486 random_device(const std::string& __token = "mt19937") in _GLIBCXX_VISIBILITY() 1487 : _M_mt(_M_strtoul(__token)) { } in _GLIBCXX_VISIBILITY()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/ |
| H A D | random.h | 1472 random_device(const std::string& __token = "/dev/urandom") in _GLIBCXX_VISIBILITY() 1474 if ((__token != "/dev/urandom" && __token != "/dev/random") in _GLIBCXX_VISIBILITY() 1475 || !(_M_file = std::fopen(__token.c_str(), "rb"))) in _GLIBCXX_VISIBILITY() 1486 random_device(const std::string& __token = "mt19937") in _GLIBCXX_VISIBILITY() 1487 : _M_mt(_M_strtoul(__token)) { } in _GLIBCXX_VISIBILITY()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| H A D | regex_compiler.tcc | 570 _M_match_token(_TokenT __token) in _M_match_token() argument 572 if (__token == _M_scanner._M_get_token()) in _M_match_token()
|
| H A D | regex_compiler.h | 81 _M_match_token(_TokenT __token); in _GLIBCXX_VISIBILITY()
|
| H A D | random.h | 1624 random_device(const std::string& __token) { _M_init(__token); } in _GLIBCXX_VISIBILITY() 1659 void _M_init(const std::string& __token); in _GLIBCXX_VISIBILITY() 1660 void _M_init_pretr1(const std::string& __token); in _GLIBCXX_VISIBILITY()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| H A D | regex_compiler.tcc | 575 _M_match_token(_TokenT __token) in _M_match_token() argument 577 if (__token == _M_scanner._M_get_token()) in _M_match_token()
|
| H A D | regex_compiler.h | 82 _M_match_token(_TokenT __token); in _GLIBCXX_VISIBILITY()
|
| H A D | random.h | 1619 random_device(const std::string& __token) { _M_init(__token); } in _GLIBCXX_VISIBILITY() 1654 void _M_init(const std::string& __token); in _GLIBCXX_VISIBILITY() 1655 void _M_init_pretr1(const std::string& __token); in _GLIBCXX_VISIBILITY()
|
| /netbsd-src/sys/dev/pci/ |
| H A D | if_mcx.c | 783 #define __token(_tok, _num) _tok##_num macro 784 #define _token(_tok, _num) __token(_tok, _num)
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
| H A D | random | 3614 explicit random_device(const string& __token); 3616 explicit random_device(const string& __token = "/dev/urandom");
|