HomeSort by relevance Sort by last modified time
    Searched refs:HANDLE (Results 1 - 25 of 973) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
SDL_systhread_c.h 27 typedef HANDLE SYS_ThreadHandle;
  /external/chromium_org/chrome/browser/hang_monitor/
hang_crash_dump_win.h 12 void CrashDumpAndTerminateHungChildProcess(HANDLE hprocess);
16 void CrashDumpForHangDebugging(HANDLE hprocess);
  /ndk/sources/host-tools/make-3.81/w32/include/
sub_proc.h 34 EXTERN_DECL(HANDLE process_init, (VOID_DECL));
35 EXTERN_DECL(HANDLE process_init_fd, (HANDLE stdinh, HANDLE stdouth,
36 HANDLE stderrh));
37 EXTERN_DECL(long process_begin, (HANDLE proc, char **argv, char **envp,
39 EXTERN_DECL(long process_pipe_io, (HANDLE proc, char *stdin_data,
41 EXTERN_DECL(long process_file_io, (HANDLE proc));
42 EXTERN_DECL(void process_cleanup, (HANDLE proc));
43 EXTERN_DECL(HANDLE process_wait_for_any, (VOID_DECL));
    [all...]
  /external/chromium_org/sandbox/win/sandbox_poc/pocdll/
exports.h 19 // "log" is the handle of the log file.
20 void POCDLL_API TestFileSystem(HANDLE log);
23 // resource references by the handle along with the access right.
24 // "log" is the handle of the log file.
25 void POCDLL_API TestGetHandle(HANDLE log);
30 // "log" is the handle of the log file.
31 void POCDLL_API TestThreadBombing(HANDLE log);
36 // "log" is the handle of the log file.
39 void POCDLL_API TestTakeAllCpu(HANDLE log);
44 // "log" is the handle of the log file
    [all...]
  /external/chromium_org/sandbox/win/tests/common/
test_utils.h 12 bool SetReparsePoint(HANDLE source, const wchar_t* target);
16 bool DeleteReparsePoint(HANDLE source);
  /external/chromium_org/sandbox/win/src/
job.h 38 DWORD AssignProcessToJob(HANDLE process_handle);
40 // Grants access to "handle" to the job. All processes in the job can
41 // subsequently recognize and use the handle.
45 DWORD UserHandleGrantAccess(HANDLE handle);
47 // Revokes ownership to the job handle and returns it. The destructor of the
48 // class won't close the handle when called.
50 HANDLE Detach();
53 // Handle to the job referenced by the object.
54 HANDLE job_handle_
    [all...]
sharedmem_ipc_server.h 39 // target_process: handle to the target process. It must be suspended.
41 // target_job: the job object handle associated with the target process.
44 SharedMemIPCServer(HANDLE target_process, DWORD target_process_id,
45 HANDLE target_job, ThreadProvider* thread_provider,
66 bool MakeEvents(HANDLE* server_ping, HANDLE* server_pong,
67 HANDLE* client_ping, HANDLE* client_pong);
76 HANDLE ping_event;
78 HANDLE pong_event
    [all...]
handle_interception.h 15 ResultCode DuplicateHandleProxy(HANDLE source_handle,
17 HANDLE* target_handle,
acl.h 16 bool GetDefaultDacl(HANDLE token,
27 bool AddSidToDefaultDacl(HANDLE token, const Sid& sid, ACCESS_MASK access);
31 bool AddUserSidToDefaultDacl(HANDLE token, ACCESS_MASK access);
35 bool AddKnownSidToKernelObject(HANDLE object, const Sid& sid,
shared_handles.h 10 #ifndef HANDLE
11 // We can provide our own windows compatilble handle definition, but
15 typedef void* HANDLE;
22 // It addresses the need to communicate a handle value between two windows
33 // HANDLE handle = SomeFunction(..);
36 // shared_handles.SetHandle(3, handle);
41 // HANDLE handle = shared_handles.GetHandle(3);
49 // Note3: Under windows a kernel object handle in one process does no
    [all...]
process_thread_policy.h 32 // Opens a thread from the child process and returns the handle.
40 HANDLE* handle);
42 // Opens the process id passed in and returns the duplicated handle to
48 HANDLE* handle);
51 // handle to the child. We only allow the child processes to open his own
54 HANDLE process,
56 HANDLE* handle);
    [all...]
target_interceptions.h 19 NtMapViewOfSectionFunction orig_MapViewOfSection, HANDLE section,
20 HANDLE process, PVOID *base, ULONG_PTR zero_bits, SIZE_T commit_size,
28 NtUnmapViewOfSectionFunction orig_UnmapViewOfSection, HANDLE process,
  /external/chromium/base/win/
scoped_handle.h 17 // Used so we always remember to close the handle.
28 // To sqirrel the handle away somewhere else:
31 // To explicitly close the handle:
38 explicit ScopedHandle(HANDLE h) : handle_(NULL) {
52 void Set(HANDLE new_handle) {
60 HANDLE Get() {
64 operator HANDLE() { return handle_; }
66 HANDLE Take() {
68 HANDLE h = handle_;
83 HANDLE handle_
    [all...]
object_watcher.h 30 // void DoStuffWhenSignaled(HANDLE object) {
33 // virtual void OnObjectSignaled(HANDLE object) {
52 virtual void OnObjectSignaled(HANDLE object) = 0;
64 bool StartWatching(HANDLE object, Delegate* delegate);
74 // Returns the handle of the object being watched, or NULL if the object
76 HANDLE GetWatchedObject();
  /external/chromium_org/base/win/
scoped_handle_unittest.cc 8 void CreateHandle(int value, HANDLE* result) {
9 *result = reinterpret_cast<HANDLE>(value);
13 base::win::ScopedHandle handle; local
18 base::win::ScopedHandle::Receiver a = handle.Receive();
19 HANDLE* pointer = a;
20 *pointer = reinterpret_cast<HANDLE>(value);
23 EXPECT_EQ(handle.Get(), reinterpret_cast<HANDLE>(value));
24 HANDLE to_discard = handle.Take()
    [all...]
object_watcher.h 31 // void DoStuffWhenSignaled(HANDLE object) {
34 // virtual void OnObjectSignaled(HANDLE object) {
55 virtual void OnObjectSignaled(HANDLE object) = 0;
67 bool StartWatching(HANDLE object, Delegate* delegate);
77 // Returns the handle of the object being watched, or NULL if the object
79 HANDLE GetWatchedObject();
93 HANDLE object_; // The object being watched
94 HANDLE wait_object_; // Returned by RegisterWaitForSingleObject
  /external/lzma/CPP/Windows/
Handle.h 1 // Windows/Handle.h
11 HANDLE _handle;
13 operator HANDLE() { return _handle; }
26 void Attach(HANDLE handle) { _handle = handle; }
27 HANDLE Detach()
29 HANDLE handle = _handle; local
31 return handle;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 62 # HANDLE types
63 HANDLE = c_void_p # in the header files: void *
65 HACCEL = HANDLE
66 HBITMAP = HANDLE
67 HBRUSH = HANDLE
68 HCOLORSPACE = HANDLE
69 HDC = HANDLE
70 HDESK = HANDLE
71 HDWP = HANDLE
72 HENHMETAFILE = HANDLE
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 62 # HANDLE types
63 HANDLE = c_void_p # in the header files: void *
65 HACCEL = HANDLE
66 HBITMAP = HANDLE
67 HBRUSH = HANDLE
68 HCOLORSPACE = HANDLE
69 HDC = HANDLE
70 HDESK = HANDLE
71 HDWP = HANDLE
72 HENHMETAFILE = HANDLE
    [all...]
  /external/chromium_org/net/tools/dump_cache/
upgrade_win.h 12 HANDLE CreateServer(base::string16* pipe_number);
16 int UpgradeCache(const base::FilePath& output_path, HANDLE pipe);
  /external/chromium_org/sandbox/win/wow_helper/
target_code.h 18 HANDLE dll_load; // Event to signal the broker.
19 HANDLE continue_load; // Event to wait for the broker.
20 HANDLE section; // First argument of the call.
30 PatchInfo* patch_info, HANDLE process, PVOID* base, ULONG_PTR zero_bits,
  /external/chromium_org/media/audio/win/
avrt_wrapper_win.h 31 bool AvRevertMmThreadCharacteristics(HANDLE avrt_handle);
32 HANDLE AvSetMmThreadCharacteristics(const wchar_t* task_name,
34 bool AvSetMmThreadPriority(HANDLE avrt_handle, AVRT_PRIORITY priority);
  /external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
spooler_win.h 16 BOOL (WINAPI *pfnEnumPorts)(HANDLE,
24 BOOL (WINAPI *pfnOpenPort)(HANDLE monitor_data, wchar_t*, HANDLE* handle);
28 BOOL (WINAPI *pfnStartDocPort)(HANDLE port_handle,
34 BOOL (WINAPI *pfnWritePort)(HANDLE port,
39 BOOL (WINAPI *pfnReadPort)(HANDLE, BYTE*, DWORD, DWORD* bytes_read);
41 BOOL (WINAPI *pfnEndDocPort)(HANDLE port_handle);
43 BOOL (WINAPI *pfnClosePort)(HANDLE port_handle);
57 BOOL (WINAPI *pfnXcvOpenPort)(HANDLE monitor
    [all...]
port_monitor.h 26 BOOL WINAPI Monitor2EnumPorts(HANDLE,
34 BOOL WINAPI Monitor2OpenPort(HANDLE monitor_data, wchar_t*, HANDLE* handle);
36 BOOL WINAPI Monitor2StartDocPort(HANDLE port_handle,
42 BOOL WINAPI Monitor2WritePort(HANDLE port,
47 BOOL WINAPI Monitor2ReadPort(HANDLE, BYTE*, DWORD, DWORD* bytes_read);
49 BOOL WINAPI Monitor2EndDocPort(HANDLE port_handle);
51 BOOL WINAPI Monitor2ClosePort(HANDLE port_handle);
53 VOID WINAPI Monitor2Shutdown(HANDLE monitor_handle)
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_ndis.h 14 struct ndis_events_data * ndis_events_init(HANDLE *read_pipe, HANDLE *event,
31 HANDLE event_queue; /* NDISUIO notifier MsgQueue */
32 HANDLE connected_event; /* WpaSupplicantConnected event */
36 HANDLE ndisuio;
54 HANDLE events_pipe, event_avail;

Completed in 658 milliseconds

1 2 3 4 5 6 7 8 91011>>