Lines Matching refs:str
57 void __drm_puts_coredump(struct drm_printer *p, const char *str)
68 len = strlen(str);
82 str + (iterator->start - iterator->offset), copy);
89 len = min_t(ssize_t, strlen(str), iterator->remain);
91 memcpy(iterator->data + pos, str, len);
145 void __drm_puts_seq_file(struct drm_printer *p, const char *str)
147 seq_puts(p->arg, str);
178 * @str: const string
183 void drm_puts(struct drm_printer *p, const char *str)
186 p->puts(p, str);
188 drm_printf(p, "%s", str);