Lines Matching refs:result
33 static void CameraIntrVsync(CAMERAResult result);
34 static void CameraIntrError(CAMERAResult result);
35 static void CameraIntrReboot(CAMERAResult result);
204 CAMERAResult result; in TwlMain() local
207 result = CAMERA_I2CActivateAsync(current, NULL, NULL); in TwlMain()
208 if(result == CAMERA_RESULT_FATAL_ERROR) in TwlMain()
229 CAMERAResult result; in CameraInit() local
230 result = CAMERA_Init(); in CameraInit()
231 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraInit()
233 if(result == CAMERA_RESULT_ILLEGAL_STATUS) in CameraInit()
236 result = CAMERA_I2CActivate(current); in CameraInit()
237 if (result == CAMERA_RESULT_FATAL_ERROR) in CameraInit()
238 OS_TPanic("CAMERA_I2CActivate was failed. (%d)\n", result); in CameraInit()
239 if(result == CAMERA_RESULT_ILLEGAL_STATUS) in CameraInit()
253 CAMERAResult result; in CameraDmaIntr() local
307 result = CAMERA_I2CActivate(CAMERA_SELECT_NONE); in CameraDmaIntr()
308 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraDmaIntr()
314 result = CAMERA_I2CActivateAsync(current, NULL, NULL); in CameraDmaIntr()
315 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraDmaIntr()
343 void CameraIntrVsync(CAMERAResult result) in CameraIntrVsync() argument
345 #pragma unused(result) in CameraIntrVsync()
353 void CameraIntrError(CAMERAResult result) in CameraIntrError() argument
355 #pragma unused(result) in CameraIntrError()
367 void CameraIntrReboot(CAMERAResult result) in CameraIntrReboot() argument
369 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraIntrReboot()
373 CameraIntrError(result); // DMA synchronization might have drifted, so realign in CameraIntrReboot()