當前位置: 首頁>>代碼示例>>Python>>正文


Python _winapi.OpenProcess方法代碼示例

本文整理匯總了Python中_winapi.OpenProcess方法的典型用法代碼示例。如果您正苦於以下問題:Python _winapi.OpenProcess方法的具體用法?Python _winapi.OpenProcess怎麽用?Python _winapi.OpenProcess使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在_winapi的用法示例。


在下文中一共展示了_winapi.OpenProcess方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: steal_handle

# 需要導入模塊: import _winapi [as 別名]
# 或者: from _winapi import OpenProcess [as 別名]
def steal_handle(source_pid, handle):
        '''Steal a handle from process identified by source_pid.'''
        source_process_handle = _winapi.OpenProcess(
            _winapi.PROCESS_DUP_HANDLE, False, source_pid)
        try:
            return _winapi.DuplicateHandle(
                source_process_handle, handle,
                _winapi.GetCurrentProcess(), 0, False,
                _winapi.DUPLICATE_SAME_ACCESS | _winapi.DUPLICATE_CLOSE_SOURCE)
        finally:
            _winapi.CloseHandle(source_process_handle) 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:13,代碼來源:reduction.py

示例2: __init__

# 需要導入模塊: import _winapi [as 別名]
# 或者: from _winapi import OpenProcess [as 別名]
def __init__(self, handle, access, pid=None):
            if pid is None:
                # We just duplicate the handle in the current process and
                # let the receiving process steal the handle.
                pid = os.getpid()
            proc = _winapi.OpenProcess(_winapi.PROCESS_DUP_HANDLE, False, pid)
            try:
                self._handle = _winapi.DuplicateHandle(
                    _winapi.GetCurrentProcess(),
                    handle, proc, access, False, 0)
            finally:
                _winapi.CloseHandle(proc)
            self._access = access
            self._pid = pid 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:16,代碼來源:reduction.py

示例3: detach

# 需要導入模塊: import _winapi [as 別名]
# 或者: from _winapi import OpenProcess [as 別名]
def detach(self):
            '''Get the handle.  This should only be called once.'''
            # retrieve handle from process which currently owns it
            if self._pid == os.getpid():
                # The handle has already been duplicated for this process.
                return self._handle
            # We must steal the handle from the process whose pid is self._pid.
            proc = _winapi.OpenProcess(_winapi.PROCESS_DUP_HANDLE, False,
                                       self._pid)
            try:
                return _winapi.DuplicateHandle(
                    proc, self._handle, _winapi.GetCurrentProcess(),
                    self._access, False, _winapi.DUPLICATE_CLOSE_SOURCE)
            finally:
                _winapi.CloseHandle(proc) 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:17,代碼來源:reduction.py

示例4: _create_handle_for_pid

# 需要導入模塊: import _winapi [as 別名]
# 或者: from _winapi import OpenProcess [as 別名]
def _create_handle_for_pid(self, pid):
            import _winapi
            return _winapi.OpenProcess(0x00100400, 0, pid) 
開發者ID:pychess,項目名稱:pychess,代碼行數:5,代碼來源:glib_events.py

示例5: _pid_alive

# 需要導入模塊: import _winapi [as 別名]
# 或者: from _winapi import OpenProcess [as 別名]
def _pid_alive(pid):
    """Check if the process with this PID is alive or not.

    Args:
        pid: The pid to check.

    Returns:
        This returns false if the process is dead. Otherwise, it returns true.
    """
    no_such_process = errno.EINVAL if sys.platform == "win32" else errno.ESRCH
    alive = True
    try:
        if sys.platform == "win32":
            SYNCHRONIZE = 0x00100000  # access mask defined in <winnt.h>
            handle = _winapi.OpenProcess(SYNCHRONIZE, False, pid)
            try:
                alive = (_winapi.WaitForSingleObject(handle, 0) !=
                         _winapi.WAIT_OBJECT_0)
            finally:
                _winapi.CloseHandle(handle)
        else:
            os.kill(pid, 0)
    except OSError as ex:
        if ex.errno != no_such_process:
            raise
        alive = False
    return alive 
開發者ID:ray-project,項目名稱:ray,代碼行數:29,代碼來源:test_utils.py

示例6: __init__

# 需要導入模塊: import _winapi [as 別名]
# 或者: from _winapi import OpenProcess [as 別名]
def __init__(self, handle, access, pid=None):
            # duplicate handle for process with given pid
            if pid is None:
                pid = os.getpid()
            proc = _winapi.OpenProcess(_winapi.PROCESS_DUP_HANDLE, False, pid)
            try:
                self._handle = _winapi.DuplicateHandle(
                    _winapi.GetCurrentProcess(),
                    handle, proc, access, False, 0)
            finally:
                _winapi.CloseHandle(proc)
            self._access = access
            self._pid = pid 
開發者ID:joblib,項目名稱:loky,代碼行數:15,代碼來源:_win_reduction.py

示例7: detach

# 需要導入模塊: import _winapi [as 別名]
# 或者: from _winapi import OpenProcess [as 別名]
def detach(self):
            # retrieve handle from process which currently owns it
            if self._pid == os.getpid():
                return self._handle
            proc = _winapi.OpenProcess(_winapi.PROCESS_DUP_HANDLE, False,
                                       self._pid)
            try:
                return _winapi.DuplicateHandle(
                    proc, self._handle, _winapi.GetCurrentProcess(),
                    self._access, False, _winapi.DUPLICATE_CLOSE_SOURCE)
            finally:
                _winapi.CloseHandle(proc) 
開發者ID:joblib,項目名稱:loky,代碼行數:14,代碼來源:_win_reduction.py


注:本文中的_winapi.OpenProcess方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。