Searched refs:winsta (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/sandbox/win/src/
H A Dwindow.h19 ResultCode CreateAltWindowStation(HWINSTA* winsta);
24 // If a winsta is specified, the function will switch to it before creating
25 // the desktop. If the functions fails the switch back to the current winsta,
27 ResultCode CreateAltDesktop(HWINSTA winsta, HDESK* desktop);
36 base::string16 GetFullDesktopName(HWINSTA winsta, HDESK desktop);
H A Dwindow.cc37 ResultCode CreateAltWindowStation(HWINSTA* winsta) { argument
48 *winsta = ::CreateWindowStationW(NULL, 0, WINSTA_ALL_ACCESS, &attributes);
51 if (*winsta)
57 ResultCode CreateAltDesktop(HWINSTA winsta, HDESK* desktop) { argument
77 if (winsta) {
80 if (!::SetProcessWindowStation(winsta)) {
92 if (winsta) {
141 base::string16 GetFullDesktopName(HWINSTA winsta, HDESK desktop) { argument
148 if (winsta) {
149 name = GetWindowObjectName(winsta);
[all...]
/external/chromium_org/remoting/host/win/
H A Dlaunch_process_with_token.cc31 // winsta!WinStationQueryInformationW() to return the name of the pipe for
59 // Use winsta!WinStationQueryInformationW() to determine the process creation
62 base::GetNativeLibraryName(base::UTF8ToUTF16("winsta")));
63 base::ScopedNativeLibrary winsta(winsta_path);
64 if (winsta.is_valid()) {
67 winsta.GetFunctionPointer("WinStationQueryInformationW"));

Completed in 190 milliseconds