HomeSort by: relevance | last modified time | path
    Searched refs:cfp (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/sys/arch/m68k/include/
frame.h 230 #define ATOMIC_CAS_CHECK(cfp) \
232 if (! CLKF_USERMODE(cfp) && \
233 (CLKF_PC(cfp) < (u_long)&_atomic_cas_ras_end && \
234 CLKF_PC(cfp) > (u_long)&_atomic_cas_ras_start)) { \
235 (cfp)->cf_pc = (u_long)&_atomic_cas_ras_start; \
239 #define ATOMIC_CAS_CHECK(cfp) /* nothing */
  /src/sys/arch/mips/mips/
mips3_clockintr.c 66 mips3_clockintr(struct clockframe *cfp)
95 hardclock(cfp);
  /src/usr.sbin/lpr/common_source/
rmjob.c 187 FILE *cfp; local in function:process
192 if ((cfp = fopen(file, "r")) == NULL)
195 while (get_line(cfp)) {
203 (void)fclose(cfp);
229 FILE *cfp; local in function:chk
244 if ((cfp = fopen(file, "r")) == NULL)
247 while (get_line(cfp)) {
251 (void)fclose(cfp);
displayq.c 302 FILE *cfp; local in function:inform
309 if ((cfp = fopen(cf, "r")) == NULL)
318 while (get_line(cfp)) {
322 fclose(cfp);
354 fclose(cfp);
  /src/distrib/utils/ssh/
ssh.c 101 FILE *cfp; /* command file ptr */ local in function:main
135 if ((cfp = fopen(cf_name, "r")) != NULL) {
136 error = runfile(cfp);
137 fclose(cfp);
152 cfp = fopen(cf_name, "r");
153 if (cfp == NULL) {
157 error = runfile(cfp);
158 fclose(cfp);
199 runfile(FILE *cfp)
214 if ((fgets(ibuf, sizeof(ibuf), cfp)) == NULL
    [all...]
  /src/sys/kern/
subr_userconf.c 201 const struct cfparent *cfp; local in function:userconf_pdev
217 cfp = cd->cf_pspec;
218 if (cfp == NULL)
220 else if (cfp->cfp_parent != NULL && cfp->cfp_unit != -1)
221 printf(" %s%d", cfp->cfp_parent, cfp->cfp_unit);
223 printf(" %s?", cfp->cfp_parent != NULL ? cfp->cfp_parent
224 : cfp->cfp_iattr)
    [all...]
  /src/usr.bin/man/
manconf.c 103 FILE *cfp; local in function:config
110 if ((cfp = fopen(fname, "r")) == NULL)
113 for (lcnt = 1; (p = fgetln(cfp, &len)) != NULL; ++lcnt) {
212 (void)fclose(cfp);
  /src/sys/arch/powerpc/powerpc/
clock.c 139 decr_intr(struct clockframe *cfp)
190 hardclock(cfp);
191 hardclock(cfp);
  /src/sys/arch/x68k/dev/
grf_machdep.c 120 grfmatch(device_t parent, cfdata_t cfp, void *aux)
124 addr = cfp->cf_loc[GRFBCF_ADDR];
  /src/games/dm/
dm.c 129 FILE *cfp; local in function:read_config
132 if (!(cfp = fopen(_PATH_CONFIG, "r")))
134 while (fgets(lbuf, sizeof(lbuf), cfp))
154 (void)fclose(cfp);
  /src/sys/arch/evbsh3/nextvod/
stasc.c 146 stasc_match(device_t parent, cfdata_t cfp, void *aux)
149 if (strcmp(cfp->cf_name, "stasc") != 0)
  /src/sys/arch/hpcsh/dev/
psh3pwr.c 111 psh3pwr_match(device_t parent, struct cfdata *cfp, void *aux)
117 if (strcmp(cfp->cf_name, "psh3pwr") != 0)
psh3lcd.c 225 psh3lcd_match(device_t parent __unused, struct cfdata *cfp, void *aux __unused)
232 if (strcmp(cfp->cf_name, "psh3lcd") != 0)
j6x0pwr.c 129 j6x0pwr_match(device_t parent, cfdata_t cfp, void *aux)
139 if (strcmp(cfp->cf_name, "j6x0pwr") != 0)
  /src/sys/arch/sh3/dev/
wdog.c 100 wdogmatch(device_t parent, cfdata_t cfp, void *aux)
103 if (strcmp(cfp->cf_name, "wdog"))
  /src/sys/arch/amigappc/amigappc/
mainbus.c 89 mbmatch(device_t parent, cfdata_t cfp, void *aux)
  /src/usr.sbin/lpr/lpd/
printjob.c 96 static FILE *cfp; /* control file */ variable in typeref:typename:FILE *
347 if ((cfp = fopen(file, "r")) == NULL) {
400 while (get_line(cfp))
484 (void)fclose(cfp);
504 fseek(cfp, 0L, 0);
505 while (get_line(cfp))
525 (void)fclose(cfp);
807 if ((cfp = fopen(file, "r")) == NULL)
824 while (get_line(cfp)) {
841 while ((i = get_line(cfp)) != 0
    [all...]
  /src/lib/libc/rpc/
svc_vc.c 438 struct cf_rendezvous *cfp; local in function:svc_vc_rendezvous_control
440 cfp = (struct cf_rendezvous *)xprt->xp_p1;
441 if (cfp == NULL)
445 *(int *)in = cfp->maxrec;
448 cfp->maxrec = *(int *)in;
475 struct cf_conn *cfp; local in function:read_vc
518 cfp = (struct cf_conn *)xprt->xp_p1;
520 if (cfp->nonblock) {
529 gettimeofday(&cfp->last_recv_time, NULL);
551 gettimeofday(&cfp->last_recv_time, NULL)
    [all...]
  /src/sys/arch/landisk/dev/
pwrsw_obio.c 70 pwrsw_obio_probe(device_t parent, cfdata_t cfp, void *aux)
btn_obio.c 97 btn_obio_probe(device_t parent, cfdata_t cfp, void *aux)
wdc_obio.c 69 wdc_obio_probe(device_t parent, cfdata_t cfp, void *aux)
  /src/sys/arch/atari/isa/
fdcisa.c 97 fdc_isa_probe(device_t parent, cfdata_t cfp, void *aux)
  /src/sys/arch/amiga/dev/
wdc_amiga.c 73 wdc_amiga_probe(device_t parent, cfdata_t cfp, void *aux)
wdc_buddha.c 69 wdc_buddha_probe(device_t parent, cfdata_t cfp, void *aux)
  /src/sys/arch/mipsco/isa/
isa_machdep.c 73 isabusmatch(device_t parent, cfdata_t cfp, void *aux)

Completed in 22 milliseconds

1 2