HomeSort by relevance Sort by last modified time
    Searched refs:HANDLE (Results 301 - 325 of 976) sorted by null

<<11121314151617181920>>

  /sdk/find_lock/
find_lock.cpp 86 HANDLE UniqueProcess;
87 HANDLE UniqueThread;
150 typedef DWORD (WINAPI *NtQueryInformationFileFuncPtr)(HANDLE, PVOID, PVOID, DWORD, DWORD);
151 typedef DWORD (WINAPI *NtQueryObjectFuncPtr)(HANDLE, DWORD, VOID*, DWORD, VOID*);
187 HANDLE tokenH;
239 static bool getHandleType(HANDLE h, CString *type) {
278 static char isFileHandleType(HANDLE handle) {
282 int status = sNtQueryObjectFunc(handle, 2, NULL, 0, &size);
286 status = sNtQueryObjectFunc(handle, 2, buf, size, NULL);
315 HANDLE handle; member in struct:__anon62569
628 HANDLE handle = (HANDLE) sysh.wValue; local
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglOsUtils/
osProcessWin.cpp 52 // close the thread handle we do not need it,
53 // keep the process handle for wait/trywait operations, will
127 HANDLE hProc = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
162 HANDLE process = OpenProcess(SYNCHRONIZE, FALSE, pid);
  /external/chromium/base/win/
windows_version.cc 56 OSInfo::WOW64Status OSInfo::GetWOW64StatusForProcess(HANDLE process_handle) {
57 typedef BOOL (WINAPI* IsWow64ProcessFunc)(HANDLE, PBOOL);
  /external/chromium/chrome/browser/first_run/
upgrade_util_win.cc 48 HANDLE handle = HANDLE(phandle); local
49 WaitForSingleObject(handle, INFINITE);
51 ::GetExitCodeProcess(handle, &exit_code);
52 ::CloseHandle(handle);
99 base::ProcessHandle handle; local
100 if (base::LaunchApp(rename_cmd, true, true, &handle)) {
102 ::GetExitCodeProcess(handle, &exit_code);
103 ::CloseHandle(handle);
    [all...]
  /external/chromium/net/base/
listen_socket.h 110 virtual void OnObjectSignaled(HANDLE object);
112 HANDLE socket_event_;
  /external/chromium/third_party/libevent/sample/
event-test.c 43 len = ReadFile((HANDLE)fd, buf, sizeof(buf) - 1, &dwBytesRead, NULL);
74 HANDLE socket;
  /external/chromium_org/content/child/npapi/
webplugin.h 19 typedef void* HANDLE;
38 // windowed (i.e. handle is not NULL) or windowless (handle is NULL). This
50 // |pump_messages_event| is a event handle which is used in NPP_HandleEvent
54 virtual void SetWindowlessData(HANDLE pump_messages_event,
  /external/chromium_org/net/socket/
stream_listen_socket.h 6 // to the socket, but does not handle creating the socket nor connecting
117 virtual void OnObjectSignaled(HANDLE object);
119 HANDLE socket_event_;
  /external/chromium_org/sandbox/win/src/
handle_dispatcher.cc 43 HANDLE source_handle,
52 // Get a copy of the handle for use in the broker process.
53 HANDLE handle_temp;
60 base::win::ScopedHandle handle(handle_temp);
67 error = QueryObject(handle, ObjectTypeInformation, type_info, size, &size);
84 &ipc->return_info.handle,
process_thread_interception.cc 64 if (!ValidParameter(thread, sizeof(HANDLE), WRITE))
91 *thread = answer.handle;
142 if (!ValidParameter(process, sizeof(HANDLE), WRITE))
161 *process = answer.handle;
174 NtOpenProcessTokenFunction orig_OpenProcessToken, HANDLE process,
187 if (!ValidParameter(token, sizeof(HANDLE), WRITE))
206 *token = answer.handle;
218 NtOpenProcessTokenExFunction orig_OpenProcessTokenEx, HANDLE process,
232 if (!ValidParameter(token, sizeof(HANDLE), WRITE))
251 *token = answer.handle;
    [all...]
sync_dispatcher.cc 56 HANDLE handle = NULL; local
59 &handle);
62 ipc->return_info.handle = handle;
76 HANDLE handle = NULL; local
79 &handle);
82 ipc->return_info.handle = handle;
    [all...]
window.cc 14 // Gets the security attributes of a window object referenced by |handle|. The
17 bool GetSecurityAttributes(HANDLE handle, SECURITY_ATTRIBUTES* attributes) {
22 DWORD result = ::GetSecurityInfo(handle, SE_WINDOW_OBJECT,
103 std::wstring GetWindowObjectName(HANDLE handle) {
106 ::GetUserObjectInformation(handle, UOI_NAME, NULL, 0, &size);
117 if (!::GetUserObjectInformation(handle, UOI_NAME, name_buffer.get(), size,
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/win/
FontCustomPlatformDataWin.cpp 64 FontCustomPlatformData::FontCustomPlatformData(HANDLE fontReference, const String& name)
124 HANDLE fontReference = renameAndActivateFont(buffer, fontName);
  /external/chromium_org/third_party/WebKit/Source/core/platform/sql/chromium/
SQLiteFileSystemChromiumWin.cpp 42 int chromium_sqlite3_initialize_win_sqlite3_file(sqlite3_file* file, HANDLE handle);
58 HANDLE h = WebKit::Platform::current()->databaseOpenFile(String(fileName), desiredFlags);
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadingWin.cpp 174 static HashMap<DWORD, HANDLE>& threadMap()
176 static HashMap<DWORD, HANDLE> map;
180 static void storeThreadHandleByIdentifier(DWORD threadID, HANDLE threadHandle)
187 static HANDLE threadHandleForIdentifier(ThreadIdentifier id)
216 HANDLE threadHandle = reinterpret_cast<HANDLE>(_beginthreadex(0, 0, wtfThreadEntryPoint, invocation.get(), 0, &threadIdentifier));
236 HANDLE threadHandle = threadHandleForIdentifier(threadID);
254 HANDLE threadHandle = threadHandleForIdentifier(threadID);
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
Surface.h 38 Surface(Display *display, const egl::Config *config, HANDLE shareHandle, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureTarget);
73 HANDLE mShareHandle;
  /external/chromium_org/third_party/lcov/bin/
gendesc 109 # print_usage(handle)
116 local *HANDLE = $_[0];
118 print(HANDLE <<END_OF_USAGE)
  /external/chromium_org/third_party/lcov-1.9/bin/
gendesc 112 # print_usage(handle)
119 local *HANDLE = $_[0];
121 print(HANDLE <<END_OF_USAGE)
  /external/chromium_org/third_party/libevent/sample/
event-test.c 43 len = ReadFile((HANDLE)fd, buf, sizeof(buf) - 1, &dwBytesRead, NULL);
74 HANDLE socket;
  /external/llvm/lib/Support/
Threading.cpp 125 HANDLE hThread = (HANDLE)::_beginthreadex(NULL,
  /external/qemu/distrib/sdl-1.2.15/src/timer/wince/
SDL_systimer.c 99 static HANDLE timersThread = 0;
100 static HANDLE timersQuitEvent = 0;
148 /* Data to handle a single periodic alarm */
  /hardware/invensense/60xx/mlsdk/platform/include/
i2c.h 61 HANDLE i2cHndl;
62 HANDLE hDevice; // handle to the drive to be examined
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osProcessWin.cpp 52 // close the thread handle we do not need it,
53 // keep the process handle for wait/trywait operations, will
127 HANDLE hProc = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
162 HANDLE process = OpenProcess(SYNCHRONIZE, FALSE, pid);
  /development/host/windows/usb/api/
adb_legacy_interface.cpp 40 HANDLE usb_device_handle = CreateFile(interface_name().c_str(),
60 // Preserve error accross handle close
112 HANDLE usb_device_handle = CreateFile(interface_name().c_str(),
175 HANDLE usb_device_handle = CreateFile(interface_name().c_str(),
282 HANDLE usb_device_handle) {
297 HANDLE usb_device_handle) {
312 HANDLE usb_device_handle) {
  /external/chromium_org/chrome/installer/mini_installer/
decompress.cc 87 HANDLE file = CreateFileW(path, access, FILE_SHARE_READ, NULL, disposition,
94 if (!::ReadFile(reinterpret_cast<HANDLE>(hf), pv, cb, &read, NULL))
101 if (!::WriteFile(reinterpret_cast<HANDLE>(hf), pv, cb, &written, NULL))
107 return ::CloseHandle(reinterpret_cast<HANDLE>(hf)) ? 0 : -1;
111 return ::SetFilePointer(reinterpret_cast<HANDLE>(hf), dist, NULL, seektype);
137 SetFileTime(reinterpret_cast<HANDLE>(pfdin->hf), &local, NULL, NULL);
164 // Module handle of cabinet.dll

Completed in 579 milliseconds

<<11121314151617181920>>