HomeSort by relevance Sort by last modified time
    Searched refs:HANDLE (Results 326 - 350 of 980) sorted by null

<<11121314151617181920>>

  /external/chromium_org/content/common/
sandbox_win.cc 227 HANDLE token;
406 BOOL (WINAPI *g_iat_orig_duplicate_handle)(HANDLE source_process_handle,
407 HANDLE source_handle,
408 HANDLE target_process_handle,
417 "You are attempting to duplicate a privileged handle into a sandboxed"
421 void CheckDuplicateHandle(HANDLE handle) {
428 error = g_QueryObject(handle, ObjectTypeInformation, type_info, size, &size);
435 error = g_QueryObject(handle, ObjectBasicInformation, &basic_info, size,
450 BOOL WINAPI DuplicateHandlePatch(HANDLE source_process_handle
    [all...]
  /external/chromium_org/chrome_frame/test/
mock_ie_event_sink_test.h 213 MOCK_METHOD1(OnObjectSignaled, void (HANDLE process_handle)); // NOLINT
218 for (std::vector<HANDLE>::iterator it = process_handles_.begin();
225 void WatchProcess(HANDLE process_handle) {
236 HANDLE process_handle = ::OpenProcess(SYNCHRONIZE, FALSE, pid);
245 std::vector<HANDLE> process_handles_;
  /external/chromium_org/tools/win/link_limiter/
limiter.cc 177 static HANDLE WaitForPipe(const tstring& pipename,
178 HANDLE event,
183 HANDLE pipe = INVALID_HANDLE_VALUE;
224 HANDLE event = CreateEvent(
233 HANDLE pipe =
  /external/qemu/
os-win32.c 90 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
97 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
103 w->events[w->num] = handle;
110 void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
117 if (w->events[i] == handle)
184 HANDLE h;
250 HANDLE file;
  /external/v8/src/
platform-win32.cc 679 // standard output handle is invalid or its file type is unknown.
998 Win32MemoryMappedFile(HANDLE file,
999 HANDLE file_mapping,
1010 HANDLE file_;
1011 HANDLE file_mapping_;
1019 HANDLE file = CreateFileA(name, GENERIC_READ | GENERIC_WRITE,
1026 HANDLE file_mapping = CreateFileMapping(file, NULL,
1039 HANDLE file = CreateFileA(name, GENERIC_READ | GENERIC_WRITE,
1043 HANDLE file_mapping = CreateFileMapping(file, NULL,
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
patch_functions.cc 351 static LPVOID WINAPI Perftools_HeapAlloc(HANDLE hHeap, DWORD dwFlags,
353 static BOOL WINAPI Perftools_HeapFree(HANDLE hHeap, DWORD dwFlags,
356 static LPVOID WINAPI Perftools_VirtualAllocEx(HANDLE process, LPVOID address,
359 static BOOL WINAPI Perftools_VirtualFreeEx(HANDLE process, LPVOID address,
362 static LPVOID WINAPI Perftools_MapViewOfFileEx(HANDLE hFileMappingObject,
371 HANDLE hFile,
683 const HANDLE hCurrentProcess = GetCurrentProcess();
700 // Now we handle the unpatching of modules we have in g_module_libcs
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
patch_functions.cc 351 static LPVOID WINAPI Perftools_HeapAlloc(HANDLE hHeap, DWORD dwFlags,
353 static BOOL WINAPI Perftools_HeapFree(HANDLE hHeap, DWORD dwFlags,
356 static LPVOID WINAPI Perftools_VirtualAllocEx(HANDLE process, LPVOID address,
359 static BOOL WINAPI Perftools_VirtualFreeEx(HANDLE process, LPVOID address,
362 static LPVOID WINAPI Perftools_MapViewOfFileEx(HANDLE hFileMappingObject,
371 HANDLE hFile,
683 const HANDLE hCurrentProcess = GetCurrentProcess();
700 // Now we handle the unpatching of modules we have in g_module_libcs
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
Win32PipeStream.cpp 40 Win32PipeStream::Win32PipeStream(HANDLE pipe, size_t bufSize) :
64 * One does not create/bind a pipe, and collect a new handle each
71 * So listen() is a no-op, and accept() really creates the pipe handle.
73 * Also, connect() must create a pipe handle with CreateFile() and
87 HANDLE pipe;
126 HANDLE pipe;
144 /* If we have a valid pipe handle, break from the loop */
  /external/chromium_org/base/memory/
shared_memory.h 32 // the underlying OS handle to a shared memory segment.
34 typedef HANDLE SharedMemoryHandle;
35 typedef HANDLE SharedMemoryLock;
85 // WARNING: This does not reduce the OS-level permissions on the handle; it
88 // that |read_only| matches the permissions of the handle.
89 SharedMemory(SharedMemoryHandle handle, bool read_only);
94 SharedMemory(SharedMemoryHandle handle, bool read_only,
100 // Return true iff the given handle is valid (i.e. not the distingished
101 // invalid value; NULL for a HANDLE and -1 for a file descriptor)
102 static bool IsHandleValid(const SharedMemoryHandle& handle);
    [all...]
  /external/chromium_org/net/base/
network_change_notifier_win.cc 30 // to open registry keys and to handle FilePathWatcher updates.
151 HANDLE ws_handle;
222 void NetworkChangeNotifierWin::OnObjectSignaled(HANDLE object) {
294 HANDLE handle = NULL; local
295 DWORD ret = NotifyAddrChange(&handle, &addr_overlapped_);
  /external/chromium_org/sandbox/win/src/
handle_closer_agent.cc 15 // that can be generated when handle tracing is enabled.
16 NTSTATUS QueryObjectTypeInformation(HANDLE handle,
25 status = QueryObject(handle, ObjectTypeInformation, buffer, *size, size);
56 // Grab all the handle names.
81 const size_t kHandleOffset = sizeof(HANDLE);
92 HANDLE handle = NULL;
99 reinterpret_cast<size_t&>(handle) += kHandleOffset;
104 rc = QueryObjectTypeInformation(handle, type_info, &size)
    [all...]
policy_target_test.cc 23 HANDLE thread_token;
45 static HANDLE thread_token;
64 HANDLE thread_token;
86 HANDLE thread_token;
112 HANDLE thread = ::OpenThread(SYNCHRONIZE, FALSE, thread_id);
131 HANDLE thread = ::CreateThread(NULL, 0, &PolicyTargetTest_thread_main, 0, 0,
267 // Close the desktop handle.
338 // Close the desktop handle.
sharedmem_ipc_server.cc 17 SharedMemIPCServer::SharedMemIPCServer(HANDLE target_process,
19 HANDLE target_job,
115 // abandoned. Note: We purposely leak the local handle because we want it to
390 bool SharedMemIPCServer::MakeEvents(HANDLE* server_ping, HANDLE* server_pong,
391 HANDLE* client_ping, HANDLE* client_pong) {
  /external/srec/portable/src/
pcputimer.c 35 HANDLE hThread;
167 HANDLE hThread;
183 tmp->hThread = (HANDLE)pthread_self();
  /external/valgrind/unittest/
thread_wrappers_win.h 189 HANDLE hSignal_;
217 HANDLE tid() const { return t_; }
226 HANDLE t_;
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
Win32PipeStream.cpp 40 Win32PipeStream::Win32PipeStream(HANDLE pipe, size_t bufSize) :
64 * One does not create/bind a pipe, and collect a new handle each
71 * So listen() is a no-op, and accept() really creates the pipe handle.
73 * Also, connect() must create a pipe handle with CreateFile() and
87 HANDLE pipe;
125 HANDLE pipe;
141 /* If we have a valid pipe handle, break from the loop */
  /external/chromium_org/base/synchronization/
condition_variable_win.cc 160 HANDLE handle() const;
174 HANDLE handle_;
247 HANDLE handle; local
252 handle = waiting_event->handle();
253 DCHECK(handle);
258 WaitForSingleObject(handle, static_cast<DWORD>(max_time.InMilliseconds()));
269 std::stack<HANDLE> handles; // See FAQ-question-10
289 HANDLE handle; local
425 HANDLE WinXPCondVar::Event::handle() const { function in class:base::WinXPCondVar::Event
    [all...]
  /external/chromium_org/printing/backend/
win_helper.cc 61 HANDLE progress_event,
62 HANDLE completion_event,
263 HANDLE progress_event,
264 HANDLE completion_event,
282 bool InitBasicPrinterInfo(HANDLE printer, PrinterBasicInfo* printer_info) {
309 std::string GetDriverInfo(HANDLE printer) {
  /external/chromium/base/win/
registry.h 88 HANDLE watch_event() const { return watch_event_; }
89 HKEY Handle() const { return key_; }
93 HANDLE watch_event_;
  /external/chromium/net/proxy/
proxy_config_service_win.cc 60 HANDLE watch_event() const {
137 void ProxyConfigServiceWin::OnObjectSignaled(HANDLE object) {
  /external/chromium/net/udp/
udp_socket_win.h 105 virtual void OnObjectSignaled(HANDLE object);
117 virtual void OnObjectSignaled(HANDLE object);
  /external/chromium/third_party/libjingle/source/talk/base/
thread.h 65 // handle will, on Win32, be opened with only synchronization privileges -
72 // will have a NULL handle.
178 HANDLE GetHandle() {
203 HANDLE thread_;
  /external/chromium_org/base/message_loop/
message_pump_win.h 241 // HANDLE file_;
267 // HANDLE file_;
329 void RegisterIOHandler(HANDLE file_handle, IOHandler* handler);
335 bool RegisterJobObject(HANDLE job_handle, IOHandler* handler);
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
implement.h 158 HANDLE threadH; /* Win32 thread handle - POSIX thread is invalid if threadH == 0 */
159 pthread_t ptHandle; /* This thread's permanent pthread_t handle */
164 HANDLE cancelEvent;
225 HANDLE sem;
247 HANDLE event; /* Mutex release notification to waiting
319 HANDLE readyFlag; /* set after lock is released by
321 HANDLE nextFlag; /* set after 'next' ptr is set by
572 extern DWORD (*ptw32_register_cancelation) (PAPCFUNC, HANDLE, DWORD);
630 HANDLE threadH, DWORD callback_arg)
    [all...]
  /external/chromium_org/sandbox/win/sandbox_poc/
sandbox.cc 15 typedef void(__cdecl *lpfnInit)(HANDLE);
106 // the desktop handle has been granted to us, and we don't have a
108 // grant us access to a handle to a logfile and write the error that
139 HANDLE pipe = ::CreateFile(log_file.c_str(),

Completed in 1229 milliseconds

<<11121314151617181920>>