sbin/jscan/jfile.c
141
if ((jd = jread(jf, NULL, JD_BACKWARDS)) != NULL) {
sbin/jscan/jfile.c
647
return (jread(jf, NULL, direction));
sbin/jscan/jfile.c
664
if ((jd = jread(jf, NULL, JD_SEQFIRST)) != NULL) {
sbin/jscan/jfile.c
685
return(jread(jf, NULL, JD_FORWARDS));
sbin/jscan/jfile.c
695
jd = jread(jf, NULL, JD_SEQLAST);
sbin/jscan/jfile.c
700
jd =jread(jf, jd, JD_FORWARDS);
sbin/jscan/jfile.c
708
jd = jread(jf, jd, JD_BACKWARDS);
sbin/jscan/jfile.c
720
return(jread(jf, NULL, JD_FORWARDS));
sbin/jscan/jscan.c
362
jd = jread(jf, NULL, jdirection);
sbin/jscan/jscan.c
384
jd = jread(jf, jd, jdirection);
sbin/jscan/jscan.c
453
jd = jread(jf, NULL, jdirection);
sbin/jscan/jscan.c
463
jd = jread(jf, jd, jdirection);
sbin/jscan/jscan.c
485
jd = jread(jf, NULL, jdirection);
sbin/jscan/jscan.c
495
jd = jread(jf, jd, jdirection);
sbin/jscan/jscan.c
522
jd = jread(jfin, NULL, jdirection);
sbin/jscan/jscan.c
532
jd = jread(jfin, jd, jdirection);
sbin/jscan/jscan.c
550
while ((jd = jread(jf, jd, jdirection)) != NULL) {
sbin/jscan/jscan.h
177
struct jdata *jread(struct jfile *jf, struct jdata *jd,
sbin/jscan/jstream.c
280
while ((scan = jread(jf, scan, JD_BACKWARDS)) != NULL) {
sbin/jscan/jstream.c
301
scan = jread(jf, scan, JD_FORWARDS);
sbin/jscan/jstream.c
314
while ((scan = jread(jf, scan, JD_FORWARDS)) != NULL) {
sbin/jscan/jstream.c
335
scan = jread(jf, scan, JD_BACKWARDS);