Lines Matching refs:buflen
94 const int buflen) in tomoyo_get_absolute_path() argument
98 if (buflen >= 256) { in tomoyo_get_absolute_path()
100 pos = d_absolute_path(path, buffer, buflen - 1); in tomoyo_get_absolute_path()
105 buffer[buflen - 2] = '/'; in tomoyo_get_absolute_path()
106 buffer[buflen - 1] = '\0'; in tomoyo_get_absolute_path()
125 const int buflen) in tomoyo_get_dentry_path() argument
129 if (buflen >= 256) { in tomoyo_get_dentry_path()
130 pos = dentry_path_raw(dentry, buffer, buflen - 1); in tomoyo_get_dentry_path()
135 buffer[buflen - 2] = '/'; in tomoyo_get_dentry_path()
136 buffer[buflen - 1] = '\0'; in tomoyo_get_dentry_path()
153 const int buflen) in tomoyo_get_local_path() argument
156 char *pos = tomoyo_get_dentry_path(dentry, buffer, buflen); in tomoyo_get_local_path()