Lines Matching defs:info
245 ALOGD("%s: Scan Info string: %s length = %d",
249 ALOGE("%s: Scan Info file empty '%s'",
288 // Store underscan support info in a system property
316 void set_info(struct fb_var_screeninfo &info) const;
319 void disp_mode_timing_type::set_info(struct fb_var_screeninfo &info) const
321 info.reserved[0] = 0;
322 info.reserved[1] = 0;
323 info.reserved[2] = 0;
325 info.reserved[3] = (info.reserved[3] & 0xFFFF) | (video_format << 16);
327 info.xoffset = 0;
328 info.yoffset = 0;
329 info.xres = active_h;
330 info.yres = active_v;
332 info.pixclock = pixel_freq*1000;
333 info.vmode = interlaced ? FB_VMODE_INTERLACED : FB_VMODE_NONINTERLACED;
335 info.right_margin = front_porch_h;
336 info.hsync_len = pulse_width_h;
337 info.left_margin = back_porch_h;
338 info.lower_margin = front_porch_v;
339 info.vsync_len = pulse_width_v;
340 info.upper_margin = back_porch_v;
587 struct fb_var_screeninfo info;
595 ALOGD_IF(DEBUG, "%s: GET Info<ID=%d %dx%d (%d,%d,%d),"
614 ALOGD_IF(DEBUG, "%s: SET Info<ID=%d => Info<ID=%d %dx %d"