Home
last modified time | relevance | path

Searched refs:s_forw (Results 1 – 3 of 3) sorted by relevance

/dragonfly/usr.bin/window/
H A Dstring.c122 if (str_head.s_forw == 0) in str_alloc()
123 str_head.s_forw = str_head.s_back = &str_head; in str_alloc()
124 s->s_forw = str_head.s_forw; in str_alloc()
126 str_head.s_forw = s; in str_alloc()
127 s->s_forw->s_back = s; in str_alloc()
136 for (s = str_head.s_forw; s != &str_head && s->s_data != str; in str_free()
137 s = s->s_forw) in str_free()
141 s->s_back->s_forw = s->s_forw; in str_free()
142 s->s_forw->s_back = s->s_back; in str_free()
H A Dcmd6.c96 for (s = str_head.s_forw; s != &str_head; s = s->s_forw) { in debug_str()
H A Dwindow_string.h58 struct string *s_forw; member