Lines Matching full:full
88 struct Strbuf full = Strbuf_INIT; in do_help() local
99 cleanup_push(&full, Strbuf_cleanup); in do_help()
113 * now make the full path name - try first /bar/foo.help, then in do_help()
117 full.len = 0; in do_help()
118 Strbuf_append(&full, curdir); in do_help()
119 Strbuf_append(&full, STRslash); in do_help()
120 Strbuf_append(&full, name); in do_help()
121 ep = full.len; in do_help()
123 full.len = ep; in do_help()
124 Strbuf_append(&full, str2short(*sp)); in do_help()
125 Strbuf_terminate(&full); in do_help()
126 if ((f = xopen(short2str(full.s), O_RDONLY|O_LARGEFILE)) != -1) in do_help()