HomeSort by relevance Sort by last modified time
    Searched refs:win (Results 101 - 125 of 1171) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/cloud_print/virtual_driver/win/
virtual_driver_helpers.cc 5 #include "cloud_print/virtual_driver/win/virtual_driver_helpers.h"
13 #include "base/win/windows_version.h"
14 #include "cloud_print/common/win/cloud_print_utils.h"
54 base::win::OSInfo::WindowsArchitecture arch =
55 base::win::OSInfo::GetInstance()->architecture();
56 return (arch == base::win::OSInfo::X64_ARCHITECTURE) ||
57 (arch == base::win::OSInfo::IA64_ARCHITECTURE);
  /external/chromium_org/remoting/host/win/
worker_process_launcher.h 15 #include "base/win/object_watcher.h"
16 #include "base/win/scoped_handle.h"
42 public base::win::ObjectWatcher::Delegate {
87 void OnProcessLaunched(base::win::ScopedHandle worker_process);
103 // base::win::ObjectWatcher::Delegate implementation used to watch for
155 base::win::ObjectWatcher process_watcher_;
162 base::win::ScopedHandle worker_process_;
  /external/chromium_org/sandbox/win/src/
app_container_unittest.cc 5 #include "base/win/windows_version.h"
6 #include "sandbox/win/src/app_container.h"
13 if (base::win::OSInfo::GetInstance()->version() < base::win::VERSION_WIN8)
36 if (base::win::OSInfo::GetInstance()->version() < base::win::VERSION_WIN8)
process_mitigations.cc 5 #include "sandbox/win/src/process_mitigations.h"
9 #include "base/win/windows_version.h"
10 #include "sandbox/win/src/nt_internals.h"
11 #include "sandbox/win/src/win_utils.h"
34 base::win::Version version = base::win::GetVersion();
37 if (version >= base::win::VERSION_VISTA &&
53 if (version >= base::win::VERSION_VISTA &&
66 const bool return_on_fail = version >= base::win::VERSION_VISTA;
106 if (version < base::win::VERSION_WIN8
    [all...]
named_pipe_policy_test.cc 5 #include "base/win/windows_version.h"
6 #include "sandbox/win/src/handle_closer.h"
7 #include "sandbox/win/src/sandbox.h"
8 #include "sandbox/win/src/sandbox_policy.h"
9 #include "sandbox/win/src/sandbox_factory.h"
10 #include "sandbox/win/tests/common/controller.h"
76 if (base::win::OSInfo::GetInstance()->version() >= base::win::VERSION_VISTA) {
93 if (base::win::OSInfo::GetInstance()->version() >= base::win::VERSION_VISTA)
    [all...]
  /external/chromium_org/win8/metro_driver/ime/
input_scope.cc 11 #include "ui/base/win/atl_module.h"
73 base::win::ScopedComPtr<ITfInputScope>
75 ui::win::CreateATLModuleIfNeeded();
81 return base::win::ScopedComPtr<ITfInputScope>();
84 return base::win::ScopedComPtr<ITfInputScope>(object);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
NativeSubWindow.h 31 void destroySubWindow(EGLNativeDisplayType dis,EGLNativeWindowType win);
  /sdk/emulator/opengl/tests/ut_renderer/
X11RendererSurface.h 33 int destroyNativeWindow(NativeWindowType win);
  /external/chromium_org/content/public/renderer/
render_font_warmup_win.cc 10 #include "base/win/iat_patch_function.h"
11 #include "base/win/windows_version.h"
12 #include "third_party/WebKit/public/web/win/WebFontRendering.h"
23 base::win::IATPatchFunction g_iat_patch_open_sc_manager;
24 base::win::IATPatchFunction g_iat_patch_close_service_handle;
25 base::win::IATPatchFunction g_iat_patch_open_service;
26 base::win::IATPatchFunction g_iat_patch_start_service;
27 base::win::IATPatchFunction g_iat_patch_nt_connect_port;
102 (base::win::GetVersion() >= base::win::VERSION_WIN8
    [all...]
  /external/chromium_org/remoting/host/
continue_window_win.cc 16 #include "remoting/host/win/core_resource.h"
76 ContinueWindowWin* win = NULL; local
78 win = reinterpret_cast<ContinueWindowWin*>(lParam);
79 CHECK(win);
80 SetWindowLongPtr(hwnd, DWLP_USER, (LONG_PTR)win);
83 win = reinterpret_cast<ContinueWindowWin*>(lp);
85 if (win == NULL)
87 return win->OnDialogMessage(hwnd, msg, wParam, lParam);
  /external/chromium_org/rlz/test/
rlz_test_helpers.cc 18 #include "base/win/registry.h"
19 #include "base/win/windows_version.h"
46 void ReadRegistryTree(const base::win::RegKey& src, RegistryKeyData* data) {
49 base::win::RegistryValueIterator i(src.Handle(), L"");
63 for (base::win::RegistryKeyIterator i(src.Handle(), L"");
65 ReadRegistryTree(base::win::RegKey(src.Handle(), i.Name(), KEY_READ),
70 void WriteRegistryTree(const RegistryKeyData& data, base::win::RegKey* dest) {
85 &base::win::RegKey(dest->Handle(), iter->first.c_str(),
100 const bool do_copy = (base::win::GetVersion() >= base::win::VERSION_WIN7)
    [all...]
  /external/qemu/slirp/
tcp_output.c 70 register long len, win; local
98 win = min(tp->snd_wnd, tp->snd_cwnd);
111 if (win == 0) {
130 win = 1;
137 len = min(so->so_snd.sb_cc, win) - off;
151 if (win == 0) {
164 win = sbspace(&so->so_rcv);
197 if (win > 0) {
203 long adv = min(win, (long)TCP_MAXWIN << tp->rcv_scale) -
437 if (win < (long)(so->so_rcv.sb_datalen / 4) && win < (long)tp->t_maxseg
    [all...]
  /external/qemu/slirp-android/
tcp_output.c 70 register long len, win; local
98 win = min(tp->snd_wnd, tp->snd_cwnd);
111 if (win == 0) {
130 win = 1;
137 len = min(so->so_snd.sb_cc, win) - off;
151 if (win == 0) {
164 win = sbspace(&so->so_rcv);
197 if (win > 0) {
203 long adv = min(win, (long)TCP_MAXWIN << tp->rcv_scale) -
437 if (win < (long)(so->so_rcv.sb_datalen / 4) && win < (long)tp->t_maxseg
    [all...]
  /frameworks/native/opengl/libs/EGL/
egl_object.cpp 65 EGLNativeWindowType win, EGLSurface surface,
67 egl_object_t(dpy), surface(surface), config(config), win(win), cnx(cnx)
69 if (win) {
75 ANativeWindow* const window = win.get();
  /external/chromium_org/base/win/
win_util.cc 5 #include "base/win/win_util.h"
26 #include "base/win/metro.h"
27 #include "base/win/registry.h"
28 #include "base/win/scoped_co_mem.h"
29 #include "base/win/scoped_handle.h"
30 #include "base/win/scoped_propvariant.h"
31 #include "base/win/windows_version.h"
39 const base::win::ScopedPropVariant& property_value) {
59 namespace win { namespace in namespace:base
70 (base::win::GetVersion() >= base::win::VERSION_VISTA)
    [all...]
  /external/chromium_org/chrome/browser/
chrome_process_finder_win.cc 19 #include "base/win/message_window.h"
20 #include "base/win/metro.h"
21 #include "base/win/scoped_handle.h"
22 #include "base/win/win_util.h"
23 #include "base/win/windows_version.h"
102 return base::win::MessageWindow::FindWindow(user_data_dir.value());
116 if (base::win::IsMetroProcess()) {
123 base::win::MetroLaunchType launch = base::win::GetMetroLaunchParams(&terms);
124 if (launch != base::win::METRO_SEARCH)
    [all...]
memory_details_win.cc 15 #include "base/win/scoped_handle.h"
16 #include "base/win/windows_version.h"
77 base::win::OSInfo::WindowsArchitecture windows_architecture =
78 base::win::OSInfo::GetInstance()->architecture();
80 base::win::ScopedHandle snapshot(
93 base::win::ScopedHandle process_handle(::OpenProcess(
98 ((windows_architecture == base::win::OSInfo::X64_ARCHITECTURE) ||
99 (windows_architecture == base::win::OSInfo::IA64_ARCHITECTURE)) &&
100 (base::win::OSInfo::GetWOW64StatusForProcess(process_handle) ==
101 base::win::OSInfo::WOW64_DISABLED)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/status_icons/
status_tray_state_changer_win.cc 86 return base::win::IUnknownImpl::AddRef();
91 return base::win::IUnknownImpl::Release();
103 return base::win::IUnknownImpl::QueryInterface(riid, ptr_void);
133 base::win::ScopedComPtr<ITrayNotifyWin8> tray_notify_win8;
140 base::win::ScopedComPtr<ITrayNotify> tray_notify_legacy;
178 base::win::ScopedComPtr<ITrayNotifyWin8> tray_notify_win8;
198 base::win::ScopedComPtr<ITrayNotify> tray_notify;
225 base::win::ScopedComPtr<ITrayNotify> tray_notify;
230 base::win::ScopedComPtr<ITrayNotifyWin8> tray_notify;
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-xlib/
graw_xlib.c 55 Window win = 0; local
113 win = XCreateWindow( graw.display, root, x, y, width, height,
127 XSetNormalHints(graw.display, win, &sizehints);
128 XSetStandardProperties(graw.display, win, name, name,
132 XMapWindow(graw.display, win);
136 if (e.type == MapNotify && e.xmap.window == win) {
142 xlib_handle->drawable = (Drawable)win;
163 if (win)
164 XDestroyWindow(graw.display, win);
  /external/chromium_org/win8/test/
ui_automation_client.cc 20 #include "base/win/scoped_comptr.h"
21 #include "base/win/scoped_variant.h"
50 base::win::ScopedComPtr<IUIAutomationElement> sender,
65 const base::win::ScopedComPtr<IUIAutomationElement>& window);
67 const base::win::ScopedComPtr<IUIAutomationElement>& window);
69 const base::win::ScopedComPtr<IUIAutomationElement>& element);
71 const base::win::ScopedComPtr<IUIAutomationElement>& element,
73 void CloseWindow(const base::win::ScopedComPtr<IUIAutomationElement>& window);
90 base::win::ScopedComPtr<IUIAutomation> automation_;
93 base::win::ScopedComPtr<IUIAutomationEventHandler> event_handler_
    [all...]
  /external/mesa3d/src/gallium/targets/graw-xlib/
graw_xlib.c 55 Window win = 0; local
113 win = XCreateWindow( graw.display, root, x, y, width, height,
127 XSetNormalHints(graw.display, win, &sizehints);
128 XSetStandardProperties(graw.display, win, name, name,
132 XMapWindow(graw.display, win);
136 if (e.type == MapNotify && e.xmap.window == win) {
142 xlib_handle->drawable = (Drawable)win;
163 if (win)
164 XDestroyWindow(graw.display, win);
  /external/chromium_org/base/test/expectations/
expectation.cc 10 #include "base/win/windows_version.h"
40 if (name == "Win") {
93 platform.name = "Win";
94 base::win::Version version = base::win::GetVersion();
95 if (version == base::win::VERSION_XP)
97 else if (version == base::win::VERSION_VISTA)
99 else if (version == base::win::VERSION_WIN7)
101 else if (version == base::win::VERSION_WIN8)
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_operations_util.cc 5 #include "chrome/browser/media_galleries/win/mtp_device_operations_util.h"
19 #include "base/win/scoped_co_mem.h"
20 #include "base/win/scoped_propvariant.h"
31 base::win::ScopedComPtr<IPortableDeviceValues>* client_info) {
55 base::win::ScopedComPtr<IPortableDeviceContent> GetDeviceContent(
59 base::win::ScopedComPtr<IPortableDeviceContent> content;
62 return base::win::ScopedComPtr<IPortableDeviceContent>();
68 base::win::ScopedComPtr<IEnumPortableDeviceObjectIDs> GetDeviceObjectEnumerator(
74 base::win::ScopedComPtr<IPortableDeviceContent> content =
77 return base::win::ScopedComPtr<IEnumPortableDeviceObjectIDs>()
    [all...]
  /external/chromium_org/win8/metro_driver/
secondary_tile.cc 19 using base::win::MetroPinUmaResultCallback;
55 base::win::MetroSecondaryTilePinUmaResult pin_state =
56 base::win::METRO_PIN_STATE_NONE;
65 base::win::METRO_PIN_RESULT_CANCEL :
66 base::win::METRO_UNPIN_RESULT_CANCEL;
70 base::win::METRO_PIN_RESULT_OK :
71 base::win::METRO_UNPIN_RESULT_OK;
75 base::win::METRO_PIN_RESULT_OTHER :
76 base::win::METRO_UNPIN_RESULT_OTHER;
83 base::win::METRO_PIN_RESULT_ERROR
    [all...]
  /external/chromium_org/base/synchronization/
waitable_event_watcher.h 12 #include "base/win/object_watcher.h"
63 : public win::ObjectWatcher::Delegate {
96 win::ObjectWatcher watcher_;

Completed in 383 milliseconds

1 2 3 45 6 7 8 91011>>