HomeSort by relevance Sort by last modified time
    Searched refs:desktop (Results 1 - 25 of 50) sorted by null

1 2

  /external/webrtc/webrtc/modules/desktop_capture/win/
scoped_thread_desktop.cc 15 #include "webrtc/modules/desktop_capture/win/desktop.h"
20 : initial_(Desktop::GetThreadDesktop()) {
27 bool ScopedThreadDesktop::IsSame(const Desktop& desktop) {
29 return assigned_->IsSame(desktop);
31 return initial_->IsSame(desktop);
42 bool ScopedThreadDesktop::SetThreadDesktop(Desktop* desktop) {
45 rtc::scoped_ptr<Desktop> scoped_desktop(desktop);
    [all...]
desktop.cc 11 #include "webrtc/modules/desktop_capture/win/desktop.h"
19 Desktop::Desktop(HDESK desktop, bool own) : desktop_(desktop), own_(own) {
22 Desktop::~Desktop() {
25 LOG(LS_ERROR) << "Failed to close the owned desktop handle: "
31 bool Desktop::GetName(std::wstring* desktop_name_out) const {
44 LOG(LS_ERROR) << "Failed to query the desktop name: " << GetLastError()
79 HDESK desktop = OpenDesktop(desktop_name, 0, FALSE, desired_access); local
90 HDESK desktop = OpenInputDesktop( local
99 HDESK desktop = ::GetThreadDesktop(GetCurrentThreadId()); local
    [all...]
scoped_thread_desktop.h 21 class Desktop;
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 ha
    [all...]
desktop.h 22 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 erro
    [all...]
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/src/com/badlogic/gdx/controllers/desktop/ois/
OisListener.java 17 package com.badlogic.gdx.controllers.desktop.ois;
19 import com.badlogic.gdx.controllers.desktop.ois.OisJoystick.OisPov;
OisTest.java 17 package com.badlogic.gdx.controllers.desktop.ois;
20 import com.badlogic.gdx.controllers.desktop.DesktopControllersBuild;
21 import com.badlogic.gdx.controllers.desktop.OisControllers;
22 import com.badlogic.gdx.controllers.desktop.ois.OisJoystick.OisPov;
28 new SharedLibraryLoader("libs/gdx-controllers-desktop-natives.jar").load("gdx-controllers-desktop");
Ois.java 17 package com.badlogic.gdx.controllers.desktop.ois;
OisJoystick.java 17 package com.badlogic.gdx.controllers.desktop.ois;
  /external/selinux/policycoreutils/sandbox/
sandboxX.sh 16 <desktop>all</desktop>
  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwNet.java 32 import java.awt.Desktop;
35 /** Desktop implementation of the {@link Net} API.
64 if (Desktop.isDesktopSupported()) {
65 Desktop desktop = Desktop.getDesktop(); local
66 if (desktop.isSupported(Desktop.Action.BROWSE)) {
68 desktop.browse(new URI(uri));
  /external/libmtp/
libmtp.sh 13 /sbin/resmgr "${ACTION}" "${DEVICE}" desktop usb
libmtp.sh.in 13 /sbin/resmgr "${ACTION}" "${DEVICE}" desktop usb
  /frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
Android.mk 3 # Build for Linux (desktop) host
  /external/selinux/policycoreutils/restorecond/
Makefile 10 autostart_DATA = sealertauto.desktop
40 install -m 644 restorecond.desktop $(AUTOSTARTDIR)/restorecond.desktop
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/src/com/badlogic/gdx/controllers/desktop/
DesktopControllerManager.java 17 package com.badlogic.gdx.controllers.desktop;
31 new SharedLibraryLoader().load("gdx-controllers-desktop");
OisControllers.java 17 package com.badlogic.gdx.controllers.desktop;
25 import com.badlogic.gdx.controllers.desktop.ois.Ois;
26 import com.badlogic.gdx.controllers.desktop.ois.OisJoystick;
27 import com.badlogic.gdx.controllers.desktop.ois.OisJoystick.OisPov;
28 import com.badlogic.gdx.controllers.desktop.ois.OisListener;
DesktopControllersBuild.java 17 package com.badlogic.gdx.controllers.desktop;
29 BuildConfig buildConfig = new BuildConfig("gdx-controllers-desktop");
  /external/dbus/bus/
Android.mk 25 desktop-file.c \
  /external/webrtc/talk/media/base/
screencastid.h 46 // Used for identifying a window or desktop to be screencast.
49 enum Type { INVALID, WINDOW, DESKTOP };
57 : type_(DESKTOP), desktop_(id) {
62 const rtc::DesktopId& desktop() const { return desktop_; } function in class:cricket::ScreencastId
78 bool IsDesktop() const { return type_ == DESKTOP; }
88 return desktop_.Equals(other.desktop());