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

<<21222324252627282930>>

  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_evc.h 326 # define _STLP_ABORT() TerminateProcess(reinterpret_cast<HANDLE>(66), 0)
_windows.h 161 _STLP_WCE_WINBASEAPI BOOL WINAPI TerminateProcess(HANDLE hProcess, DWORD uExitCode);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_evc.h 326 # define _STLP_ABORT() TerminateProcess(reinterpret_cast<HANDLE>(66), 0)
_windows.h 161 _STLP_WCE_WINBASEAPI BOOL WINAPI TerminateProcess(HANDLE hProcess, DWORD uExitCode);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_evc.h 326 # define _STLP_ABORT() TerminateProcess(reinterpret_cast<HANDLE>(66), 0)
_windows.h 161 _STLP_WCE_WINBASEAPI BOOL WINAPI TerminateProcess(HANDLE hProcess, DWORD uExitCode);
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/
_evc.h 326 # define _STLP_ABORT() TerminateProcess(reinterpret_cast<HANDLE>(66), 0)
_windows.h 161 _STLP_WCE_WINBASEAPI BOOL WINAPI TerminateProcess(HANDLE hProcess, DWORD uExitCode);
  /system/core/libutils/
FileMap.cpp 108 mFileHandle = (HANDLE) _get_osfhandle(fd);
  /development/host/windows/usb/api/
adb_api.cpp 56 // After successful initialization we can create handle.
77 // Lookup AdbInterfaceEnumObject object for the handle
92 // Lookup AdbInterfaceEnumObject object for the handle
130 // Create handle for it
203 // Lookup interface object for the handle
222 // Lookup interface object for the handle
239 // Lookup interface object for the handle
256 // Lookup interface object for the handle
273 // Lookup interface object for the handle
291 // Lookup interface object for the handle
    [all...]
  /external/chromium/base/
message_pump_win.cc 152 if (state_->should_quit) // Handle WM_QUIT.
433 void MessagePumpForIO::RegisterIOHandler(HANDLE file_handle,
436 HANDLE port = CreateIoCompletionPort(file_handle, port_, key, 1);
file_util_win.cc 99 HANDLE find_handle = FindFirstFile(filename_spec.c_str(), &find_file_data);
216 HANDLE target_file = ::CreateFile(
327 HANDLE dir =
346 bool GetFileCreationLocalTimeFromHandle(HANDLE file_handle,
924 // when the handle is empty.
    [all...]
  /external/chromium/net/udp/
udp_socket_win.cc 24 void UDPSocketWin::ReadDelegate::OnObjectSignaled(HANDLE object) {
29 void UDPSocketWin::WriteDelegate::OnObjectSignaled(HANDLE object) {
  /external/chromium_org/base/message_loop/
message_loop.h 673 void RegisterIOHandler(HANDLE file, IOHandler* handler);
674 bool RegisterJobObject(HANDLE job, IOHandler* handler);
  /external/chromium_org/courgette/
memory_allocator.h 61 // is deleted when the file handle is closed.
76 // Returns the handle of the temporary file or INVALID_HANDLE_VALUE if
78 base::PlatformFile handle() const;
91 bool Create(HANDLE file, size_t size);
104 HANDLE mapping_;
320 // must be prepared to handle memory allocation failures.
  /external/chromium_org/ppapi/tests/
test_broker.cc 36 // |kBrokerUnsandboxed|. If it's shorter and the broker doesn't close its handle
42 typedef HANDLE PlatformFile;
52 PlatformFile IntToPlatformFile(int32_t handle) {
54 return reinterpret_cast<HANDLE>(static_cast<intptr_t>(handle));
56 return handle;
160 int32_t OnInstanceConnected(PP_Instance instance, int32_t handle) {
161 PlatformFile file = IntToPlatformFile(handle);
254 int32_t handle = kInvalidHandle; local
256 // Test getting the handle for an invalid resource
279 int32_t handle = kInvalidHandle; local
    [all...]
  /external/chromium_org/remoting/host/setup/
daemon_installer_win.cc 101 virtual void OnObjectSignaled(HANDLE object) OVERRIDE;
104 // Handle of the launched process.
316 void DaemonCommandLineInstallerWin::OnObjectSignaled(HANDLE object) {
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
SwapChain9.cpp 17 SwapChain9::SwapChain9(Renderer9 *renderer, HWND window, HANDLE shareHandle,
134 HANDLE *pShareHandle = NULL;
  /external/lzma/CPP/Windows/
FileFind.cpp 361 HANDLE CFindChangeNotification::FindFirst(LPCTSTR pathName, bool watchSubtree, DWORD notifyFilter)
376 HANDLE CFindChangeNotification::FindFirst(LPCWSTR pathName, bool watchSubtree, DWORD notifyFilter)
  /ndk/sources/host-tools/make-3.81/
job.c 39 HANDLE main_thread;
242 return ((process_kill((HANDLE)pid, sig) == TRUE) ? 0 : -1);
274 HANDLE h = CreateFile (temp_path, /* file name */
408 /* Handle a dead child. This handler may or may not ever be installed.
623 HANDLE hPID;
625 HANDLE hcTID, hcPID;
645 DB (DB_VERBOSE, ("Main thread handle = %p\n",
    [all...]
  /external/chromium_org/chrome/app/
breakpad_win.cc 81 MiniDumpWithHandleData | // Get all handle information.
99 typedef NTSTATUS (WINAPI* NtTerminateProcessPtr)(HANDLE ProcessHandle,
161 extern "C" HANDLE __declspec(dllexport) __cdecl
162 InjectDumpProcessWithoutCrash(HANDLE process) {
167 extern "C" HANDLE __declspec(dllexport) __cdecl
168 InjectDumpForHangDebugging(HANDLE process) {
211 // We handle the plugin path separately since it is usually too big
849 NTSTATUS WINAPI HookNtTerminateProcess(HANDLE ProcessHandle,
    [all...]
  /external/chromium_org/chrome/service/cloud_print/
print_system_win.cc 40 typedef HANDLE Handle;
42 static bool CloseHandle(HANDLE handle) {
43 ::FindClosePrinterChangeNotification(handle);
47 static bool IsHandleValid(HANDLE handle) {
48 return handle != NULL;
51 static HANDLE NullHandle() {
112 // TODO(sanjeevr): Handle legacy proxy case (with no prntvpt.dll
    [all...]
  /external/chromium_org/third_party/lcov/bin/
genhtml 441 # print_usage(handle)
448 local *HANDLE = $_[0];
450 print(HANDLE <<END_OF_USAGE);
709 # html_create(handle, filename)
714 my $handle = $_[0];
719 open($handle, "|gzip -c >$filename")
725 open($handle, ">$filename")
1082 my $data; # Data handle for current entry
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3dapi/
dxgi.idl 50 typedef HANDLE HMONITOR;
127 HANDLE Handle;
410 [out] HANDLE *a
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
dxgi.idl 50 typedef HANDLE HMONITOR;
127 HANDLE Handle;
410 [out] HANDLE *a

Completed in 1606 milliseconds

<<21222324252627282930>>