/foundation/systemabilitymgr/samgr_lite/interfaces/kits/registry/ |
H A D | iproxy_client.h | 34 * @brief Provides the client proxy class.
58 * @brief Indicates the inherited macro of the client proxy.
60 * This constant is used when a client proxy needs to be customized or generated by a tool. \n
65 int (*Invoke)(IClientProxy *proxy, int funcId, IpcIo *request, IOwner owner, INotify notify)
73 * <b>owner</b> indicates the client proxy that receives the response data; <b>code</b> indicates
82 * @brief Defines the client proxy object.
99 * The passed <b>proxy</b> is used to obtain the server information. Then, <b>request</b>
103 * @param proxy Indicates the pointer of the client proxy object.
114 int (*Invoke)(IClientProxy *proxy, in [all...] |
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | proxy_create.js | 19 var proxy = new Proxy(target, handler); 23 var rev_proxy = revocable.proxy;
|
/third_party/skia/src/gpu/ |
H A D | GrTextureResolveRenderTask.h | 17 void addProxy(GrDrawingManager*, sk_sp<GrSurfaceProxy> proxy, 21 bool onIsUsed(GrSurfaceProxy* proxy) const override {
|
H A D | GrProgramInfo.cpp | 33 this->pipeline().visitProxies([](GrSurfaceProxy* proxy, GrMipmapped) { in checkAllInstantiated() 34 SkASSERT(proxy->isInstantiated()); in checkAllInstantiated()
|
H A D | GrDirectContextPriv.h | 56 /** Version of above that flushes for a single proxy. Null is allowed. */ 58 GrSurfaceProxy* proxy, in flushSurface() 62 size_t size = proxy ? 1 : 0; 63 return this->flushSurfaces({&proxy, size}, access, info, newState); 57 flushSurface( GrSurfaceProxy* proxy, SkSurface::BackendSurfaceAccess access = SkSurface::BackendSurfaceAccess::kNoAccess, const GrFlushInfo& info = {}, const GrBackendSurfaceMutableState* newState = nullptr) flushSurface() argument
|
H A D | GrDDLTask.cpp | 53 bool GrDDLTask::onIsUsed(GrSurfaceProxy* proxy) const { in onIsUsed() 54 if (proxy == fDDLTarget.get()) { in onIsUsed() 59 if (task->isUsed(proxy)) { in onIsUsed()
|
/foundation/systemabilitymgr/samgr_lite/samgr_endpoint/source/ |
H A D | endpoint.c | 62 IServerProxy *proxy;
member 104 int SAMGR_AddRouter(Endpoint *endpoint, const SaName *saName, const Identity *id, IUnknown *proxy)
in SAMGR_AddRouter() argument 106 if (endpoint == NULL || id == NULL || proxy == NULL || saName == NULL) {
in SAMGR_AddRouter() 111 proxy->QueryInterface(proxy, SERVER_PROXY_VER, (void *)&serverProxy);
in SAMGR_AddRouter() 116 int index = VECTOR_FindByKey(&endpoint->routers, proxy);
in SAMGR_AddRouter() 130 router->proxy = serverProxy;
in SAMGR_AddRouter() 446 if (router == NULL || router->proxy == NULL || router->proxy->Invoke == NULL) {
in HandleIpc() 466 router->proxy in HandleIpc() [all...] |
/third_party/node/deps/v8/src/ast/ |
H A D | scopes.h | 237 VariableProxy* proxy = factory->NewVariableProxy(name, kind, start_pos); in NewUnresolved() local 238 AddUnresolved(proxy); in NewUnresolved() 239 return proxy; in NewUnresolved() 242 void AddUnresolved(VariableProxy* proxy); 249 // Deletes an unresolved variable. The variable proxy cannot be reused for 689 static Variable* Lookup(VariableProxy* proxy, Scope* scope, 692 static Variable* LookupWith(VariableProxy* proxy, Scope* scope, 695 static Variable* LookupSloppyEval(VariableProxy* proxy, Scope* scope, 698 static void ResolvePreparsedVariable(VariableProxy* proxy, Scope* scope, 700 void ResolveTo(VariableProxy* proxy, Variabl [all...] |
/foundation/ability/ability_runtime/frameworks/native/ability/native/ui_service_extension_ability/connection/ |
H A D | js_ui_service_proxy.cpp | 40 std::unique_ptr<JsUIServiceProxy> proxy = std::make_unique<JsUIServiceProxy>(impl, hostProxy); in CreateJsUIServiceProxy() local 41 proxy->SetConnectionId(connectionId); in CreateJsUIServiceProxy() 42 napi_wrap(env, object, proxy.release(), Finalizer, nullptr, nullptr); in CreateJsUIServiceProxy()
|
/foundation/CastEngine/castengine_wifi_display/services/interaction/interprocess/ |
H A D | inter_ipc_client.cpp | 70 sptr<IInterIpc> proxy = iface_cast<IInterIpc>(object); in GetSharingProxy() local 71 if (proxy == nullptr) { in GetSharingProxy() 83 SHARING_LOGD("get domain proxy success."); in GetSharingProxy() 85 return proxy; in GetSharingProxy() 92 SHARING_LOGE("get subsystem ability '%{public}s' proxy null.", className.c_str()); in GetSubProxy() 115 SHARING_LOGE("proxy null."); in CreateListenerObject() 145 SHARING_LOGE("new StandardClient proxy null."); in Initialize()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/select_overlay/ |
H A D | select_overlay_client.h | 134 auto proxy = GetSelectOverlayProxy(); in IsShowingSingleHandle() local 135 CHECK_NULL_RETURN(proxy, false); in IsShowingSingleHandle() 136 return proxy->IsSingleHandle(); in IsShowingSingleHandle()
|
/foundation/graphic/graphic_2d/rosen/modules/platform/ipc_core/ |
H A D | iremote_broker.h | 32 T *proxy = new (std::nothrow) T(object); in operator ()() local 33 if (proxy != nullptr) { in operator ()() 34 return static_cast<IRemoteBroker *>(proxy); in operator ()()
|
/foundation/systemabilitymgr/samgr/test/fuzztest/systemabilitymanager_fuzzer/ |
H A D | systemabilitymanager_fuzzer.cpp | 68 IPCObjectProxy* proxy = reinterpret_cast<IPCObjectProxy*>(dmProxy.GetRefPtr()); in IsDmReady() local 69 if (proxy != nullptr && !proxy->IsObjectDead()) { in IsDmReady()
|
/foundation/systemabilitymgr/samgr/test/fuzztest/samgr_fuzzer/src/ |
H A D | fuzztest_utils.cpp | 47 IPCObjectProxy* proxy = reinterpret_cast<IPCObjectProxy*>(dmProxy.GetRefPtr()); in IsDmReady() local 48 if (proxy != nullptr && !proxy->IsObjectDead()) { in IsDmReady()
|
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_distributed_test/ |
H A D | netsys_native_service_proxy_test.cpp | 61 auto proxy = iface_cast<NetsysNative::INetsysService>(remote); in ConnManagerGetProxy() local 62 if (proxy == nullptr) { in ConnManagerGetProxy() 65 return proxy; in ConnManagerGetProxy()
|
/foundation/communication/netmanager_ext/frameworks/native/mdnsclient/src/ |
H A D | mdns_client_resume.cpp | 75 auto proxy = DelayedSingleton<MDnsClient>::GetInstance()->GetProxy(); in RestartDiscoverService() local 76 NETMGR_EXT_LOG_W("Get proxy %{public}s, count: %{public}u", proxy == nullptr ? "failed" : "success", count); in RestartDiscoverService() 77 if (proxy != nullptr) { in RestartDiscoverService()
|
/foundation/deviceprofile/device_info_manager/services/core/test/unittest/ |
H A D | sync_completed_callback_test.cpp | 144 sptr<SyncCompletedCallbackProxy> proxy(new SyncCompletedCallbackProxy(stub)); in HWTEST_F() 145 ASSERT_NE(proxy, nullptr); in HWTEST_F() 147 proxy->OnSyncCompleted(syncResults); in HWTEST_F()
|
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/cloud_data/src/ |
H A D | js_client.cpp | 63 auto [status, proxy] = CloudManager::GetInstance().GetCloudService(); in SetCloudStrategy() 64 if (proxy == nullptr) { in SetCloudStrategy() 74 auto res = proxy->SetCloudStrategy(ctxt->strategy, ctxt->param); in SetCloudStrategy()
|
/third_party/jerryscript/tests/unit-core/ |
H A D | test-api-property.cpp | 100 jerry_value_t proxy = jerry_create_proxy (target, handler); in HWTEST_F() local 104 is_ok = jerry_get_own_property_descriptor (proxy, prop_name, &prop_desc); in HWTEST_F() 106 jerry_release_value (proxy); in HWTEST_F()
|
/third_party/node/benchmark/tls/ |
H A D | secure-pair.js | 33 const proxy = net.createServer(onProxyConnection); 34 proxy.listen(common.PORT, () => { 52 proxy.close();
|
/third_party/skia/include/utils/ |
H A D | SkPaintFilterCanvas.h | 18 A utility proxy base class for implementing draw/paint filters. 33 SkISize getBaseLayerSize() const override { return proxy()->getBaseLayerSize(); } 34 GrRecordingContext* recordingContext() override { return proxy()->recordingContext(); } 100 SkCanvas* proxy() const { SkASSERT(fList.count() == 1); return fList[0]; } in proxy() function in SkPaintFilterCanvas
|
/foundation/CastEngine/castengine_cast_framework/client/include/ |
H A D | mirror_player.h | 32 MirrorPlayer(sptr<IMirrorPlayerImpl> proxy) : proxy_(proxy) {}; in MirrorPlayer() argument
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_scrollbar_ffi.cpp | 51 auto proxy = ScrollBarModel::GetInstance()->GetScrollBarProxy(scrollBarProxy); in FfiOHOSAceFrameworkScrollBarCreate() local 53 ScrollBarModel::GetInstance()->Create(proxy, infoflag, proxyFlag, direction, state); in FfiOHOSAceFrameworkScrollBarCreate()
|
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/drawing_engine/drawing_surface/ |
H A D | surface_base.h | 48 void SetDrawingProxy(DrawingProxy* proxy) in SetDrawingProxy() argument 50 drawingProxy_ = proxy; in SetDrawingProxy()
|
/foundation/multimodalinput/input/service/display_state_manager/include/ |
H A D | display_event_monitor.h | 64 void SetDelegateProxy(std::shared_ptr<DelegateInterface> proxy) in SetDelegateProxy() argument 66 delegateProxy_ = proxy; in SetDelegateProxy()
|