Lines Matching refs:str
15 * @str: String in binary format.
16 * @str_len: Size of @str in byte.
18 * Returns pointer to @str in ascii format on success, NULL otherwise.
23 char *tomoyo_encode2(const char *str, int str_len)
27 const char *p = str;
49 p = str;
71 * @str: String in binary format.
73 * Returns pointer to @str in ascii format on success, NULL otherwise.
78 char *tomoyo_encode(const char *str)
80 return str ? tomoyo_encode2(str, strlen(str)) : NULL;