Home
last modified time | relevance | path

Searched full:desktop (Results 1 – 25 of 796) sorted by relevance

12345678910>>...32

/external/webrtc/webrtc/modules/desktop_capture/win/
Ddesktop.cc11 #include "webrtc/modules/desktop_capture/win/desktop.h"
19 Desktop::Desktop(HDESK desktop, bool own) : desktop_(desktop), own_(own) { in Desktop() argument
22 Desktop::~Desktop() { in ~Desktop()
25 LOG(LS_ERROR) << "Failed to close the owned desktop handle: " in ~Desktop()
31 bool Desktop::GetName(std::wstring* desktop_name_out) const { in GetName()
44 LOG(LS_ERROR) << "Failed to query the desktop name: " << GetLastError(); in GetName()
52 bool Desktop::IsSame(const Desktop& other) const { in IsSame()
64 bool Desktop::SetThreadDesktop() const { in SetThreadDesktop()
66 LOG(LS_ERROR) << "Failed to assign the desktop to the current thread: " in SetThreadDesktop()
74 Desktop* Desktop::GetDesktop(const WCHAR* desktop_name) { in GetDesktop()
[all …]
Dscoped_thread_desktop.h21 class Desktop; variable
28 // Returns true if |desktop| has the same desktop name as the currently
29 // assigned desktop (if assigned) or as the initial desktop (if not assigned).
31 // uninitialized desktop handles.
32 bool IsSame(const Desktop& desktop);
34 // Reverts the calling thread to use the initial desktop.
37 // Assigns |desktop| to be the calling thread. Returns true if the thread has
38 // been switched to |desktop| successfully. Takes ownership of |desktop|.
39 bool SetThreadDesktop(Desktop* desktop);
42 // The desktop handle assigned to the calling thread by Set
[all …]
Ddesktop.h22 class Desktop {
24 ~Desktop();
26 // Returns the name of the desktop represented by the object. Return false if
30 // Returns true if |other| has the same name as this desktop. Returns false
31 // in any other case including failing Win32 APIs and uninitialized desktop
33 bool IsSame(const Desktop& other) const;
35 // Assigns the desktop to the current thread. Returns false is the operation
39 // Returns the desktop by its name or NULL if an error occurs.
40 static Desktop* GetDesktop(const wchar_t* desktop_name);
42 // Returns the desktop currently receiving user input or NULL if an error
[all …]
Dscoped_thread_desktop.cc15 #include "webrtc/modules/desktop_capture/win/desktop.h"
20 : initial_(Desktop::GetThreadDesktop()) { in ScopedThreadDesktop()
27 bool ScopedThreadDesktop::IsSame(const Desktop& desktop) { in IsSame() argument
29 return assigned_->IsSame(desktop); in IsSame()
31 return initial_->IsSame(desktop); in IsSame()
42 bool ScopedThreadDesktop::SetThreadDesktop(Desktop* desktop) { in SetThreadDesktop() argument
45 rtc::scoped_ptr<Desktop> scoped_desktop(desktop); in SetThreadDesktop()
47 if (initial_->IsSame(*desktop)) in SetThreadDesktop()
50 if (!desktop->SetThreadDesktop()) in SetThreadDesktop()
Dscreen_capturer_win_gdi.cc22 #include "webrtc/modules/desktop_capture/win/desktop.h"
152 // Vote to disable Aero composited desktop effects while capturing. Windows in Start()
160 // Switch to the desktop receiving user input if different from the current in PrepareCaptureResources()
162 rtc::scoped_ptr<Desktop> input_desktop(Desktop::GetInputDesktop()); in PrepareCaptureResources()
175 // If SetThreadDesktop() fails, the thread is still assigned a desktop. in PrepareCaptureResources()
176 // So we can continue capture screen bits, just from the wrong desktop. in PrepareCaptureResources()
208 // Create GDI device contexts to capture from the desktop into memory. in PrepareCaptureResources()
251 // Select the target bitmap into the memory dc and copy the rect from desktop in CaptureImage()
/external/mesa3d/src/mapi/glapi/gen/
Dgl_and_es_API.xml21 <function name="AlphaFuncx" es1="1.0" desktop="false">
26 <function name="ClearColorx" es1="1.0" desktop="false">
33 <function name="ClearDepthx" es1="1.0" desktop="false">
37 <function name="Color4x" es1="1.0" desktop="false">
44 <function name="DepthRangex" es1="1.0" desktop="false">
49 <function name="Fogx" es1="1.0" desktop="false">
54 <function name="Fogxv" es1="1.0" desktop="false">
59 <function name="Frustumx" es1="1.0" desktop="false">
68 <function name="LightModelx" es1="1.0" desktop="false">
73 <function name="LightModelxv" es1="1.0" desktop="false">
[all …]
/external/python/cpython3/Doc/library/
Dmsilib.rst128 `UuidCreate <https://msdn.microsoft.com/en-us/library/windows/desktop/aa379205.aspx>`_
129 `UuidToString <https://msdn.microsoft.com/en-us/library/windows/desktop/aa379352.aspx>`_
163 `MSIDatabaseOpenView <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370082.aspx>`_
164 `MSIDatabaseCommit <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370075.aspx>`_
165 …`MSIGetSummaryInformation <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370301.aspx>…
166 `MsiCloseHandle <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370067.aspx>`_
212 `MsiViewExecute <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370513.aspx>`_
213 `MSIViewGetColumnInfo <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370516.aspx>`_
214 `MsiViewFetch <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370514.aspx>`_
215 `MsiViewModify <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370519.aspx>`_
[all …]
/external/skqp/src/gpu/glsl/
DGrGLSL.h19 * Desktop GLSL 1.10 and ES2 shading language (based on desktop GLSL 1.20)
23 * Desktop GLSL 1.30
27 * Desktop GLSL 1.40
31 * Desktop GLSL 1.50
35 * Desktop GLSL 3.30, and ES GLSL 3.00
39 * Desktop GLSL 4.00
43 * Desktop GLSL 4.20
/external/skia/src/gpu/glsl/
DGrGLSL.h19 * Desktop GLSL 1.10 and ES2 shading language (based on desktop GLSL 1.20)
23 * Desktop GLSL 1.30
27 * Desktop GLSL 1.40
31 * Desktop GLSL 1.50
35 * Desktop GLSL 3.30, and ES GLSL 3.00
39 * Desktop GLSL 4.00
43 * Desktop GLSL 4.20
/external/mesa3d/include/pci_ids/
Di965_pci_ids.h14 CHIPSET(0x0042, ilk, "Intel(R) Ironlake Desktop")
16 CHIPSET(0x0102, snb_gt1, "Intel(R) Sandybridge Desktop")
17 CHIPSET(0x0112, snb_gt2, "Intel(R) Sandybridge Desktop")
18 CHIPSET(0x0122, snb_gt2, "Intel(R) Sandybridge Desktop")
23 CHIPSET(0x0152, ivb_gt1, "Intel(R) Ivybridge Desktop")
24 CHIPSET(0x0162, ivb_gt2, "Intel(R) Ivybridge Desktop")
29 CHIPSET(0x0402, hsw_gt1, "Intel(R) Haswell Desktop")
30 CHIPSET(0x0412, hsw_gt2, "Intel(R) Haswell Desktop")
31 CHIPSET(0x0422, hsw_gt3, "Intel(R) Haswell Desktop")
44 CHIPSET(0x0C02, hsw_gt1, "Intel(R) Haswell Desktop")
[all …]
/external/cros/system_api/dbus/vm_applications/
Dapps.proto10 // Corresponds to a .desktop file from the Desktop Entry Spec:
11 // https://www.freedesktop.org/wiki/Specifications/desktop-entry-spec/
26 // These fields map directly to keys from the Desktop Entry spec.
34 // If set, the package_id of the installed package that owns this .desktop
35 // file. If not set, the .desktop file is not owned by an installed package.
/external/webrtc/webrtc/modules/desktop_capture/mac/
Ddesktop_configuration.h42 // Describes the configuration of the whole desktop.
50 // Returns the desktop & display configurations in Cocoa-style "bottom-up"
55 // Returns true if the given desktop configuration equals this one.
62 // Bounds of the desktop excluding monitors with DPI settings different from
72 // Configurations of the displays making up the desktop area.
/external/webrtc/talk/media/base/
Dscreencastid.h46 // Used for identifying a window or desktop to be screencast.
49 enum Type { INVALID, WINDOW, DESKTOP }; enumerator
57 : type_(DESKTOP), desktop_(id) { in ScreencastId()
62 const rtc::DesktopId& desktop() const { return desktop_; } in desktop() function
78 bool IsDesktop() const { return type_ == DESKTOP; } in IsDesktop()
88 return desktop_.Equals(other.desktop()); in EqualsId()
/external/autotest/server/site_tests/telemetry_Benchmarks/
Dgenerate_controlfiles.py31 'loading.desktop',
34 'rendering.desktop',
43 'media.desktop',
44 'memory.desktop',
58 'loading.desktop': '--story-tag-filter=typical',
59 'rendering.desktop': '--story-tag-filter=top_real_world_desktop',
Dcontrol.memory.desktop10 NAME = 'telemetry_Benchmarks.memory.desktop'
19 memory.desktop
30 benchmark='memory.desktop',
31 tag='memory.desktop',
Dcontrol.media.desktop10 NAME = 'telemetry_Benchmarks.media.desktop'
19 media.desktop
30 benchmark='media.desktop',
31 tag='media.desktop',
Dcontrol.loading.desktop10 NAME = 'telemetry_Benchmarks.loading.desktop'
19 loading.desktop
30 benchmark='loading.desktop',
31 tag='loading.desktop',
Dcontrol.rendering.desktop10 NAME = 'telemetry_Benchmarks.rendering.desktop'
19 rendering.desktop
30 benchmark='rendering.desktop',
31 tag='rendering.desktop',
Dcontrol.mash.memory.desktop10 NAME = 'telemetry_Benchmarks.mash.memory.desktop'
19 memory.desktop
30 benchmark='memory.desktop',
31 tag='memory.desktop',
Dcontrol.mash.rendering.desktop10 NAME = 'telemetry_Benchmarks.mash.rendering.desktop'
19 rendering.desktop
30 benchmark='rendering.desktop',
31 tag='rendering.desktop',
Dcontrol.backdrop_filter.rendering.desktop13 NAME = 'telemetry_Benchmarks.backdrop_filter.rendering.desktop'
22 rendering.desktop (but only stories with tag backdrop_filter)
33 benchmark='rendering.desktop',
34 tag='rendering.desktop',
/external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
DSwingHelper.java4 import java.awt.Desktop;
5 import java.awt.Desktop.Action;
64 if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Action.BROWSE)) { in browse()
66 Desktop.getDesktop().browse(new URI(uri)); in browse()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
DResourceScriptStmt.h151 // Ref: msdn.microsoft.com/en-us/library/windows/desktop/ms648027(v=vs.85).aspx
248 // Ref: msdn.microsoft.com/en-us/library/windows/desktop/aa381019(v=vs.85).aspx
265 // Ref: msdn.microsoft.com/en-us/library/windows/desktop/aa380610(v=vs.85).aspx
318 // Ref: msdn.microsoft.com/en-us/library/windows/desktop/aa380680(v=vs.85).aspx
342 // Ref: msdn.microsoft.com/en-us/library/windows/desktop/aa380920(v=vs.85).aspx
364 // Ref: msdn.microsoft.com/en-us/library/windows/desktop/aa381018(v=vs.85).aspx
386 // Ref: msdn.microsoft.com/en-us/library/windows/desktop/aa966018(v=vs.85).aspx
411 // Ref: msdn.microsoft.com/en-us/library/windows/desktop/aa381025(v=vs.85).aspx
453 // Ref: msdn.microsoft.com/en-us/library/windows/desktop/aa381024(v=vs.85).aspx
466 // Ref: msdn.microsoft.com/en-us/library/windows/desktop/aa381024(v=vs.85).aspx
[all …]
/external/autotest/tko/perf_upload/
Dperf_dashboard_config.json602 "autotest_name": "telemetry_Benchmarks.backdrop_filter.rendering.desktop",
604 "dashboard_test_name": "rendering.desktop"
637 "autotest_name": "telemetry_Benchmarks.loading.desktop",
639 "dashboard_test_name": "loading.desktop"
642 "autotest_name": "telemetry_Benchmarks.memory.desktop",
644 "dashboard_test_name": "memory.desktop"
657 "autotest_name": "telemetry_Benchmarks.rendering.desktop",
659 "dashboard_test_name": "rendering.desktop"
/external/skia/src/gpu/gl/
DGrGLInterface.cpp152 // Now check that baseline ES/Desktop fns not covered above are present in validate()
157 // On the desktop we assume they are available if the extension in validate()
179 // part of desktop GL, but not ES in validate()
206 // GL_EXT_texture_storage is part of desktop 4.2 in validate()
207 // There is a desktop ARB extension and an ES+desktop EXT extension in validate()
222 // glTextureBarrier is part of desktop 4.5. There are also ARB and NV extensions. in validate()
318 // On ES buffer mapping is an extension. On Desktop in validate()
345 // glGetStringi was added in version 3.0 of both desktop and ES. in validate()
352 // glVertexAttribIPointer was added in version 3.0 of both desktop and ES. in validate()

12345678910>>...32