/src/sys/dev/i2o/ |
iopsp.c | 227 void *tofree; local in function:iopsp_reconfig 334 tofree = sc->sc_tidmap; 338 if (tofree != NULL) 339 free(tofree, M_DEVBUF);
|
/src/usr.bin/whois/ |
whois.c | 167 char *tofree = NULL; local in function:main 169 host ? host : choose_server(name, country, &tofree); 171 free(tofree); 301 choose_server(const char *name, const char *country, char **tofree) 361 *tofree = server;
|
/src/usr.sbin/autofs/ |
automountd.c | 87 char *tofree, *pair, *newoptions; local in function:pick_option 91 tofree = *optionsp; 113 free(tofree);
|
common.c | 125 char *component, *copy, *tofree, *partial, *tmp; local in function:create_directory 133 copy = tofree = checked_strdup(path + 1); 151 free(tofree);
|
/src/sys/kern/ |
vfs_trans.c | 352 struct fstrans_lwp_info **p, *fli, *tofree = NULL; local in function:fstrans_clear_lwp_info 376 fli->fli_succ = tofree; 377 tofree = fli; 389 while (tofree != NULL) { 390 fli = tofree; 391 tofree = fli->fli_succ;
|