Home
last modified time | relevance | path

Searched refs:canAddPhotoOutput (Results 1 – 4 of 4) sorted by relevance

/test/xts/acts/multimedia/camera/camera_ndk_test/entry/src/ohosTest/ets/test/
DSession.test.ets461 …let canAddPhotoOutput = cameraObj.oHCaptureSessionCanAddPhotoOutput(Parameter_Setting.ALL_PARAMETE…
462 if (canAddPhotoOutput.errorCode != 0) {
463 console.error(TAG + "canAddPhotoOutput FAILED" + canAddPhotoOutput.errorCode);
466 console.info(TAG + "canAddPhotoOutput: " + canAddPhotoOutput.isAddPhotoOutput);
467 if (!canAddPhotoOutput.isAddPhotoOutput) {
1310 …let canAddPhotoOutput = cameraObj.oHCaptureSessionCanAddPhotoOutput(Parameter_Setting.ALL_PARAMETE…
1311 console.info(TAG + "canAddPhotoOutput: " + canAddPhotoOutput.isAddPhotoOutput);
1312 console.info(TAG+"testOHCaptureSessionCanAddPhotoOutput0100:"+canAddPhotoOutput.errorCode);
1313 expect(canAddPhotoOutput.errorCode).assertEqual(CAMERA_OK);
1335 …let canAddPhotoOutput = cameraObj.oHCaptureSessionCanAddPhotoOutput(Parameter_Setting.FIRST_PARAME…
[all …]
DPhotoTest.test.ets339 …let canAddPhotoOutput = cameraObj.oHCaptureSessionCanAddPhotoOutput(Parameter_Setting.ALL_PARAMETE…
340 if (canAddPhotoOutput.errorCode != 0) {
341 console.error(TAG + "canAddPhotoOutput FAILED" + canAddPhotoOutput.errorCode);
344 console.info(TAG + "canAddPhotoOutput: " + canAddPhotoOutput.isAddPhotoOutput);
345 if (!canAddPhotoOutput.isAddPhotoOutput) {
/test/xts/acts/multimedia/camera/camera_ndk_test/entry/src/main/cpp/types/libentry/
Dindex.d.ts77 interface canAddPhotoOutput { interface
304 export const oHCaptureSessionCanAddPhotoOutput: (index:number) => canAddPhotoOutput;
/test/xts/acts/multimedia/camera/camera_ndk_test/entry/src/main/cpp/
Dmain.cpp1215 napi_value canAddPhotoOutput = nullptr; in OHCaptureSessionCanAddPhotoOutput() local
1216 napi_create_object(env, &canAddPhotoOutput); in OHCaptureSessionCanAddPhotoOutput()
1221 napi_set_named_property(env, canAddPhotoOutput, "isAddPhotoOutput", jsValue); in OHCaptureSessionCanAddPhotoOutput()
1224 napi_set_named_property(env, canAddPhotoOutput, "errorCode", jsValue); in OHCaptureSessionCanAddPhotoOutput()
1226 return canAddPhotoOutput; in OHCaptureSessionCanAddPhotoOutput()