Home
last modified time | relevance | path

Searched refs:ConnectNamedPipe (Results 1 – 25 of 929) sorted by relevance

12345678910>>...38

/dports/devel/py-trollius/trollius-2.2/trollius/
H A Dpy33_winapi.py17 CloseHandle, CreateNamedPipe, CreateFile, ConnectNamedPipe,
59 def ConnectNamedPipe(handle, overlapped): function
61 ov.ConnectNamedPipe(handle)
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/test/API/tools/lldb-server/commandline/
H A DTestGdbRemoteConnection.py43 ConnectNamedPipe = kernel32.ConnectNamedPipe variable
44 ConnectNamedPipe.restype = BOOL
45 ConnectNamedPipe.argtypes = (HANDLE, LPOVERLAPPED)
80 result = ConnectNamedPipe(self._handle, self._overlapped)
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/lldb/test/API/tools/lldb-server/commandline/
H A DTestGdbRemoteConnection.py43 ConnectNamedPipe = kernel32.ConnectNamedPipe variable
44 ConnectNamedPipe.restype = BOOL
45 ConnectNamedPipe.argtypes = (HANDLE, LPOVERLAPPED)
80 result = ConnectNamedPipe(self._handle, self._overlapped)
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/lldb/test/API/tools/lldb-server/commandline/
H A DTestGdbRemoteConnection.py43 ConnectNamedPipe = kernel32.ConnectNamedPipe variable
44 ConnectNamedPipe.restype = BOOL
45 ConnectNamedPipe.argtypes = (HANDLE, LPOVERLAPPED)
80 result = ConnectNamedPipe(self._handle, self._overlapped)
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/lldb/test/API/tools/lldb-server/commandline/
H A DTestGdbRemoteConnection.py43 ConnectNamedPipe = kernel32.ConnectNamedPipe variable
44 ConnectNamedPipe.restype = BOOL
45 ConnectNamedPipe.argtypes = (HANDLE, LPOVERLAPPED)
80 result = ConnectNamedPipe(self._handle, self._overlapped)
/dports/devel/llvm13/llvm-project-13.0.1.src/lldb/test/API/tools/lldb-server/commandline/
H A DTestGdbRemoteConnection.py43 ConnectNamedPipe = kernel32.ConnectNamedPipe variable
44 ConnectNamedPipe.restype = BOOL
45 ConnectNamedPipe.argtypes = (HANDLE, LPOVERLAPPED)
80 result = ConnectNamedPipe(self._handle, self._overlapped)
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/Interop/Windows/kernel32/
H A DInterop.ConnectNamedPipe.cs16 …internal static extern unsafe bool ConnectNamedPipe(SafePipeHandle handle, NativeOverlapped* overl… in ConnectNamedPipe() method in Interop.Kernel32
20 internal static extern bool ConnectNamedPipe(SafePipeHandle handle, IntPtr overlapped); in ConnectNamedPipe() method in Interop.Kernel32
/dports/audio/mpg123/mpg123-1.29.3/src/
H A Dwin32_support.c138 ConnectNamedPipe(fifohandle,&ov1); in win32_fifo_read_peek()
145 ConnectNamedPipe(fifohandle,&ov1); in win32_fifo_read_peek()
189 ConnectNamedPipe(fifohandle,&ov1); in win32_fifo_mkfifo()
/dports/audio/sdl2_mixer/SDL2_mixer-2.0.4/external/mpg123-1.25.6/src/
H A Dwin32_support.c138 ConnectNamedPipe(fifohandle,&ov1);
145 ConnectNamedPipe(fifohandle,&ov1);
189 ConnectNamedPipe(fifohandle,&ov1);
/dports/x11/xpra/xpra-4.3/xpra/platform/win32/namedpipes/
H A Dcommon.py81 ConnectNamedPipe = kernel32.ConnectNamedPipe variable
82 ConnectNamedPipe.argtypes = [HANDLE, LPOVERLAPPED]
83 ConnectNamedPipe.restype = BOOL
/dports/net/megacmd/MEGAcmd-1.4.1_Win/src/
H A Dcomunicationsmanagernamedpipes.cpp177 if (!ConnectNamedPipe(pipeGeneral, NULL)) in waitForPetition()
238 if (!ConnectNamedPipe(outNamedPipe, NULL)) in returnAndClosePetition()
298 if (!ConnectNamedPipe(outNamedPipe, NULL)) in sendPartialOutput()
366 if (!ConnectNamedPipe(outNamedPipe, NULL)) in sendPartialOutput()
429 if (!ConnectNamedPipe(outNamedPipe, NULL)) in informStateListener()
/dports/audio/jack/jack2-eaedec353489f26617221d66f80fd2503953c663/windows/
H A DJackWinNamedPipe.cpp312 if (ConnectNamedPipe(fNamedPipe, NULL)) { in Accept()
327 if (ConnectNamedPipe(fNamedPipe, NULL)) { in AcceptClient()
401 if (ConnectNamedPipe(fNamedPipe, NULL)) { in AcceptClient()
/dports/devel/py-jedi/jedi-0.18.0/jedi/third_party/typeshed/stdlib/3/
H A D_winapi.pyi56 def ConnectNamedPipe(handle: int, overlapped: Literal[True]) -> Overlapped: ...
58 def ConnectNamedPipe(handle: int, overlapped: Literal[False] = ...) -> None: ...
60 def ConnectNamedPipe(handle: int, overlapped: bool) -> Any: ...
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/typeshed/stdlib/3/
H A D_winapi.pyi52 def ConnectNamedPipe(handle: int, overlapped: Literal[True]) -> Overlapped: ...
54 def ConnectNamedPipe(handle: int, overlapped: Literal[False] = ...) -> None: ...
56 def ConnectNamedPipe(handle: int, overlapped: bool) -> Optional[Overlapped]: ...
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stdlib/
H A D_winapi.pyi51 def ConnectNamedPipe(handle: int, overlapped: Literal[True]) -> Overlapped: ...
53 def ConnectNamedPipe(handle: int, overlapped: Literal[False] = ...) -> None: ...
55 def ConnectNamedPipe(handle: int, overlapped: bool) -> Optional[Overlapped]: ...
/dports/devel/py-mypy/mypy-0.910/mypy/typeshed/stdlib/
H A D_winapi.pyi51 def ConnectNamedPipe(handle: int, overlapped: Literal[True]) -> Overlapped: ...
53 def ConnectNamedPipe(handle: int, overlapped: Literal[False] = ...) -> None: ...
55 def ConnectNamedPipe(handle: int, overlapped: bool) -> Optional[Overlapped]: ...
/dports/audio/audacity/audacity-Audacity-3.1.3/modules/mod-script-pipe/
H A DPipeServer.cpp59 bConnected = ConnectNamedPipe(hPipeToSrv, NULL) ? in PipeServer()
64 bConnected = ConnectNamedPipe(hPipeFromSrv, NULL) ? in PipeServer()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/chrome/browser/extensions/api/messaging/
H A Dnative_process_launcher_win.cc162 bool stdout_connected = ConnectNamedPipe(stdout_pipe.Get(), NULL) ? in LaunchNativeProcess()
164 bool stdin_connected = ConnectNamedPipe(stdin_pipe.Get(), NULL) ? in LaunchNativeProcess()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/extensions/api/messaging/
H A Dnative_process_launcher_win.cc163 bool stdout_connected = ConnectNamedPipe(stdout_pipe.Get(), NULL) ? in LaunchNativeProcess()
165 bool stdin_connected = ConnectNamedPipe(stdin_pipe.Get(), NULL) ? in LaunchNativeProcess()
/dports/www/chromium-legacy/chromium-88.0.4324.182/remoting/host/win/
H A Dlaunch_native_messaging_host_process.cc163 if (!ConnectNamedPipe(temp_write_handle.Get(), nullptr)) { in LaunchNativeMessagingHostProcess()
171 if (!ConnectNamedPipe(temp_read_handle.Get(), nullptr)) { in LaunchNativeMessagingHostProcess()
/dports/devel/R-cran-BH/BH/inst/include/boost/winapi/
H A Dpipes.hpp50 BOOST_WINAPI_IMPORT boost::winapi::BOOL_ BOOST_WINAPI_WINAPI_CC ConnectNamedPipe(
190 BOOST_FORCEINLINE BOOL_ ConnectNamedPipe(HANDLE_ hNamedPipe, LPOVERLAPPED_ lpOverlapped) in ConnectNamedPipe() function
192 return ::ConnectNamedPipe(hNamedPipe, reinterpret_cast< ::_OVERLAPPED* >(lpOverlapped)); in ConnectNamedPipe()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/winapi/
H A Dpipes.hpp50 BOOST_WINAPI_IMPORT boost::winapi::BOOL_ BOOST_WINAPI_WINAPI_CC ConnectNamedPipe(
190 BOOST_FORCEINLINE BOOL_ ConnectNamedPipe(HANDLE_ hNamedPipe, LPOVERLAPPED_ lpOverlapped) in ConnectNamedPipe() function
192 return ::ConnectNamedPipe(hNamedPipe, reinterpret_cast< ::_OVERLAPPED* >(lpOverlapped)); in ConnectNamedPipe()
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/winapi/
H A Dpipes.hpp50 BOOST_WINAPI_IMPORT boost::winapi::BOOL_ BOOST_WINAPI_WINAPI_CC ConnectNamedPipe(
190 BOOST_FORCEINLINE BOOL_ ConnectNamedPipe(HANDLE_ hNamedPipe, LPOVERLAPPED_ lpOverlapped) in ConnectNamedPipe() function
192 return ::ConnectNamedPipe(hNamedPipe, reinterpret_cast< ::_OVERLAPPED* >(lpOverlapped)); in ConnectNamedPipe()
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/boost-for-react-native/boost/detail/winapi/
H A Dpipes.hpp35 BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI ConnectNamedPipe(
186 BOOST_FORCEINLINE BOOL_ ConnectNamedPipe(HANDLE_ hNamedPipe, LPOVERLAPPED_ lpOverlapped) in ConnectNamedPipe() function
188 return ::ConnectNamedPipe(hNamedPipe, reinterpret_cast< ::_OVERLAPPED* >(lpOverlapped)); in ConnectNamedPipe()
/dports/devel/boost-libs/boost_1_72_0/boost/winapi/
H A Dpipes.hpp48 BOOST_SYMBOL_IMPORT boost::winapi::BOOL_ BOOST_WINAPI_WINAPI_CC ConnectNamedPipe(
188 BOOST_FORCEINLINE BOOL_ ConnectNamedPipe(HANDLE_ hNamedPipe, LPOVERLAPPED_ lpOverlapped) in ConnectNamedPipe() function
190 return ::ConnectNamedPipe(hNamedPipe, reinterpret_cast< ::_OVERLAPPED* >(lpOverlapped)); in ConnectNamedPipe()

12345678910>>...38