Lines Matching defs:write
156 int SVCHlpClient::write (const void *aVal, size_t aLen)
170 int SVCHlpClient::write (const Utf8Str &aVal)
175 /* write -1 for NULL strings */
177 return write ((size_t) ~0);
181 /* write string length */
182 int vrc = write (len);
185 /* write string data */
186 vrc = write (aVal.c_str(), len);
192 int SVCHlpClient::write (const Guid &aGuid)
195 return write (guidStr);