Home
last modified time | relevance | path

Searched refs:tempContext (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/cj/src/
H A Dpreferences_impl.cpp46 auto tempContext = std::make_shared<HelperAysncContext>(); in GetInstancePath() local
47 tempContext->bundleName = context->GetBundleName(); in GetInstancePath()
48 tempContext->name = name; in GetInstancePath()
54 tempContext->path = preferencesDir.append("/").append(tempContext->name); in GetInstancePath()
55 return {E_OK, tempContext->path}; in GetInstancePath()
/ohos5.0/base/tee/tee_client/services/cadaemon/src/ca_daemon/
H A Dcadaemon_service.cpp411 TEEC_Context tempContext = { 0 }; in ReleaseContext() local
413 tempContext.fd = (*contextInner)->fd; in ReleaseContext()
414 if (CallFinalizeContext(pid, &tempContext) < 0) { in ReleaseContext()
515 TEEC_ContextInner *tempContext = nullptr; in CallGetBnContext() local
522 tempContext = GetBnContext(inContext); in CallGetBnContext()
523 if (tempContext == nullptr) { in CallGetBnContext()
531 PutBnContextAndReleaseFd(pid, tempContext); in CallGetBnContext()
537 *outContext = tempContext; in CallGetBnContext()
H A Dcadaemon_stub.cpp165 TEEC_Context *tempContext = (TEEC_Context *)(data.ReadBuffer(len)); in GetContextFromData() local
166 if (tempContext == nullptr) { in GetContextFromData()
170 if (memcpy_s(context, len, tempContext, len) != EOK) { in GetContextFromData()
/ohos5.0/base/useriam/user_auth_framework/test/unittest/services/src/
H A Dcontext_pool_test.cpp244 auto tempContext = contextVector[0].lock(); variable
245 EXPECT_NE(tempContext, nullptr);
246 EXPECT_EQ(tempContext->GetContextId(), 10);
/ohos5.0/base/useriam/user_auth_framework/services/context/src/
H A Dcontext_pool_impl.cpp125 auto tempContext = iter->second; in Delete() local
129 listener->OnContextPoolDelete(tempContext); in Delete()
/ohos5.0/foundation/multimedia/image_effect/frameworks/native/efilter/base/
H A Defilter.cpp490 std::shared_ptr<EffectContext> tempContext = std::make_shared<EffectContext>(); in UseTextureInput() local
491 tempContext->ipType_ = IPType::GPU; in UseTextureInput()
492 ErrorCode result = Render(nullptr, nullptr, tempContext); in UseTextureInput()