Home
last modified time | relevance | path

Searched refs:outResult (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/base/notification/eventhandler/frameworks/test/moduletest/
H A Devent_handler_fd_listener_module_test.cpp161 …auto outResult = handler->AddFileDescriptorListener(fds[1], FILE_DESCRIPTOR_OUTPUT_EVENT, listener, variable
163 EXPECT_EQ(outResult, ERR_OK);
289 …auto outResult = handler->AddFileDescriptorListener(fds[1], FILE_DESCRIPTOR_OUTPUT_EVENT, listener, variable
291 EXPECT_EQ(outResult, ERR_OK);
323 …auto outResult = handler->AddFileDescriptorListener(fds[1], FILE_DESCRIPTOR_OUTPUT_EVENT, listener, variable
325 EXPECT_EQ(outResult, ERR_OK);
423 …auto outResult = handler->AddFileDescriptorListener(fds[1], FILE_DESCRIPTOR_OUTPUT_EVENT, listener, variable
425 EXPECT_EQ(outResult, ERR_OK);
445 …auto outResult = handler->AddFileDescriptorListener(fds[1], FILE_DESCRIPTOR_OUTPUT_EVENT, listener… in AddFileDescriptorHelper() local
446 EXPECT_EQ(outResult, ERR_OK); in AddFileDescriptorHelper()
H A Devent_handler_press_module_test.cpp216 …auto outResult = handler->AddFileDescriptorListener(fds[1], FILE_DESCRIPTOR_OUTPUT_EVENT, listener, variable
218 EXPECT_EQ(outResult, ERR_OK);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/communicator/src/
H A Dprotocol_proto.cpp493 ParseResult &outResult) in CheckAndParsePacket() argument
498 int errCode = ParseCommPhyHeader(srcTarget, bytes, length, outResult); in CheckAndParsePacket()
504 if (outResult.GetFrameTypeInfo() == FrameType::EMPTY) { in CheckAndParsePacket()
508 if (outResult.IsFragment()) { in CheckAndParsePacket()
509 errCode = ParseCommPhyOptHeader(bytes, length, outResult); in CheckAndParsePacket()
513 } else if (outResult.GetFrameTypeInfo() != FrameType::APPLICATION_MESSAGE) { in CheckAndParsePacket()
514 errCode = ParseCommLayerPayload(bytes, length, outResult); in CheckAndParsePacket()
519 errCode = ParseCommDivergeHeader(bytes, length, outResult); in CheckAndParsePacket()
527 int ProtocolProto::CheckAndParseFrame(const SerialBuffer *inBuff, ParseResult &outResult) in CheckAndParseFrame() argument
529 if (inBuff == nullptr || outResult.IsFragment()) { in CheckAndParseFrame()
[all …]
H A Dprotocol_proto.h95 ParseResult &outResult);
98 static int CheckAndParseFrame(const SerialBuffer *inBuff, ParseResult &outResult);
/ohos5.0/base/security/huks/test/unittest/huks_standard_test/crypto_engine_test/src/
H A Dhks_crypto_hal_rsa_cipher.cpp892 int32_t outResult = HksCryptoHalGenerateKey(&testCaseParams.spec, &key); in RunTestCase() local
893 EXPECT_EQ(outResult, testCaseParams.generateKeyResult); in RunTestCase()
894outResult = HksCryptoHalEncrypt(&key, &testCaseParams.usageSpec, &message, &cipherText, &tagAead); in RunTestCase()
895 EXPECT_EQ(outResult, testCaseParams.encryptResult); in RunTestCase()
896 if (outResult == HKS_SUCCESS) { in RunTestCase()
899outResult = HksCryptoHalDecrypt(&key, &testCaseParams.usageSpec, &cipherText, &inscription); in RunTestCase()
900 EXPECT_EQ(outResult, testCaseParams.decryptResult); in RunTestCase()
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/recorder/
H A Drecorder_capability_napi.cpp109 … bool outResult = RecorderProfilesFactory::CreateRecorderProfiles().IsAudioRecorderConfigSupported( in IsAudioRecorderConfigSupported() local
111 asyncCtx->JsResult = std::make_unique<MediaJsResultBoolean>(outResult); in IsAudioRecorderConfigSupported()
260 … bool outResult = RecorderProfilesFactory::CreateRecorderProfiles().HasVideoRecorderProfile( in HasVideoRecorderProfile() local
262 asyncCtx->JsResult = std::make_unique<MediaJsResultBoolean>(outResult); in HasVideoRecorderProfile()
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/src/ble/
H A Dnapi_bluetooth_gatt_client.cpp40 …tus CheckCreateGattClientDeviceParams(napi_env env, napi_callback_info info, napi_value &outResult) in CheckCreateGattClientDeviceParams() argument
61 NAPI_BT_CALL_RETURN(napi_new_instance(env, constructor, argc, argv, &outResult)); in CheckCreateGattClientDeviceParams()