summaryrefslogtreecommitdiffstats
path: root/lldb/source/Utility/UriParser.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Simplify find_first_of & find_last_of on single char.Bruce Mitchener2015-09-011-1/+1
| | | | | | | | | | | | | | | Summary: When calling find_first_of and find_last_of on a single character, we can instead just call find / rfind and make our intent more clear. Reviewers: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D12518 llvm-svn: 246609
* Make UriParser to support [$HOSTNAME] notation.Oleksiy Vyalov2015-08-201-30/+58
| | | | | | http://reviews.llvm.org/D12025 llvm-svn: 245639
* Fix Mingw build.Hafiz Abid Qadeer2015-02-111-0/+1
| | | | | | | | | | | | | Following changes are done. Add missing headers. Replace _snprintf with snprintf. It is already changed to _snprintf for MSVC. Add a file in the build for autoconf. Call DynamicLoaderWindows::Terminate and DynamicLoaderWindows::Initialize only for MSVC build. Reviewed in http://reviews.llvm.org/D7536. llvm-svn: 228822
* UriParser - fixed potential buffer overrunVince Harron2015-01-151-7/+14
| | | | | | | Switched from ::strtoul to StringConvert::ToUInt32 Changed port output parameter to be -1 if port is unspecified llvm-svn: 226204
* Adds UriParser::Parse and unit testsVince Harron2015-01-061-0/+58
This can be used to parse URIs passed to 'platform connect' Differential Revision: http://reviews.llvm.org/D6858 llvm-svn: 225317
OpenPOWER on IntegriCloud