Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.h145 HandleFeatures(llvm::ArrayRef<llvm::StringRef> client_features);
H A DGDBRemoteCommunicationServerCommon.cpp891 llvm::SmallVector<llvm::StringRef, 4> client_features; in Handle_qSupported() local
892 packet.GetStringRef().split(client_features, ';'); in Handle_qSupported()
893 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.cpp4200 const llvm::ArrayRef<llvm::StringRef> client_features) { in HandleFeatures() argument
4202 GDBRemoteCommunicationServerCommon::HandleFeatures(client_features); in HandleFeatures()
4228 for (llvm::StringRef x : client_features) in HandleFeatures()
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
H A Dgdbremote_testcase.py827 def add_qSupported_packets(self, client_features=[]): argument
828 features = ''.join(';' + x for x in client_features)