Lines Matching refs:str
1904 * @str: location to store string
1905 * @size: size of storage buffer @str
1908 * On success, returns length of NUL-terminated string stored in *@str
1910 * %-EMSGSIZE on overflow of storage buffer @str
1912 ssize_t xdr_stream_decode_string(struct xdr_stream *xdr, char *str, size_t size)
1919 memcpy(str, p, ret);
1920 str[ret] = '\0';
1921 return strlen(str);
1923 *str = '\0';
1931 * @str: location to store pointer to string
1941 ssize_t xdr_stream_decode_string_dup(struct xdr_stream *xdr, char **str,
1953 *str = s;
1958 *str = NULL;