Lines Matching defs:sid_str
261 * @sid_str: [OUT] string in which to return the SID (optional)
262 * @sid_str_size: [IN] size in bytes of @sid_str
265 * @sid_str (if not NULL) needs to be able to store at least
267 * @sid_str if @sid_str is not NULL.
281 * If @sid_str is not NULL it will contain the converted SUID on return. If it
288 char *ntfs_sid_to_mbs(const SID *sid, char *sid_str, size_t sid_str_size)
296 * No need to check @sid if !@sid_str since ntfs_sid_to_mbs_size() will
299 if (sid_str && (sid_str_size < 8 || !ntfs_valid_sid(sid))) {
304 if (!sid_str) {
311 sid_str = s;
315 s = sid_str;
345 return sid_str;
352 free(sid_str);