Home
last modified time | relevance | path

Searched refs:native_mode (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/boost/dll/detail/posix/
Dshared_library_impl.hpp74 native_mode_t native_mode = static_cast<native_mode_t>(portable_mode); in load() local
88 if (!(native_mode & load_mode::rtld_now)) { in load()
89 native_mode |= load_mode::rtld_lazy; in load()
92 if (!(native_mode & load_mode::rtld_global)) { in load()
93 native_mode |= load_mode::rtld_local; in load()
97 if (!sl.has_parent_path() && !(native_mode & load_mode::search_system_folders)) { in load()
101 if (!sl.is_absolute() && !(native_mode & load_mode::search_system_folders)) { in load()
111native_mode = static_cast<unsigned>(native_mode) & ~static_cast<unsigned>(load_mode::search_system… in load()
114 if (!!(native_mode & load_mode::append_decorations)) { in load()
115native_mode = static_cast<unsigned>(native_mode) & ~static_cast<unsigned>(load_mode::append_decora… in load()
[all …]
/third_party/boost/boost/dll/detail/windows/
Dshared_library_impl.hpp61 native_mode_t native_mode = static_cast<native_mode_t>(portable_mode); in load() local
64 if (!sl.is_absolute() && !(native_mode & load_mode::search_system_folders)) { in load()
73native_mode = static_cast<unsigned>(native_mode) & ~static_cast<unsigned>(load_mode::search_system… in load()
76 if (!!(native_mode & load_mode::append_decorations)) { in load()
77native_mode = static_cast<unsigned>(native_mode) & ~static_cast<unsigned>(load_mode::append_decora… in load()
79 if (load_impl(decorate(sl), native_mode, ec)) { in load()
89 if (load_impl(mingw_load_path, native_mode, ec)) { in load()
102 handle_ = boost::winapi::LoadLibraryExW(sl.c_str(), 0, native_mode); in load()
104 handle_ = boost::winapi::LoadLibraryExW((sl.native() + L".").c_str(), 0, native_mode); in load()
/third_party/weston/libweston/backend-drm/
Dmodes.c808 output->base.native_mode = output->base.current_mode; in drm_output_set_mode()
/third_party/weston/include/libweston/
Dlibweston.h301 struct weston_mode *native_mode; member
/third_party/weston/libweston/
Dcompositor.c237 output->native_mode = mode; in weston_output_mode_set_native()
270 mode_changed = (output->original_mode != output->native_mode); in weston_output_mode_switch_to_native()
273 ret = output->switch_mode(output, output->native_mode); in weston_output_mode_switch_to_native()
304 output->original_mode = output->native_mode; in weston_output_mode_switch_to_temporary()
/third_party/weston/libweston/backend-rdp/
Drdp.c554 output->base.current_mode = output->base.native_mode = currentMode; in rdp_output_set_size()
/third_party/weston/libweston/backend-x11/
Dx11.c1126 output->base.native_mode = &output->native; in x11_output_set_size()
/third_party/mesa3d/docs/relnotes/
D7.10.rst592 - st/egl: Fix native_mode refresh mode.