Lines Matching full:strbuf
1867 char strBuf[256];
1876 if (m_getResolutionList(listString, strBuf, previewMaxW, previewMaxH) == false) {
1899 if (m_getResolutionList(listString, strBuf, videoMaxW, videoMaxH) == false) {
1933 if (m_getResolutionList(listString, strBuf, pictureMaxW, pictureMaxH) == false) {
2269 if (m_getZoomRatioList(listString, strBuf, maxZoom, 100, max_zoom_ratio) == true)
2290 snprintf(strBuf, 256, "%d", minPreviewFps);
2291 listString.append(strBuf);
2295 snprintf(strBuf, 256, ",%d", step);
2296 listString.append(strBuf);
2304 snprintf(strBuf, 256, "(%d,%d)", minFpsRange, maxFpsRange);
2305 p.set(CameraParameters::KEY_SUPPORTED_PREVIEW_FPS_RANGE, strBuf);
2307 snprintf(strBuf, 256, "%d,%d", minFpsRange, maxFpsRange);
2308 p.set(CameraParameters::KEY_PREVIEW_FPS_RANGE, strBuf);
2334 snprintf(strBuf, 256, "%.*f", precision, ((float)num / (float)den));
2335 p.set(CameraParameters::KEY_FOCAL_LENGTH, strBuf);
3866 bool ExynosCameraHWInterface::m_getResolutionList(String8 & string8Buf, char * strBuf, int w, int h)
3904 sprintf(strBuf, "%dx%d", RESOLUTION_LIST[i][0], RESOLUTION_LIST[i][1]);
3905 string8Buf.append(strBuf);
3917 bool ExynosCameraHWInterface::m_getZoomRatioList(String8 & string8Buf, char * strBuf, int maxZoom, int start, int end)
3925 sprintf(strBuf, "%d", cur);
3926 string8Buf.append(strBuf);
3931 sprintf(strBuf, "%d", end);
3932 string8Buf.append(strBuf);