Lines Matching refs:boot
3071 * Interpret the boot data
3153 static BOOL getlogfiledata(CONTEXT *ctx, const char *boot)
3166 rph = (const RESTART_PAGE_HEADER*)boot;
3185 rest = (const RESTART_AREA*)&boot[off];
3219 static BOOL getvolumedata(CONTEXT *ctx, char *boot)
3227 getboot(boot);
3237 && (!memcmp(boot,"RSTR",4) || !memcmp(boot,"CHKD",4))) {
3239 ok = getlogfiledata(ctx, boot);
3271 } boot;
3277 * First check the boot sector, to avoid library errors
3285 got = fread(boot.buf,1,1024,ctx->file);
3287 && (!memcmp(boot.buf, "RSTR", 4)
3288 || !memcmp(boot.buf, "CHKD", 4))) {
3291 ok = getvolumedata(ctx, boot.buf);
3307 ok = getvolumedata(ctx, boot.buf);