Home
last modified time | relevance | path

Searched refs:connection (Results 1 – 25 of 45) sorted by relevance

12

/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dincomplete-member-function-pointer.cpp4 struct connection { struct
7 void (connection::*a)(fake_tuple) = &connection::bar;
9 void (connection::*b)(fake_tuple) = &connection::bar; in f()
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_interceptors_mac.cpp296 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
300 Acquire(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
310 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
314 Acquire(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
318 REAL(xpc_connection_send_barrier)(connection, new_barrier); in TSAN_INTERCEPTOR()
326 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
330 Acquire(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
335 (connection, message, replyq, new_handler); in TSAN_INTERCEPTOR()
339 SCOPED_TSAN_INTERCEPTOR(xpc_connection_cancel, connection); in TSAN_INTERCEPTOR()
340 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_mac.cpp296 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
300 Acquire(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
310 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
314 Acquire(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
318 REAL(xpc_connection_send_barrier)(connection, new_barrier); in TSAN_INTERCEPTOR()
326 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
330 Acquire(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
335 (connection, message, replyq, new_handler); in TSAN_INTERCEPTOR()
339 SCOPED_TSAN_INTERCEPTOR(xpc_connection_cancel, connection); in TSAN_INTERCEPTOR()
340 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
[all …]
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Ddebug-info-block-line.m59 - (void)serverConnection:(TConnection *)connection getCommand:(NSString *)str
80 [connection sendResponseCode:TOK dataFollows:YES
83 [connection sendFormat:@"%@\r\n", line];
85 [connection sendString:@".\r\n"];
87 [connection sendResponseCode:TError dataFollows:NO
/llvm-project-15.0.7/llvm/utils/bugpoint/
H A DRemoteRunSafely.sh92 connection=$RUSER'@'$RHOST
96 $RCLIENT $connection $RPORT \
/llvm-project-15.0.7/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator.h93 void xpc_connection_set_context(xpc_connection_t connection, void *context);
94 void xpc_connection_set_finalizer_f(xpc_connection_t connection, xpc_finalizer_t finalizer);
95 void xpc_connection_resume(xpc_connection_t connection);
/llvm-project-15.0.7/clang/test/Analysis/
H A Dblocks.m179 static const char str[] = "Lost connection to sharingd";
187 static const char str[] = "Lost connection to sharingd";
195 static const char str[] = "Lost connection to sharingd";
203 static const char str[] = "Lost connection to sharingd";
211 static const char str[] = "Lost connection to sharingd";
/llvm-project-15.0.7/flang/runtime/
H A Dio-stmt.cpp678 const ConnectionState &connection{GetConnectionState()}; in CheckForEndOfRecord() local
679 if (!connection.IsAtEOF()) { in CheckForEndOfRecord()
680 if (auto length{connection.EffectiveRecordLength()}) { in CheckForEndOfRecord()
681 if (connection.positionInRecord >= *length) { in CheckForEndOfRecord()
685 if (connection.access == Access::Stream && in CheckForEndOfRecord()
686 connection.unterminatedRecord) { in CheckForEndOfRecord()
751 int space{connection.positionInRecord == 0 || in EmitLeadingSpaceOrAdvance()
754 if (connection.NeedAdvance(space + length)) { in EmitLeadingSpaceOrAdvance()
777 ConnectionState &connection{io.GetConnectionState()}; in GetNextDataEdit() local
844 auto start{connection.positionInRecord}; in GetNextDataEdit()
[all …]
H A Dedit-output.cpp219 ConnectionState &connection{io_.GetConnectionState()}; in EmitPrefix() local
220 return (!connection.NeedAdvance(length) || io_.AdvanceRecord()) && in EmitPrefix()
629 ConnectionState &connection{io.GetConnectionState()}; in ListDirectedCharacterOutput() local
635 if (connection.NeedAdvance(1)) { in ListDirectedCharacterOutput()
661 std::size_t oneIfUTF8{connection.useUTF8<CHAR>() ? 1 : length}; in ListDirectedCharacterOutput()
665 connection.RemainingSpaceInRecord())}) { in ListDirectedCharacterOutput()
H A Dnamelist.cpp33 ConnectionState &connection{io.GetConnectionState()}; in IONAME() local
36 return (!connection.NeedAdvance(1) || io.AdvanceRecord()) && in IONAME()
40 if (connection.NeedAdvance(std::strlen(str)) && in IONAME()
H A DCMakeLists.txt44 connection.cpp
H A Dedit-input.cpp705 const ConnectionState &connection{io.GetConnectionState()}; in EditCharacterInput() local
731 if (connection.isUTF8) { in EditCharacterInput()
/llvm-project-15.0.7/lldb/tools/lldb-server/
H A DLLGSOptions.td14 def grp_connect : OptionGroup<"connection">, HelpText<"CONNECTION">;
29 …HelpText<"Connect to the client instead of passively waiting for a connection. In this case [host]…
/llvm-project-15.0.7/lldb/test/Shell/lldb-server/
H A DTestErrorMessages.test11 CONN: error: no connection arguments
/llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/ELF/
H A Ddynrelocsec-remove-shinfo-reference.test4 ## .rela.plt is a dynamic relocation section that has a connection
/llvm-project-15.0.7/lldb/source/Core/
H A DCommunication.cpp417 void Communication::SetConnection(std::unique_ptr<Connection> connection) { in SetConnection() argument
420 m_connection_sp = std::move(connection); in SetConnection()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DCommunication.h240 void SetConnection(std::unique_ptr<Connection> connection);
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/concurrency/
H A Dmt-unsafe.rst20 // getnetent(3) maintains global state with DB connection, etc.
/llvm-project-15.0.7/lldb/docs/man/
H A Dlldb-server.rst73 Connect to the client instead of passively waiting for a connection. In this
122 lldb-server will accept only one connection and exit when it is finished.
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp885 ConnectionFileDescriptor *connection = in ListenThread() local
888 if (connection) { in ListenThread()
890 if (connection->Connect( in ListenThread()
H A DGDBRemoteCommunicationServerLLGS.h86 Status InitializeConnection(std::unique_ptr<Connection> connection);
H A DGDBRemoteCommunicationServerLLGS.cpp1179 std::unique_ptr<Connection> connection) { in InitializeConnection() argument
1180 IOObjectSP read_object_sp = connection->GetReadObject(); in InitializeConnection()
1181 GDBRemoteCommunicationServer::SetConnection(std::move(connection)); in InitializeConnection()
4047 auto connection = m_stdio_communication.GetConnection(); in MaybeCloseInferiorTerminalConnection() local
4048 if (connection) { in MaybeCloseInferiorTerminalConnection()
4050 connection->Disconnect(&error); in MaybeCloseInferiorTerminalConnection()
/llvm-project-15.0.7/lldb/docs/use/
H A Dremote.rst68 will fork off a new process for every incoming connection, allowing multiple
155 connection allows us to transfer files, but also allows us to get the MD5
/llvm-project-15.0.7/lldb/docs/
H A Dpython_api_enums.rst229 if it loses connection with lldb.
453 No connection.
457 Lost connection while connected to a valid connection.
/llvm-project-15.0.7/lldb/source/Target/
H A DTargetProperties.td117 … Desc<"debugserver will detach (rather than killing) a process if it loses connection with lldb.">;
159 …he symbol tables and other data can take a long time depending on your connection to the debug tar…

12