/external/chromium/net/disk_cache/ |
mapped_file.h | 45 HANDLE section_;
|
/external/chromium/third_party/libjingle/source/talk/base/ |
event.h | 59 HANDLE event_handle_;
|
/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/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 | 39 DWORD default_timeout, HANDLE* pipe);
|
sync_interception.cc | 18 HANDLE WINAPI TargetCreateEventW(CreateEventWFunction orig_CreateEvent, 23 HANDLE handle = orig_CreateEvent(security_attributes, manual_reset, local 26 if (NULL != handle) 27 return handle; 56 return answer.handle; 65 HANDLE WINAPI TargetOpenEventW(OpenEventWFunction orig_OpenEvent, 69 HANDLE handle = orig_OpenEvent(desired_access, inherit_handle, name); local 71 if (NULL != handle) [all...] |
sync_policy.cc | 69 HANDLE *handle) { 75 HANDLE local_handle = ::CreateEvent(NULL, manual_reset, initial_state, 81 client_info.process, handle, 0, FALSE, 93 HANDLE *handle) { 99 HANDLE local_handle = ::OpenEvent(desired_access, FALSE, 105 client_info.process, handle, 0, inherit_handle,
|
nt_internals.h | 32 #define CURRENT_PROCESS ((HANDLE) -1) 33 #define CURRENT_THREAD ((HANDLE) -2) 63 HANDLE RootDirectory; 150 IN HANDLE Handle); 158 HANDLE RootDirectory; 164 IN HANDLE FileHandle, 206 IN HANDLE FileHandle OPTIONAL); 213 IN HANDLE SectionHandle, 214 IN HANDLE ProcessHandle [all...] |
filesystem_policy.h | 49 HANDLE* handle, 65 HANDLE* handle, 92 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 | 77 // Returns true if the handle corresponds to the object pointed by this path. 78 bool SameObject(HANDLE handle, const wchar_t* full_path); 80 // Resolves a handle to an nt path. Returns true if the handle can be resolved. 81 bool GetPathFromHandle(HANDLE handle, std::wstring* path); 87 // Translates a reserved key name to its handle. 101 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/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/base/win/ |
object_watcher.cc | 26 bool ObjectWatcher::StartWatching(HANDLE object, Delegate* delegate) { 80 HANDLE ObjectWatcher::GetWatchedObject() { 99 HANDLE object = object_;
|
/external/chromium_org/media/audio/ |
cross_process_notification_win.cc | 44 HANDLE our_process = ::GetCurrentProcess(); 52 // In case we're sharing to ourselves, we can close the handle, but 71 // Create two manually resettable events and give each party a handle 73 HANDLE event_a = ::CreateEvent(NULL, TRUE, FALSE, NULL); 74 HANDLE event_b = ::CreateEvent(NULL, TRUE, FALSE, NULL); 102 ExtraWaitThread(HANDLE stop, HANDLE* events, size_t count, 112 HANDLE events[MAXIMUM_WAIT_OBJECTS] = { stop_ }; 113 HANDLE next_thread = NULL; 124 base::PlatformThreadHandle handle; variable [all...] |
/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 | 64 HANDLE m_blockLock; 65 HANDLE m_blockQueue; 66 HANDLE m_unblockLock;
|