Searched refs:logfp (Results 1 – 4 of 4) sorted by relevance
/titanic_44/usr/src/stand/lib/fs/ufs/ |
H A D | lufsboot.c | 223 static fileid_t *logfp = (fileid_t *)NULL; variable 412 if (logfp->fi_blocknum != pblk) { in lufs_read_log() 413 logfp->fi_blocknum = pblk; in lufs_read_log() 414 logfp->fi_memp = logfp->fi_buf; in lufs_read_log() 415 logfp->fi_count = DEV_BSIZE; in lufs_read_log() 416 logfp->fi_offset = 0; in lufs_read_log() 417 if (diskread(logfp)) { in lufs_read_log() 420 logfp->fi_blocknum); in lufs_read_log() 433 st = (sect_trailer_t *)(logfp->fi_memp + in lufs_read_log() 457 bcopy(logfp->fi_buf + (addr - ldbtob(lbtodb(addr))), in lufs_read_log() [all …]
|
/titanic_44/usr/src/cmd/ndmpd/ndmp/ |
H A D | ndmpd_log.c | 70 static FILE *logfp; variable 130 if ((logfp = fopen(fname, mode)) == NULL) { in openlogfile() 153 (void) fprintf(logfp, "%2d/%02d %2d:%02d:%02d ", in log_write_cur_time() 168 (void) fputc('\n', logfp); in add_newline() 181 (void) fwrite(msg, 1, strlen(msg), logfp); in log_append() 184 (void) fflush(logfp); in log_append() 272 if (logfp != NULL) { in ndmp_log_close_file() 273 (void) fclose(logfp); in ndmp_log_close_file() 274 logfp = NULL; in ndmp_log_close_file() 346 if (logfp != NULL) in ndmp_log()
|
/titanic_44/usr/src/cmd/svr4pkg/pkginstall/ |
H A D | cppath.c | 181 FILE *logfp = (FILE *)NULL; in cppath() local 203 logfp = fopen(busylog, "a"); in cppath() 204 if (logfp == NULL) { in cppath() 208 (void) fprintf(logfp, "%s\n", linknam); in cppath() 209 (void) fclose(logfp); in cppath()
|
/titanic_44/usr/src/lib/libdevinfo/ |
H A D | devfsmap.c | 142 static FILE *logfp; variable 2149 if (logfp == NULL) { in vlog_debug_msg() 2151 logfp = fopen(devfsmap_logfile, "a"); in vlog_debug_msg() 2152 if (logfp) in vlog_debug_msg() 2153 (void) fprintf(logfp, "\nNew Log:\n"); in vlog_debug_msg() 2156 if (logfp == NULL) in vlog_debug_msg() 2157 logfp = stdout; in vlog_debug_msg() 2162 (void) fprintf(logfp, "%02d:%02d:%02d ", t.tm_hour, t.tm_min, in vlog_debug_msg() 2164 (void) vfprintf(logfp, fmt, ap); in vlog_debug_msg() 2165 (void) fflush(logfp); in vlog_debug_msg()
|