/external/chromium_org/base/synchronization/ |
waitable_event_win.cc | 23 WaitableEvent::WaitableEvent(HANDLE handle) 24 : handle_(handle) { 25 CHECK(handle) << "Tried to create WaitableEvent from NULL handle"; 32 HANDLE WaitableEvent::Release() { 33 HANDLE rv = handle_; 81 HANDLE handles[MAXIMUM_WAIT_OBJECTS]; 86 handles[i] = events[i]->handle();
|
/external/chromium_org/base/win/ |
scoped_process_information.cc | 18 bool CheckAndDuplicateHandle(HANDLE source, ScopedHandle* target) { 22 HANDLE temp = NULL; 26 DPLOG(ERROR) << "Failed to duplicate a handle."; 97 HANDLE ScopedProcessInformation::TakeProcessHandle() { 102 HANDLE ScopedProcessInformation::TakeThreadHandle() {
|
object_watcher.cc | 26 bool ObjectWatcher::StartWatching(HANDLE object, Delegate* delegate) { 80 HANDLE ObjectWatcher::GetWatchedObject() { 99 HANDLE object = object_;
|
/external/chromium_org/chrome/installer/test/ |
resource_updater.h | 41 HANDLE handle_;
|
/external/chromium_org/ppapi/shared_impl/ |
platform_file.cc | 11 base::PlatformFile IntToPlatformFile(int32_t handle) { 13 return reinterpret_cast<HANDLE>(static_cast<intptr_t>(handle)); 15 return handle; 21 int32_t PlatformFileToInt(base::PlatformFile handle) { 23 return static_cast<int32_t>(reinterpret_cast<intptr_t>(handle)); 25 return handle;
|
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/ |
pocdll.cc | 18 void POCDLL_API Run(HANDLE log) {
|
/external/chromium_org/sandbox/win/src/ |
job.cc | 87 DWORD Job::UserHandleGrantAccess(HANDLE handle) { 91 if (!::UserHandleGrantAccess(handle, 100 HANDLE Job::Detach() { 101 HANDLE handle_temp = job_handle_; 106 DWORD Job::AssignProcessToJob(HANDLE process_handle) {
|
named_pipe_policy.h | 40 DWORD default_timeout, HANDLE* pipe);
|
filesystem_policy.h | 50 HANDLE* handle, 66 HANDLE* handle, 93 HANDLE target_file_handle,
|
handle_policy.cc | 56 HANDLE source_handle, 58 HANDLE* target_handle, 61 // The only action supported is ASK_BROKER which means duplicate the handle. 81 HANDLE target_process = remote_target_process.IsValid() ?
|
win_utils.h | 80 // Returns true if the handle corresponds to the object pointed by this path. 81 bool SameObject(HANDLE handle, const wchar_t* full_path); 83 // Resolves a handle to an nt path. Returns true if the handle can be resolved. 84 bool GetPathFromHandle(HANDLE handle, base::string16* path); 91 // Translates a reserved key name to its handle. 105 bool WriteProtectedChildMemory(HANDLE child_process, void* address,
|
/external/chromium_org/third_party/libusb/src/libusb/os/ |
poll_windows.h | 30 // Handle synchronous completion through the overlapped structure 41 #define DUMMY_HANDLE ((HANDLE)(LONG_PTR)-2) 79 HANDLE handle; // what we need to attach overlapped to the I/O op, so we can poll it member in struct:winfd 95 struct winfd usbi_create_fd(HANDLE handle, int access_mode, 99 struct winfd handle_to_winfd(HANDLE handle);
|
/external/chromium_org/third_party/sfntly/cpp/src/test/ |
platform_thread.h | 36 typedef HANDLE PlatformThreadHandle; 55 // |*thread_handle| will be assigned a handle to the newly created thread, 58 // NOTE: When you are done with the thread handle, you must call Join to
|
/external/chromium_org/tools/memory_watcher/ |
dllmain.cc | 28 static HANDLE g_dump_event = INVALID_HANDLE_VALUE; 29 static HANDLE g_quit_event = INVALID_HANDLE_VALUE; 30 static HANDLE g_watcher_thread = INVALID_HANDLE_VALUE; 67 HANDLE events[2] = { g_dump_event, g_quit_event };
|
/external/qemu/distrib/sdl-1.2.15/src/audio/windib/ |
SDL_dibaudio.h | 37 HANDLE audio_event;
|
/external/sfntly/cpp/src/test/ |
platform_thread.h | 36 typedef HANDLE PlatformThreadHandle; 55 // |*thread_handle| will be assigned a handle to the newly created thread, 58 // NOTE: When you are done with the thread handle, you must call Join to
|
/sdk/emulator/opengl/shared/OpenglOsUtils/ |
osThread.h | 48 HANDLE m_thread;
|
/development/host/windows/usb/api/ |
adb_endpoint_object.h | 21 encapsulates a handle opened to an endpoint on our device.
26 /** Class AdbEndpointObject encapsulates a handle opened to an endpoint on
66 @param[in] event_handle Event handle that should be signaled when async I/O
67 completes. Can be NULL. If it's not NULL this handle will be used to
72 @return A handle to IO completion object or NULL on failure. If NULL is
79 HANDLE event_handle,
118 @param[in] event_handle Event handle that should be signaled when async I/O
119 completes. Can be NULL. If it's not NULL this handle will be used to
124 @return A handle to IO completion object or NULL on failure. If NULL is
130 HANDLE event_handle, [all...] |
/external/chromium/net/base/ |
network_change_notifier_win.cc | 90 HANDLE ws_handle; 147 void NetworkChangeNotifierWin::OnObjectSignaled(HANDLE object) { 164 HANDLE handle = NULL; local 165 DWORD ret = NotifyAddrChange(&handle, &addr_overlapped_);
|
/external/chromium_org/printing/backend/ |
printing_info_win.cc | 13 uint8* GetDriverInfo(HANDLE printer, int level) { 27 uint8* GetPrinterInfo(HANDLE printer, int level) { 50 bool UserDefaultDevMode::Init(HANDLE printer) {
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
ThreadingPrimitives.h | 62 HANDLE m_blockLock; 63 HANDLE m_blockQueue; 64 HANDLE m_unblockLock;
|
/external/chromium_org/third_party/npapi/npspy/common/ |
utils.cpp | 93 CloseHandle((HANDLE)hFile); 104 WriteFile((HANDLE)hFile, pBuf, iSize, &dwRet, NULL); 114 FlushFileBuffers((HANDLE)hFile);
|
/external/lzma/CPP/Windows/ |
MemoryLock.cpp | 11 typedef BOOL (WINAPI * OpenProcessTokenP)(HANDLE ProcessHandle, DWORD DesiredAccess, PHANDLE TokenHandle);
13 typedef BOOL (WINAPI * AdjustTokenPrivilegesP)(HANDLE TokenHandle, BOOL DisableAllPrivileges,
34 HANDLE token;
|
/external/srec/portable/include/ |
pmutex.h | 47 typedef HANDLE MUTEX; 48 typedef HANDLE EVENT; 56 ESR_ReturnCode waitForHandle(HANDLE* handle, asr_uint32_t timeout);
|
/hardware/ti/omap3/dspbridge/inc/ |
sync.h | 84 HANDLE hUserEvent; /* Platform's User Mode synch. object. */ 85 HANDLE hKernelEvent; /* Platform's Kernel Mode sync. object. */ 93 * Close this event handle, freeing resources allocated in SYNC_OpenEvent 96 * hEvent: Handle to a synchronization event, created/opened in 100 * DSP_EFAIL: Failed to close event handle. 101 * DSP_EHANDLE: Invalid handle. 114 * hCSObj: critical section handle. 117 * DSP_EHANDLE: Invalid handle. 128 * hCSObj: critical section handle. 131 * DSP_EHANDLE: Invalid handle [all...] |