/base/security/device_auth/frameworks/src/standard/ |
H A D | ipc_dev_auth_stub.cpp | 279 LOGE("[IPC][C->S]: The proxy interface token is invalid!"); in OnRemoteRequest() 383 sptr<ICommIpcCallback> proxy = iface_cast<ICommIpcCallback>(g_cbStub[objIdx].cbStub); in ActCallback() local 384 proxy->DoCallBack(callbackId, cbHook, dataParcel, reply, option); in ActCallback()
|
/third_party/skia/src/gpu/ops/ |
H A D | AtlasPathRenderer.cpp | 37 auto checkForAtlasRef = [atlasProxy, &refsAtlas](GrSurfaceProxy* proxy, GrMipmapped) { in refs_atlas() 38 if (proxy == atlasProxy) { in refs_atlas()
|
/third_party/skia/src/gpu/ |
H A D | GrThreadSafeCache.cpp | 339 sk_sp<GrRenderTargetProxy> proxy = proxyProvider->createLazyRenderTargetProxy( in CreateLazyView() local 368 return {{std::move(proxy), origin, swizzle}, std::move(trampoline)}; in CreateLazyView()
|
/third_party/skia/src/shaders/ |
H A D | SkPictureShader.cpp | 403 if (auto proxy = provider->findOrCreateProxyByUniqueKey(key)) { in asFragmentProcessor() 404 view = GrSurfaceProxyView(proxy, kTopLeft_GrSurfaceOrigin, GrSwizzle()); in asFragmentProcessor()
|
/third_party/skia/platform_tools/android/apps/skottie/skottielib/src/main/java/org/skia/skottie/ |
H A D | SkottieAnimation.java | 111 long proxy = mRunner.getNativeProxy(); in init() 112 mNativeProxy = nCreateProxy(proxy, byteBuffer); in init()
|
/third_party/skia/gm/ |
H A D | exoticformats.cpp | 386 GrTextureProxy* proxy = sk_gpu_test::GetTextureImageProxy(image, in drawImage() local 388 isCompressed = caps->isFormatCompressed(proxy->backendFormat()); in drawImage()
|
/base/notification/common_event_service/services/test/unittest/ |
H A D | common_event_subscribe_unit_test.cpp | 107 virtual bool FinishReceiver(const OHOS::sptr<OHOS::IRemoteObject> &proxy, const int &code, in FinishReceiver() argument 1043 OHOS::sptr<OHOS::IRemoteObject> proxy(nullptr); in HWTEST_F() 1047 bool result = commonEventManagerService.FinishReceiver(proxy, code, receiverData, false); in HWTEST_F()
|
/third_party/node/test/common/ |
H A D | index.js | 579 const proxy = new Proxy(original, _mustNotMutateObjectDeepHandler); 580 _mustNotMutateObjectDeepProxies.set(original, proxy); 581 return proxy;
|
/third_party/skia/tests/ |
H A D | ResourceCacheTest.cpp | 1744 sk_sp<GrTextureProxy> proxy; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local 1746 proxy = make_mipmap_proxy(context, GrRenderable::kYes, kSize, 1); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 1747 size_t size = proxy->gpuMemorySize(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 1750 size_t sampleCount = (size_t)caps->getRenderTargetSampleCount(4, proxy->backendFormat()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 1752 proxy = make_mipmap_proxy(context, GrRenderable::kYes, kSize, sampleCount); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 1753 size = proxy->gpuMemorySize(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 1760 proxy = make_mipmap_proxy(context, GrRenderable::kNo, kSize, 1); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 1761 size = proxy->gpuMemorySize(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
/kernel/linux/linux-5.10/security/apparmor/ |
H A D | domain.c | 668 if (new && new->proxy == profile->label.proxy && info) { in profile_transition() 946 if (label->proxy != new->proxy) { in apparmor_bprm_creds_for_exec()
|
/kernel/linux/linux-6.6/security/apparmor/ |
H A D | domain.c | 678 if (new && new->proxy == profile->label.proxy && info) { in profile_transition() 970 if (label->proxy != new->proxy) { in apparmor_bprm_creds_for_exec()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | parser.h | 420 void DeclareAndBindVariable(VariableProxy* proxy, VariableKind kind, 577 // inside a variable proxy). We exclude the case of 'this', which 578 // has been converted to a variable proxy. 815 VariableProxy* proxy = factory()->ast_node_factory()->NewVariableProxy( in ExpressionFromPrivateName() local 817 private_name_scope->AddUnresolvedPrivateName(proxy); in ExpressionFromPrivateName() 818 return proxy; in ExpressionFromPrivateName()
|
/base/customization/enterprise_device_management/interfaces/kits/network_manager/src/ |
H A D | network_manager_addon.cpp | 872 ASSERT_AND_THROW_PARAM_ERROR(env, isHttpProxy, "parameter http proxy error");
in SetGlobalHttpProxy() 1011 napi_value proxy = nullptr;
in ConvertHttpProxyToJS() local 1012 NAPI_CALL(env, napi_create_object(env, &proxy));
in ConvertHttpProxyToJS() 1030 NAPI_CALL(env, napi_set_named_property(env, proxy, HOST_PROP_NAME, host));
in ConvertHttpProxyToJS() 1031 NAPI_CALL(env, napi_set_named_property(env, proxy, PORT_PROP_NAME, port));
in ConvertHttpProxyToJS() 1032 NAPI_CALL(env, napi_set_named_property(env, proxy, EXCLUSION_LIST_PROP_NAME, list));
in ConvertHttpProxyToJS() 1033 return proxy;
in ConvertHttpProxyToJS()
|
/base/request/request/frameworks/js/napi/src/ |
H A D | js_initialize.cpp | 386 if (!ParseProxy(env, jsConfig, config.proxy, errInfo)) {
in ParseConfig() 648 bool JsInitialize::ParseProxy(napi_env env, napi_value jsConfig, std::string &proxy, std::string &errInfo)
in ParseProxy() argument 650 proxy = NapiUtils::Convert2String(env, jsConfig, "proxy");
in ParseProxy() 651 if (proxy.empty()) {
in ParseProxy() 655 if (proxy.size() > PROXY_MAXIMUM) {
in ParseProxy() 656 REQUEST_HILOGE("The proxy exceeds the maximum length of 512");
in ParseProxy() 657 errInfo = "Parameter verification failed, the length of config.proxy exceeds 512";
in ParseProxy() 661 if (!regex_match(proxy, std::regex("^http:\\/\\/.+:\\d{1,5}$"))) {
in ParseProxy() 663 errInfo = "Parameter verification failed, the format of proxy i in ParseProxy() [all...] |
/base/telephony/call_manager/frameworks/native/src/ |
H A D | call_manager_proxy.cpp | 106 std::shared_ptr<CallManagerProxy> proxy = DelayedSingleton<CallManagerProxy>::GetInstance(); in OnReceiveEvent() local 107 if (proxy == nullptr) { in OnReceiveEvent() 108 TELEPHONY_LOGE("proxy is nullptr"); in OnReceiveEvent() 111 int32_t result = proxy->ConnectService(); in OnReceiveEvent() 116 result = proxy->RegisterCallBack(proxy->GetCallBack()); in OnReceiveEvent() 121 proxy->SetInitState(true); in OnReceiveEvent()
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/ |
H A D | device.py | 648 def proxy(self): member in Device 666 self.log.error("DeviceTest-10012 proxy:%s" % str(error)) 721 self.log.error(' proxy init error: {}.'.format(str(error))) 1020 def reconnect(self, waittime=60, proxy=None): 1041 if self._proxy and (proxy is None or proxy == AgentMode.hap): 1050 if self.is_bin and self._abc_proxy and (proxy is None or proxy == AgentMode.bin):
|
/third_party/curl/src/ |
H A D | tool_getparam.c | 510 {"proxy", ARG_STRG, 'x', C_PROXY}, 511 {"proxy-anyauth", ARG_BOOL, ' ', C_PROXY_ANYAUTH}, 512 {"proxy-basic", ARG_BOOL, ' ', C_PROXY_BASIC}, 513 {"proxy-ca-native", ARG_BOOL, ' ', C_PROXY_CA_NATIVE}, 514 {"proxy-cacert", ARG_FILE, ' ', C_PROXY_CACERT}, 515 {"proxy-capath", ARG_FILE, ' ', C_PROXY_CAPATH}, 516 {"proxy-cert", ARG_FILE, ' ', C_PROXY_CERT}, 517 {"proxy-cert-type", ARG_STRG, ' ', C_PROXY_CERT_TYPE}, 518 {"proxy-ciphers", ARG_STRG, ' ', C_PROXY_CIPHERS}, 519 {"proxy [all...] |
H A D | tool_cfgable.c | 81 Curl_safefree(config->proxy); in free_config_fields()
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-wasm-objects.cc | 100 // Creates a Map for the given debug proxy |id| using the |create_template_fn| 309 // This class implements the "functions" proxy. 333 // This class implements the "globals" proxy. 364 // This class implements the "memories" proxy. 390 // This class implements the "tables" proxy. 416 // This class implements the "locals" proxy. 468 // This class implements the "stack" proxy (which offers only indexed access). 527 Handle<JSObject> proxy = Proxy::Create(isolate, instance); in GetOrCreateInstanceProxy() local 528 proxies->set(Proxy::kId, *proxy); in GetOrCreateInstanceProxy() 529 return proxy; in GetOrCreateInstanceProxy() 893 Handle<JSObject> proxy = IndexedDebugProxy::Create( Create() local [all...] |
/base/notification/common_event_service/frameworks/native/test/unittest/ |
H A D | common_event_unsubscribe_test.cpp | 100 virtual bool FinishReceiver(const OHOS::sptr<IRemoteObject> &proxy, const int32_t &code, in FinishReceiver() argument
|
/kernel/linux/linux-5.10/drivers/net/ethernet/cisco/enic/ |
H A D | vnic_dev.h | 106 enum vnic_proxy_type proxy; member
|
/kernel/linux/linux-5.10/security/apparmor/include/ |
H A D | policy.h | 178 struct aa_profile *aa_alloc_profile(const char *name, struct aa_proxy *proxy,
|
/kernel/linux/linux-6.6/drivers/net/ethernet/cisco/enic/ |
H A D | vnic_dev.h | 93 enum vnic_proxy_type proxy; member
|
/third_party/curl/lib/ |
H A D | http.h | 155 CURLcode Curl_http_input_auth(struct Curl_easy *data, bool proxy, 235 * host/proxy and the correct authentication 244 * @param proxytunnel boolean if this is the request setting up a "proxy 256 up the proxy tunnel */
|
/third_party/skia/src/core/ |
H A D | SkSDFFilter.cpp | 129 1, GrMipmapped::kNo, srcView.proxy()->isProtected(), srcView.origin()); in sdf_2d()
|