Lines Matching refs:len_str
165 size_t done, len, offset, len_str; in strnlen_user_mvcos() local
175 len_str = strnlen(buf, len); in strnlen_user_mvcos()
176 done += len_str; in strnlen_user_mvcos()
177 src += len_str; in strnlen_user_mvcos()
178 } while ((len_str == len) && (done < count)); in strnlen_user_mvcos()
185 size_t done, len, offset, len_str; in strncpy_from_user_mvcos() local
195 len_str = strnlen(dst, len); in strncpy_from_user_mvcos()
196 done += len_str; in strncpy_from_user_mvcos()
197 src += len_str; in strncpy_from_user_mvcos()
198 dst += len_str; in strncpy_from_user_mvcos()
199 } while ((len_str == len) && (done < count)); in strncpy_from_user_mvcos()