Home | History | Annotate | Download | only in libpdx_uds

Lines Matching defs:StringLength

161   PDX_REMOTE_METHOD(StringLength, kOpStringLength, int(const std::string&));
182 PDX_REMOTE_API(API, Add, Foo, Concatenate, SumVector, StringLength,
221 int StringLength(const char* string, std::size_t size) {
222 return ReturnStatusOrError(InvokeRemoteMethod<TestInterface::StringLength>(
226 int StringLength(const std::string& string) {
228 InvokeRemoteMethod<TestInterface::StringLength>(string));
367 case TestInterface::StringLength::Opcode:
368 DispatchRemoteMethod<TestInterface::StringLength>(
616 const auto string_length1 = client->StringLength("This is a string");
619 const auto string_length2 = client->StringLength("1234567890");
624 client->StringLength(string.c_str(), string.length());