Lines Matching refs:result

33 static void CameraIntrVsync(CAMERAResult result);
34 static void CameraIntrError(CAMERAResult result);
35 static void CameraIntrReboot(CAMERAResult result);
205 CAMERAResult result; in TwlMain() local
208 result = CAMERA_I2CActivateAsync(current, NULL, NULL); in TwlMain()
209 if(result == CAMERA_RESULT_FATAL_ERROR) in TwlMain()
230 CAMERAResult result; in CameraInit() local
231 result = CAMERA_Init(); in CameraInit()
232 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraInit()
234 if(result == CAMERA_RESULT_ILLEGAL_STATUS) in CameraInit()
237 result = CAMERA_I2CActivate(current); in CameraInit()
238 if (result == CAMERA_RESULT_FATAL_ERROR) in CameraInit()
239 OS_TPanic("CAMERA_I2CActivate was failed. (%d)\n", result); in CameraInit()
240 if(result == CAMERA_RESULT_ILLEGAL_STATUS) in CameraInit()
254 CAMERAResult result; in CameraDmaIntr() local
308 result = CAMERA_I2CActivate(CAMERA_SELECT_NONE); in CameraDmaIntr()
309 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraDmaIntr()
315 result = CAMERA_I2CActivateAsync(current, NULL, NULL); in CameraDmaIntr()
316 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraDmaIntr()
344 void CameraIntrVsync(CAMERAResult result) in CameraIntrVsync() argument
346 #pragma unused(result) in CameraIntrVsync()
354 void CameraIntrError(CAMERAResult result) in CameraIntrError() argument
356 #pragma unused(result) in CameraIntrError()
368 void CameraIntrReboot(CAMERAResult result) in CameraIntrReboot() argument
370 if(result == CAMERA_RESULT_FATAL_ERROR) in CameraIntrReboot()
374 CameraIntrError(result); // DMA synchronization might have drifted, so realign in CameraIntrReboot()