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

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.15/src/audio/windx5/
SDL_dx5audio.h 42 HANDLE audio_event;
  /external/webrtc/src/system_wrappers/source/
thread_win.h 51 // it. Basically it should be fine to reclaim the handle when calling stop
58 HANDLE _thread;
  /external/wpa_supplicant_8/wpa_supplicant/
win_if_list.c 48 static HANDLE ndisuio_open(void)
51 HANDLE h;
74 static void ndisuio_query_bindings(HANDLE ndisuio)
127 HANDLE ndisuio = ndisuio_open();
  /ndk/sources/host-tools/make-3.81/w32/include/
dirent.h 46 HANDLE dir_hDirHandle;
  /external/chromium_org/sandbox/win/src/
restricted_token_unittest.cc 17 // Tests the initializatioin with an invalid token handle.
20 ASSERT_EQ(ERROR_INVALID_HANDLE, token.Init(reinterpret_cast<HANDLE>(0x5555)));
26 HANDLE token_handle = INVALID_HANDLE_VALUE;
39 // Get the handle to the restricted token.
41 HANDLE restricted_token_handle = NULL;
65 HANDLE token_handle = INVALID_HANDLE_VALUE;
81 // Get the handle to the restricted token.
83 HANDLE restricted_token_handle = NULL;
107 HANDLE restricted_token;
122 HANDLE impersonation_token
148 HANDLE handle; local
    [all...]
named_pipe_interception.cc 18 HANDLE WINAPI TargetCreateNamedPipeW(
23 HANDLE pipe = orig_CreateNamedPipeW(pipe_name, open_mode, pipe_mode,
65 return answer.handle;
restricted_token_utils.cc 22 DWORD CreateRestrictedToken(HANDLE *token_handle,
147 HANDLE *const job_handle_ret) {
154 // Share the Desktop handle to be able to use MessageBox() in the sandboxed
162 HANDLE primary_token_handle = NULL;
174 HANDLE impersonation_token_handle;
212 HANDLE temp_thread = process_info.thread_handle();
235 DWORD SetObjectIntegrityLabel(HANDLE handle, SE_OBJECT_TYPE type,
259 error = ::SetSecurityInfo(handle, type,
297 DWORD SetTokenIntegrityLevel(HANDLE token, IntegrityLevel integrity_level)
    [all...]
sandbox_policy.h 195 virtual ResultCode SetStdoutHandle(HANDLE handle) = 0;
196 virtual ResultCode SetStderrHandle(HANDLE handle) = 0;
217 // Adds a handle that will be closed in the target process after lockdown.
219 // An empty string for handle_name indicates the handle is unnamed.
  /external/chromium_org/tools/memory_watcher/
memory_hook.cc 48 typedef HANDLE (WINAPI *Type_HeapCreate)(DWORD flOptions,
51 typedef BOOL (WINAPI *Type_HeapDestroy)(HANDLE hHeap);
52 typedef LPVOID (WINAPI *Type_HeapAlloc)(HANDLE hHeap, DWORD dwFlags,
54 typedef LPVOID (WINAPI *Type_HeapReAlloc)(HANDLE hHeap, DWORD dwFlags,
56 typedef BOOL (WINAPI *Type_HeapFree)(HANDLE hHeap, DWORD dwFlags,
72 typedef LPVOID (WINAPI *Type_VirtualAllocEx)(HANDLE process, LPVOID address,
75 typedef BOOL (WINAPI *Type_VirtualFreeEx)(HANDLE process, LPVOID address,
79 typedef LPVOID (WINAPI *Type_MapViewOfFile)(HANDLE hFileMappingObject,
84 typedef LPVOID (WINAPI *Type_MapViewOfFileEx)(HANDLE hFileMappingObject,
92 typedef DWORD (WINAPI *Type_NtUnmapViewOfSection)(HANDLE process
    [all...]
  /external/chromium_org/ui/native_theme/
native_theme_win.h 261 // |theme| is the theme handle. |hdc| is the handle for the device context.
265 HRESULT PaintScaledTheme(HANDLE theme,
292 // Returns a handle to the theme data.
293 HANDLE GetThemeHandle(ThemeName theme_name) const;
295 typedef HRESULT (WINAPI* DrawThemeBackgroundPtr)(HANDLE theme,
301 typedef HRESULT (WINAPI* DrawThemeBackgroundExPtr)(HANDLE theme,
307 typedef HRESULT (WINAPI* GetThemeColorPtr)(HANDLE hTheme,
312 typedef HRESULT (WINAPI* GetThemeContentRectPtr)(HANDLE hTheme,
318 typedef HRESULT (WINAPI* GetThemePartSizePtr)(HANDLE hTheme
    [all...]
  /development/host/windows/usb/api/
adb_endpoint_object.cpp 19 encapsulates a handle opened to an endpoint on our device.
53 HANDLE event_handle,
66 HANDLE event_handle,
  /external/chromium/base/
process.h 21 // handle to a process.
24 typedef HANDLE ProcessHandle;
26 typedef HANDLE UserTokenHandle;
51 explicit Process(ProcessHandle handle) : process_(handle) {
57 // A handle to the current process.
60 // Get/Set the handle for this process. The handle will be 0 if the process
62 ProcessHandle handle() const { return process_; } function in class:base::Process
63 void set_handle(ProcessHandle handle) {
    [all...]
  /external/chromium/base/synchronization/
condition_variable.h 129 HANDLE handle() const;
143 HANDLE handle_;
  /external/chromium_org/base/process/
process_handle.h 21 // handle to a process.
24 typedef HANDLE ProcessHandle;
26 typedef HANDLE UserTokenHandle;
43 // Converts a PID to a process handle. This handle must be closed by
45 BASE_EXPORT bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle);
47 // Converts a PID to a process handle. On Windows the handle is opened
49 // You have to close returned handle using CloseProcessHandle. Returns true
54 ProcessHandle* handle);
    [all...]
  /external/chromium_org/base/win/
scoped_process_information_unittest.cc 19 const HANDLE kProcessHandle = reinterpret_cast<HANDLE>(7651);
20 const HANDLE kThreadHandle = reinterpret_cast<HANDLE>(1567);
79 HANDLE process = process_info.TakeProcessHandle();
91 HANDLE thread = process_info.TakeThreadHandle();
103 HANDLE process = process_info.TakeProcessHandle();
104 HANDLE thread = process_info.TakeThreadHandle();
windows_version.h 13 typedef void* HANDLE;
83 // Like wow64_status(), but for the supplied handle instead of the current
85 static WOW64Status GetWOW64StatusForProcess(HANDLE process_handle);
  /external/chromium_org/chrome_frame/
update_launcher.cc 25 DWORD WaitForProcessExitCode(HANDLE handle) {
27 return ((::WaitForSingleObject(handle, INFINITE) == WAIT_OBJECT_0) &&
28 ::GetExitCodeProcess(handle, &exit_code)) ?
68 base::win::ScopedHandle process(reinterpret_cast<HANDLE>(phandle));
  /external/chromium_org/components/nacl/common/
nacl_types.h 21 #include <windows.h> // for HANDLE
28 typedef HANDLE FileDescriptor;
29 inline HANDLE ToNativeHandle(const FileDescriptor& desc) {
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_cancel.c 63 ptw32_RegisterCancelation (PAPCFUNC unused1, HANDLE threadH, DWORD unused2)
147 HANDLE threadH = tp->threadH;
  /external/chromium_org/net/base/
net_util_win.cc 30 DWORD, VOID*, DWORD*, HANDLE*);
32 HANDLE, VOID*, WLAN_INTERFACE_INFO_LIST**);
34 HANDLE, const GUID*, WLAN_INTF_OPCODE, VOID*, DWORD*, VOID**,
37 typedef DWORD (WINAPI *WlanCloseHandleFunc)(HANDLE, VOID*);
186 typedef HANDLE Handle;
188 static bool CloseHandle(HANDLE handle) {
189 return lazy_wlanapi.Get().close_handle_func(handle, NULL) ==
192 static bool IsHandleValid(HANDLE handle)
    [all...]
  /external/chromium_org/sandbox/win/sandbox_poc/pocdll/
fs.cc 21 HANDLE file;
31 fprintf(output, "[GRANTED] Opening file \"%S\". Handle 0x%p\r\n", path,
40 void POCDLL_API TestFileSystem(HANDLE log) {
spyware.cc 12 void POCDLL_API TestSpyKeys(HANDLE log) {
48 void POCDLL_API TestSpyScreen(HANDLE log) {
  /external/chromium_org/sandbox/win/tests/common/
test_utils.cc 37 bool SetReparsePoint(HANDLE source, const wchar_t* target) {
62 bool DeleteReparsePoint(HANDLE source) {
  /external/chromium_org/third_party/libusb/src/libusb/os/
threads_windows.h 27 #define usbi_mutex_t HANDLE
32 HANDLE event;
  /external/zlib/src/contrib/minizip/
iowin32.c 45 HANDLE hf;
76 static voidpf win32_build_iowin(HANDLE hFile)
99 HANDLE hFile = NULL;
128 HANDLE hFile = NULL;
152 HANDLE hFile = NULL;
172 HANDLE hFile = NULL;
200 HANDLE hFile = NULL;
222 HANDLE hFile = NULL;
240 static BOOL MySetFilePointerEx(HANDLE hFile, LARGE_INTEGER pos, LARGE_INTEGER *newPos, DWORD dwMoveMethod)
263 HANDLE hFile = NULL
    [all...]

Completed in 479 milliseconds

1 2 3 4 5 6 7 8 91011>>