Home
last modified time | relevance | path

Searched refs:client_features (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.h146 HandleFeatures(llvm::ArrayRef<llvm::StringRef> client_features);
H A DGDBRemoteCommunicationServerCommon.cpp892 llvm::SmallVector<llvm::StringRef, 4> client_features; in Handle_qSupported() local
893 packet.GetStringRef().split(client_features, ';'); in Handle_qSupported()
894 return SendPacketNoLock(llvm::join(HandleFeatures(client_features), ";")); in Handle_qSupported()
1344 const llvm::ArrayRef<llvm::StringRef> client_features) { in HandleFeatures() argument
H A DGDBRemoteCommunicationServerLLGS.h287 const llvm::ArrayRef<llvm::StringRef> client_features) override;
H A DGDBRemoteCommunicationServerLLGS.cpp4186 const llvm::ArrayRef<llvm::StringRef> client_features) { in HandleFeatures() argument
4188 GDBRemoteCommunicationServerCommon::HandleFeatures(client_features); in HandleFeatures()
4214 for (llvm::StringRef x : client_features) in HandleFeatures()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
H A Dgdbremote_testcase.py828 def add_qSupported_packets(self, client_features=[]): argument
829 features = ''.join(';' + x for x in client_features)