/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/ |
H A D | ip6.c | 336 * Check for addresses in that address space that proxy wants to 338 * proxy */ 420 int proxy = 0; local 585 proxy = 1; 592 if (!proxy) 764 if (proxy) { 797 /* no proxy support for this protocol */
|
H A D | nd6.c | 261 u8_t proxy; local 296 proxy = 0; 301 accepted = proxy = 1; 316 if (proxy) { 393 if (!proxy)
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/ |
H A D | ip4.c | 228 forwarded = 0; /* but try connection proxy if configured */ 234 * Check for addresses in that address space that proxy wants to 236 * proxy */ 342 int proxy = 0; local 544 proxy = 1; 556 if (!proxy) 616 if (proxy) { 645 /* no proxy support for this protocol */
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/ |
H A D | lbxserve.h | 74 LbxProxyPtr proxy; member in struct:_LbxClient 90 /* this array is indexed by lbx proxy index */ 95 int pid; /* proxy ID */ 126 /* This array is indexed by server client index, not lbx proxy index */ 131 #define LbxProxy(client) (LbxClient(client)->proxy) 134 #define LbxProxyClient(proxy) ((proxy)->lbxClients[0]->client) 141 LbxProxyPtr proxy ); 142 extern void LbxProxyConnection ( ClientPtr client, LbxProxyPtr proxy ); 146 extern void LbxForceOutput ( LbxProxyPtr proxy ); [all...] |
H A D | osdep.h | 208 OsProxyPtr proxy; member in struct:_osComm
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/ |
H A D | lbxserve.h | 74 LbxProxyPtr proxy; member in struct:_LbxClient 90 /* this array is indexed by lbx proxy index */ 95 int pid; /* proxy ID */ 126 /* This array is indexed by server client index, not lbx proxy index */ 131 #define LbxProxy(client) (LbxClient(client)->proxy) 134 #define LbxProxyClient(proxy) ((proxy)->lbxClients[0]->client) 141 LbxProxyPtr proxy ); 142 extern void LbxProxyConnection ( ClientPtr client, LbxProxyPtr proxy ); 146 extern void LbxForceOutput ( LbxProxyPtr proxy ); [all...] |
H A D | osdep.h | 206 OsProxyPtr proxy; member in struct:_osComm
|
/vbox/src/libs/xpcom18a4/xpcom/proxy/src/ |
H A D | nsProxyEventObject.cpp | 180 // make sure that the object pass in is not a proxy... 181 // if the object *is* a proxy, then be nice and build the proxy 198 // a proxy from a proxy. -- dougt@netscape.com 199 NS_ASSERTION(0, "Someone is building a proxy from a proxy"); 206 // someone is asking us to create a proxy for a proxy. Lets get 235 // Enter the proxy objec 264 nsCOMPtr<nsProxyEventObject> proxy; local [all...] |
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ |
H A D | etharp.c | 700 u8_t proxy; local 767 for_us = proxy = 1; 770 proxy = 0; 800 proxy ? "as proxy" : "for our IP address"));
|
/vbox/src/VBox/RDP/client-1.8.3/vrdp/ |
H A D | rdpusb.c | 376 PUSBPROXYDEV proxy = g_proxies; local 378 while (proxy && proxy->devid != devid) 380 proxy = proxy->pNext; 383 return proxy; 393 PUSBPROXYDEV proxy = g_proxies; local 395 while (proxy) 397 pUrb = op_usbproxy_back_reap_urb(proxy, 0); 411 out_uint32_le(s, proxy 467 PUSBPROXYDEV proxy = NULL; local 865 PUSBPROXYDEV proxy = g_proxies; local 893 PUSBPROXYDEV proxy = g_proxies; local 940 PUSBPROXYDEV proxy = g_proxies; local [all...] |
/vbox/src/VBox/Additions/linux/lightdm-greeter/liblightdm-gobject-1.5.0/ |
H A D | user.c | 86 GDBusProxy *proxy; member in struct:__anon2093 390 result = g_dbus_connection_call_sync (g_dbus_proxy_get_connection (object->proxy), 392 g_dbus_proxy_get_object_path (object->proxy), 402 g_warning ("Error updating user %s: %s", g_dbus_proxy_get_object_path (object->proxy), error->message); 460 user_signal_cb (GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, UserAccountObject *object) argument 466 g_debug ("User %s changed", g_dbus_proxy_get_object_path (object->proxy)); 478 GDBusProxy *proxy; local 482 proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM, 493 if (!proxy) 499 object->proxy 532 user_accounts_signal_cb(GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, LightDMUserList *user_list) argument 637 display_manager_signal_cb(GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, LightDMUserList *user_list) argument 1164 get_property(GDBusProxy *proxy, const gchar *property) argument 1183 get_boolean_property(GDBusProxy *proxy, const gchar *property) argument 1204 get_string_property(GDBusProxy *proxy, const gchar *property) argument 1230 get_string_array_property(GDBusProxy *proxy, const gchar *property) argument [all...] |
/vbox/src/libs/libxml2-2.6.31/ |
H A D | nanoftp.c | 146 static char *proxy = NULL; /* the proxy name if any */ variable 147 static int proxyPort = 0; /* the proxy port if any */ 148 static char *proxyUser = NULL; /* user for proxy authentication */ 149 static char *proxyPasswd = NULL;/* passwd for proxy authentication */ 182 * Currently it just checks for proxy informations, 228 * Cleanup the FTP protocol layer. This cleanup proxy informations. 233 if (proxy != NULL) { 234 xmlFree(proxy); 235 proxy [all...] |
H A D | nanohttp.c | 162 static char *proxy = NULL; /* the proxy name if any */ variable 163 static int proxyPort; /* the proxy port if any */ 209 * Currently it just checks for proxy informations 227 if (proxy == NULL) { 255 if (proxy != NULL) { 256 xmlFree(proxy); 257 proxy = NULL; 325 * @URL: The proxy URL used to initialize the proxy contex [all...] |
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsPipe3.cpp | 830 nsCOMPtr<nsIInputStreamCallback> proxy; local 832 nsresult rv = NS_NewInputStreamReadyEvent(getter_AddRefs(proxy), 835 callback = proxy; 1195 nsCOMPtr<nsIOutputStreamCallback> proxy; local 1197 nsresult rv = NS_NewOutputStreamReadyEvent(getter_AddRefs(proxy), 1200 callback = proxy;
|
/vbox/src/VBox/Main/src-all/ |
H A D | EventImpl.cpp | 1464 ComPtr<IEventListener> proxy; local 1465 rc = createProxyListener(aListener, proxy.asOutParam()); 1474 /* Register active proxy listener on real event source */ 1475 rc = es->RegisterListener(proxy, ComSafeArrayInArg(aInterested), TRUE); 1497 ComPtr<IEventListener> proxy; local 1498 rc = getProxyListener(aListener, proxy.asOutParam()); 1506 rc = es->UnregisterListener(proxy); 1558 ComObjPtr<ProxyEventListener> proxy; local 1560 HRESULT rc = proxy.createObject(); 1561 ComAssertMsgRet(SUCCEEDED(rc), ("Could not create proxy ( [all...] |
/vbox/src/VBox/Main/webservice/jaxlibs/ |
H A D | jaxws-rt.jar | META-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ... |
H A D | jaxb-impl.jar | META-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/bind/ ... |
H A D | jaxb-xjc.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ... |