Lines Matching full:proxy
327 A <firstterm>proxy object</firstterm> is a convenient native object created to
331 Proxies look like a normal native object; but when you invoke a method on the proxy
352 Proxy proxy = new Proxy(getBusConnection(), "/remote/object/path");
353 Object returnValue = proxy.MethodName(arg1, arg2);
565 The language binding may provide a proxy, such that invoking a method on
567 application calls a method on the proxy, and the proxy
574 using a proxy.
617 of a proxy method, or into an exception.
682 the binding may choose to emit a native signal on a proxy object. If using the
792 <entry>The returned proxy does not have an interface set; use <literal>dbus_g_proxy_set_interface</literal> to invoke methods</entry>
1004 DBusGProxy *proxy;
1021 /* Create a proxy object for the "bus driver" (name "org.freedesktop.DBus") */
1023 proxy = dbus_g_proxy_new_for_name (connection,
1030 if (!dbus_g_proxy_call (proxy, "ListNames", &error, G_TYPE_INVALID,
1054 g_object_unref (proxy);
1065 <literal>dbus_g_bus_get</literal>. Next, a proxy
1069 This is a proxy for the message bus itself.
1161 if (!dbus_g_proxy_call (proxy, "Foobar", &error,
1184 if (!dbus_g_proxy_call (proxy, "HashSize", &error,
1203 if (!dbus_g_proxy_call (proxy, "GetStuff", &error,
1234 if (!dbus_g_proxy_call (proxy, "TwoStrArrays", &error,
1256 if (!dbus_g_proxy_call (proxy, "GetStrs", &error,
1280 if (!dbus_g_proxy_call (proxy, "SendVariant", &error,
1298 if (!dbus_g_proxy_call (proxy, "GetVariant", &error, G_TYPE_INVALID,
1349 com_example_MyObject_many_args (DBusGProxy *proxy, const guint IN_x,
1356 com_example_MyObject_many_args_async (DBusGProxy *proxy, const guint IN_x,
1364 (DBusGProxy *proxy, gdouble OUT_d_ret, char * OUT_str_ret,
1828 Notice I get an interface on the proxy object and use that to make the call. While the specifications
1888 to register a signal handler on the bus. One way is to attach to an already created proxy using the connect_to_signal method
1946 All this can be done without creating the proxy object if one wanted to but in most cases you would want to have
1972 <title>Cost of Creating a Proxy Object</title>
1974 Note that creating proxy objects can have an associated processing cost. When introspection is implemented
1975 a proxy may wait for introspection data before processing any requests. It is generally good practice to
1976 create proxies once and reuse the proxy when calling into the object. Constantly creating the same proxy
2068 It takes no arguments and returns a string to the calling program. Let's create a proxy and invoke this