Home
last modified time | relevance | path

Searched refs:policy (Results 576 - 600 of 752) sorted by relevance

1...<<2122232425262728293031

/foundation/multimedia/player_framework/test/unittest/screen_capture_test/screen_capture_unittest/src/
H A Dscreen_capture_unit_test_state.cpp359 HapPolicyParams policy = { in SetHapPermission() local
395 tokenIdEx = AccessTokenKit::AllocHapToken(info, policy); in SetHapPermission()
/foundation/communication/netmanager_base/services/netsyscontroller/src/
H A Dnetsys_native_client.cpp1663 int32_t NetsysNativeClient::SetNetworkAccessPolicy(uint32_t uid, NetworkAccessPolicy policy, bool reconfirmFlag, in SetNetworkAccessPolicy() argument
1672 return proxy->SetNetworkAccessPolicy(uid, policy, reconfirmFlag, isBroker); in SetNetworkAccessPolicy()
/foundation/communication/ipc/ipc/native/src/core/source/
H A Dipc_process_skeleton.cpp325 bool IPCProcessSkeleton::SpawnThread(int policy, int proto) in SpawnThread() argument
329 return threadPool_->SpawnThread(policy, proto); in SpawnThread()
/foundation/distributeddatamgr/relational_store/test/ndk/unittest/
H A Drdb_store_test.cpp76 HapPolicyParams policy = { .apl = APL_NORMAL, in MockHap() local
80 AccessTokenKit::AllocHapToken(info, policy); in MockHap()
/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/ipc/standard/
H A Dipc_cmd_parser.cpp1407 std::string policy = pReq->GetFirstParam(); in ON_IPC_SET_REQUEST() local
1412 if (!data.WriteString(policy)) { in ON_IPC_SET_REQUEST()
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/
H A Dutd_client_test.cpp1832 HapPolicyParams policy = { in HWTEST_F() local
1857 auto tokenID = AccessTokenKit::AllocHapToken(info, policy); in HWTEST_F()
/third_party/EGL/api/EGL/
H A Deglext.h647 typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSWAPPOLICYEXTPROC) (EGLint external_win_id, EGLint policy);
655 EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSwapPolicyEXT (EGLint external_win_id, EGLint policy);
/third_party/mesa3d/include/EGL/
H A Deglext.h647 typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSWAPPOLICYEXTPROC) (EGLint external_win_id, EGLint policy);
655 EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSwapPolicyEXT (EGLint external_win_id, EGLint policy);
/third_party/skia/third_party/externals/swiftshader/include/EGL/
H A Deglext.h643 typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSWAPPOLICYEXTPROC) (EGLint external_win_id, EGLint policy);
651 EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSwapPolicyEXT (EGLint external_win_id, EGLint policy);
/third_party/skia/src/ports/
H A DSkFontHost_FreeType.cpp1074 bool policy = !FT_IS_SCALABLE(fFace) || !matrix.isIdentity();
1076 return mechanism && policy;
/third_party/skia/third_party/externals/egl-registry/api/EGL/
H A Deglext.h643 typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSWAPPOLICYEXTPROC) (EGLint external_win_id, EGLint policy);
651 EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSwapPolicyEXT (EGLint external_win_id, EGLint policy);
/third_party/skia/third_party/externals/angle2/include/EGL/
H A Deglext.h634 typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSWAPPOLICYEXTPROC) (EGLint external_win_id, EGLint policy);
642 EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSwapPolicyEXT (EGLint external_win_id, EGLint policy);
/third_party/node/deps/undici/
H A Dundici.js1258 const policyHeader = (headersList.get("referrer-policy") ?? "").split(",");
1259 let policy = "";
1264 policy = token;
1269 if (policy !== "") {
1270 request.referrerPolicy = policy;
1356 const policy = request.referrerPolicy;
1357 assert(policy);
1375 switch (policy) {
6157 // referrer policy request’s referrer policy
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dvk_helpers.cpp809 DynamicBufferPolicy policy, in ShouldReleaseFreeBuffer()
817 const bool releaseByPolicy = policy == DynamicBufferPolicy::OneShotUse || in ShouldReleaseFreeBuffer()
818 (policy == DynamicBufferPolicy::SporadicTextureUpload && in ShouldReleaseFreeBuffer()
2194 DynamicBufferPolicy policy) in init()
2199 initWithFlags(renderer, usage, alignment, initialSize, memoryPropertyFlags, policy); in init()
2207 DynamicBufferPolicy policy) in initWithFlags()
2212 mPolicy = policy; in initWithFlags()
807 ShouldReleaseFreeBuffer(const vk::BufferHelper &buffer, size_t dynamicBufferSize, DynamicBufferPolicy policy, size_t freeListSize) ShouldReleaseFreeBuffer() argument
2189 init(RendererVk *renderer, VkBufferUsageFlags usage, size_t alignment, size_t initialSize, bool hostVisible, DynamicBufferPolicy policy) init() argument
2202 initWithFlags(RendererVk *renderer, VkBufferUsageFlags usage, size_t alignment, size_t initialSize, VkMemoryPropertyFlags memoryPropertyFlags, DynamicBufferPolicy policy) initWithFlags() argument
H A Dvk_helpers.h92 DynamicBufferPolicy policy);
100 DynamicBufferPolicy policy);
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_view_abstract.cpp2810 // policy in ParseBlurStyleOption()
2811 auto policy = static_cast<int32_t>(BlurStyleActivePolicy::ALWAYS_ACTIVE); in ParseBlurStyleOption() local
2812 ParseJsInt32(jsOption->GetProperty("policy"), policy); in ParseBlurStyleOption()
2813 if (policy >= static_cast<int32_t>(BlurStyleActivePolicy::FOLLOWS_WINDOW_ACTIVE_STATE) && in ParseBlurStyleOption()
2814 policy <= static_cast<int32_t>(BlurStyleActivePolicy::ALWAYS_INACTIVE)) { in ParseBlurStyleOption()
2815 styleOption.policy = static_cast<BlurStyleActivePolicy>(policy); in ParseBlurStyleOption()
2948 // policy in ParseEffectOption()
2949 auto policy in ParseEffectOption() local
[all...]
/foundation/communication/netmanager_base/frameworks/native/netmanagernative/
H A Dnetsys_native_service_proxy.cpp2986 int32_t NetsysNativeServiceProxy::SetNetworkAccessPolicy(uint32_t uid, NetworkAccessPolicy policy, bool reconfirmFlag, in SetNetworkAccessPolicy() argument
2999 if (!data.WriteUint8(policy.wifiAllow)) { in SetNetworkAccessPolicy()
3003 if (!data.WriteUint8(policy.cellularAllow)) { in SetNetworkAccessPolicy()
/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/
H A Ddevice_manager_impl.cpp2317 int32_t DeviceManagerImpl::SetDnPolicy(const std::string &pkgName, std::map<std::string, std::string> &policy) in SetDnPolicy() argument
2320 if (pkgName.empty() || policy.size() != SET_DN_POLICY_PARAM_SIZE) { in SetDnPolicy()
2322 LOGE("Para invalid: policy is less than two or pkgName is empty."); in SetDnPolicy()
2326 std::string strategy = ConvertMapToJsonString(policy); in SetDnPolicy()
/third_party/rust/crates/libc/src/unix/solarish/
H A Dmod.rs2989 pub fn sched_get_priority_min(policy: ::c_int) -> ::c_int; in sched_get_priority_min()
2990 pub fn sched_get_priority_max(policy: ::c_int) -> ::c_int; in sched_get_priority_max()
2996 policy: ::c_int, in sched_setscheduler()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dtls_openssl.c2181 POLICYINFO *policy; in openssl_cert_tod() local
2183 policy = sk_POLICYINFO_value(ext, i); in openssl_cert_tod()
2184 res = OBJ_obj2txt(buf, sizeof(buf), policy->policyid, 0); in openssl_cert_tod()
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H A Drosen_render_context.cpp922 GetBackBlurStyle()->policy == BlurStyleActivePolicy::FOLLOWS_WINDOW_ACTIVE_STATE) { in UpdateWindowFocusState()
928 GetBackgroundEffect()->policy == BlurStyleActivePolicy::FOLLOWS_WINDOW_ACTIVE_STATE) { in UpdateWindowFocusState()
968 bgBlurStyle->policy == BlurStyleActivePolicy::ALWAYS_ACTIVE || in UpdateBlurBackgroundColor()
969 (bgBlurStyle->policy == BlurStyleActivePolicy::FOLLOWS_WINDOW_ACTIVE_STATE && bgBlurStyle->isWindowFocused); in UpdateBlurBackgroundColor()
983 efffectOption->policy == BlurStyleActivePolicy::ALWAYS_ACTIVE || in UpdateBlurBackgroundColor()
984 (efffectOption->policy == BlurStyleActivePolicy::FOLLOWS_WINDOW_ACTIVE_STATE && efffectOption->isWindowFocused); in UpdateBlurBackgroundColor()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/cloud/
H A Dcloud_syncer.cpp38 std::shared_ptr<StorageProxy> storageProxy, bool isLocalDeleteUpload, SingleVerConflictResolvePolicy policy) in CloudSyncer()
45 policy_(policy) in CloudSyncer()
37 CloudSyncer( std::shared_ptr<StorageProxy> storageProxy, bool isLocalDeleteUpload, SingleVerConflictResolvePolicy policy) CloudSyncer() argument
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
H A Dlibcpuset.c3089 static int get_mempolicy(int *policy, unsigned long *nmask, in get_mempolicy() argument
3092 return tst_syscall(__NR_get_mempolicy, policy, nmask, maxnode, in get_mempolicy()
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
H A Dmutex.cc922 int policy; in Enqueue() local
924 const int err = pthread_getschedparam(pthread_self(), &policy, &param); in Enqueue()
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/
H A Dx509_vfy.h431 /* Enable policy checking */
433 /* Policy variable require-explicit-policy */
435 /* Policy variable inhibit-any-policy */
437 /* Policy variable inhibit-policy-mapping */
439 /* Notify callback that policy is OK */
472 /* Internal use: mask of policy related options */
813 ASN1_OBJECT *policy);
851 #define X509_PCY_TREE_FAILURE -2 /* Failure to satisfy explicit policy */
859 #define X509_PCY_TREE_VALID 1 /* The policy tree is valid */
860 #define X509_PCY_TREE_EMPTY 2 /* The policy tre
[all...]

Completed in 165 milliseconds

1...<<2122232425262728293031