/usr/include/boost/uuid/detail
NameSizeModeActions
config.hpp18310644editdlrm
md5.hpp175540644editdlrm
random_provider.hpp29550644editdlrm
random_provider_arc4random.ipp7300644editdlrm
random_provider_bcrypt.ipp28240644editdlrm
random_provider_detect_platform.hpp34120644editdlrm
random_provider_getentropy.ipp9330644editdlrm
random_provider_getrandom.ipp21590644editdlrm
random_provider_include_platform.hpp11380644editdlrm
random_provider_posix.ipp29660644editdlrm
random_provider_wincrypt.ipp31060644editdlrm
sha1.hpp60670644editdlrm
uuid_generic.ipp11930644editdlrm
uuid_x86.ipp59850644editdlrm
Edit: /usr/include/boost/uuid/detail/random_provider_include_platform.hpp (1138B)
// // Copyright (c) 2017 James E. King III // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // https://www.boost.org/LICENSE_1_0.txt) // // Platform-specific random entropy provider platform definition // #ifndef BOOST_UUID_DETAIL_RANDOM_PROVIDER_PLATFORM_INCLUDE_HPP #define BOOST_UUID_DETAIL_RANDOM_PROVIDER_PLATFORM_INCLUDE_HPP #if defined(BOOST_UUID_RANDOM_PROVIDER_ARC4RANDOM) # include #elif defined(BOOST_UUID_RANDOM_PROVIDER_BCRYPT) # include #elif defined(BOOST_UUID_RANDOM_PROVIDER_GETENTROPY) # include #elif defined(BOOST_UUID_RANDOM_PROVIDER_GETRANDOM) # include #elif defined(BOOST_UUID_RANDOM_PROVIDER_POSIX) # include #elif defined(BOOST_UUID_RANDOM_PROVIDER_WINCRYPT) # include #endif #endif // BOOST_UUID_DETAIL_RANDOM_PROVIDER_PLATFORM_INCLUDE_HPP