Lines Matching refs:result
33 static void CameraIntrVsync(CAMERAResult result);
34 static void CameraIntrError(CAMERAResult result);
35 static void CameraIntrReboot(CAMERAResult result);
207 CAMERAResult result; in TwlMain() local
210 result = CAMERA_I2CActivateAsync(current, NULL, NULL); in TwlMain()
211 if(result == CAMERA_RESULT_FATAL_ERROR) in TwlMain()
232 CAMERAResult result; in CameraInit() local
233 result = CAMERA_Init(); in CameraInit()
234 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraInit()
236 if(result == CAMERA_RESULT_ILLEGAL_STATUS) in CameraInit()
239 result = CAMERA_I2CActivate(current); in CameraInit()
240 if (result == CAMERA_RESULT_FATAL_ERROR) in CameraInit()
241 OS_TPanic("CAMERA_I2CActivate was failed. (%d)\n", result); in CameraInit()
242 if(result == CAMERA_RESULT_ILLEGAL_STATUS) in CameraInit()
256 CAMERAResult result; in CameraDmaIntr() local
310 result = CAMERA_I2CActivate(CAMERA_SELECT_NONE); in CameraDmaIntr()
311 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraDmaIntr()
317 result = CAMERA_I2CActivateAsync(current, NULL, NULL); in CameraDmaIntr()
318 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraDmaIntr()
346 void CameraIntrVsync(CAMERAResult result) in CameraIntrVsync() argument
348 #pragma unused(result) in CameraIntrVsync()
356 void CameraIntrError(CAMERAResult result) in CameraIntrError() argument
358 #pragma unused(result) in CameraIntrError()
370 void CameraIntrReboot(CAMERAResult result) in CameraIntrReboot() argument
372 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraIntrReboot()
376 CameraIntrError(result); // DMA synchronization might have drifted, so realign in CameraIntrReboot()