/vbox/src/VBox/Frontends/VirtualBox/src/net/ |
H A D | UINetworkCustomer.cpp | 44 void UINetworkCustomer::createNetworkRequest(const QNetworkRequest &request, UINetworkRequestType type, const QString &strDescription) argument 46 gNetworkManager->createNetworkRequest(request, type, strDescription, this);
|
H A D | UINetworkRequest.cpp | 38 UINetworkRequest::UINetworkRequest(const QNetworkRequest &request, UINetworkRequestType type, const QString &strDescription, argument 45 , m_requests(QList<QNetworkRequest>() << request) 80 /* Remove network-request description from network-manager state-indicator: */ 84 /* Remove network-request widget from network-manager dialog: */ 93 /* Notify particular network-request listeners: */ 107 /* If network-request was canceled: */ 131 /* Notify particular network-request listeners: */ 146 /* Choose next network-request as current: */ 155 /* Notify particular network-request listeners: */ 163 /* Slot to retry network-request [all...] |
H A D | UINetworkManager.cpp | 80 void UINetworkManager::createNetworkRequest(const QNetworkRequest &request, UINetworkRequestType type, const QString &strDescription, argument 83 /* Create network-request: */ 84 UINetworkRequest *pNetworkRequest = new UINetworkRequest(request, type, strDescription, pCustomer, this); 85 /* Prepare created network-request: */ 92 /* Create network-request: */ 94 /* Prepare created network-request: */ 144 /* Prepare listeners for network-request: */ 154 /* Add network-request into map: */ 160 /* Delete network-request from map: */ 167 /* Get all the request ID [all...] |
H A D | UIUpdateManager.cpp | 166 /* Prepare network request: */ 191 /* Send GET request: */ 192 QNetworkRequest request; local 193 request.setUrl(url); 194 request.setRawHeader("User-Agent", strUserAgent.toAscii()); 195 createNetworkRequest(request, UINetworkRequestType_GET_Our, tr("Checking for a new VirtualBox version..."));
|
H A D | UINetworkReply.cpp | 52 UINetworkReplyPrivateThread(const QNetworkRequest &request); 81 static int applyRawHeaders(RTHTTP pHttp, const QList<QByteArray> &headers, const QNetworkRequest &request); 82 static int performGetRequestForText(RTHTTP pHttp, const QNetworkRequest &request, QByteArray &reply); 83 static int performGetRequestForBinary(RTHTTP pHttp, const QNetworkRequest &request, QByteArray &reply); 106 UINetworkReplyPrivateThread::UINetworkReplyPrivateThread(const QNetworkRequest &request) argument 107 : m_request(request) 169 /* Perform GET request: */ 194 /* Perform main request: */ 250 int UINetworkReplyPrivateThread::applyRawHeaders(RTHTTP pHttp, const QList<QByteArray> &headers, const QNetworkRequest &request) argument 262 QString strFormattedString = QString("%1: %2").arg(QString(header), QString(request 273 performGetRequestForText(RTHTTP pHttp, const QNetworkRequest &request, QByteArray &reply) argument 290 performGetRequestForBinary(RTHTTP pHttp, const QNetworkRequest &request, QByteArray &reply) argument 611 UINetworkReplyPrivate(const QNetworkRequest &request) argument 709 UINetworkReply(const QNetworkRequest &request, UINetworkRequestType requestType) argument [all...] |
/vbox/src/VBox/Devices/Network/slirp/dnsproxy/ |
H A D | dnsproxy.h | 66 struct request { struct 77 struct request **prev; 78 struct request *next; 86 * time of request creation (poor man's weak reference). 91 int nbyte; /* length of dns request */ 92 char byte[1]; /* copy of original request */ 130 void hash_add_request(PNATState, struct request *); 131 void hash_remove_request(PNATState, struct request *); 132 struct request *hash_find_request(PNATState, unsigned short);
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/linux/ |
H A D | linux.c | 39 struct linux_device_request *request; local 47 list_for_each_entry(request, &linux_device_requests, list) { 57 if ((rc = strcmp(driver->name, request->driver)) == 0) 62 printf("Linux driver '%s' not found\n", request->driver); 76 if (driver->probe(device, request) == 0) {
|
H A D | tap.c | 185 /** Handle a device request for the tap driver */ 186 static int tap_probe(struct linux_device *device, struct linux_device_request *request) argument 209 if_setting = linux_find_setting("if", &request->settings); 222 linux_apply_settings(&request->settings, &netdev->settings.settings);
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/x86/core/linux/ |
H A D | linux_api.c | 60 int linux_ioctl ( int fd, int request, ... ) { argument 64 va_start ( list, request ); 68 return linux_syscall ( __NR_ioctl, fd, request, arg );
|
/vbox/src/VBox/Devices/PC/ipxe/src/hci/ |
H A D | linux_args.c | 165 struct linux_device_request *request; local 171 list_for_each_entry_safe(request, rtmp, &linux_device_requests, list) { 172 list_for_each_entry_safe(setting, stmp, &request->settings, list) { 176 list_del(&request->list); 177 free(request);
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | ocsp.h | 39 /** An OCSP request */ 74 struct ocsp_request request; member in struct:ocsp_check
|
/vbox/src/VBox/Devices/PC/ipxe/src/tests/ |
H A D | ocsp_test.c | 40 * -reqout request.der -respout response.der 70 const void *request; member in struct:ocsp_test 71 /** Length of request */ 99 .request = name ## _request, \ 1414 * Report OCSP request construction test result 1419 DBGC ( (test), "OCSPTEST %p expected request:\n", (test) ); \ 1420 DBGC_HDA ( (test), 0, (test)->request, (test)->request_len ); \ 1421 ok ( (test)->ocsp->request.builder.len == (test)->request_len );\ 1422 ok ( memcmp ( (test)->ocsp->request.builder.data, \ 1423 (test)->request, (tes [all...] |
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | parallel.c | 170 parallel_device_control(RD_NTHANDLE handle, uint32 request, STREAM in, STREAM out) argument 172 if ((request >> 16) != FILE_DEVICE_PARALLEL) 176 request >>= 2; 177 request &= 0xfff; 179 printf("PARALLEL IOCTL %d: ", request); 181 switch (request) 188 unimpl("UNKNOWN IOCTL %d\n", request);
|
H A D | disk.c | 588 /* each request is 24 bytes */ 1392 disk_device_control(RD_NTHANDLE handle, uint32 request, STREAM in, STREAM out) argument 1395 if (((request >> 16) != 20) && ((request >> 16) != 9)) 1398 if (((request >> 16) != 20) || ((request >> 16) != 9)) 1403 request >>= 2; 1404 request &= 0xfff; 1406 printf("DISK IOCTL %d\n", request); 1408 switch (request) [all...] |
H A D | rdpdr.c | 82 /* If select() times out, the request for the device with handle g_min_timeout_fd is aborted */ 92 /* Used to store incoming io request, until they are ready to be completed */ 153 /* Add a new io request to the table containing pending io requests so it won't block rdesktop */ 357 request, local 513 /* Add request to table */ 694 in_uint32_le(s, request); 710 status = fns->device_control(file, request, s, &out); 883 /* Add file descriptors of pending io request to select() */ 907 /* Check if io request timeout is smaller than current (but not 0). */ 1220 /* Abort a pending io request fo [all...] |
H A D | scard.h | 168 uint32 request; member in struct:_TSCThreadData
|
/vbox/src/VBox/HostServices/SharedClipboard/ |
H A D | x11-clipboard.cpp | 44 /** The currently pending request for data from VBox. NULL if there is 45 * no request pending. The protocol for completing a request is to grab 48 * request is to grab the critical section and set pReq to NULL. 49 * It is an error if a request arrives while another one is pending, and 165 /* If there is a currently pending request, release it immediately. */ 194 /** Structure describing a request for clipoard data from the guest. */ 248 * Complete a request from VBox for the X11 clipboard data. The data should 249 * be written to the buffer provided in the initial request. 250 * @param pCtx request contex 356 VBOXCLIPBOARDREQFROMVBOX request = { NULL, 0, 0, NIL_RTSEMEVENT }; local [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | layer.c | 56 ** request for connection will be layered as well, accept one request, echo 210 PRInt32 rv, readin = 0, request = 0; local 211 rv = lo->methods->recv(lo, &request, sizeof(request), flags, timeout); 213 logFile, "MyRecv sending permission for %d bytes\n", request); 217 logFile, "MyRecv received permission request for %d bytes\n", request); 219 lo, &request, sizeof(request), flag 245 PRInt32 rv, wroteout = 0, request; local [all...] |
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/macplugin/ |
H A D | mac_xpidl.cpp | 99 long request; local 100 if (CWGetPluginRequest(context, &request) != cwNoErr) 106 /* dispatch on compiler request */ 107 switch (request) {
|
H A D | mac_xpt_linker.cpp | 102 long request; local 103 if (CWGetPluginRequest(context, &request) != cwNoErr) 109 /* dispatch on linker request */ 110 switch (request) {
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/ |
H A D | SysCalls.c | 968 unsigned long request, 976 va_start(argp, request); 981 if(request == FIODLEX) { 986 else if(request == FIONDLEX) { 993 retval = filp->f_ops->fo_ioctl(filp, request, argp); 1039 file is less than nbyte, if the read() request was interrupted by a 966 ioctl( int fd, unsigned long request, ... ) argument
|
/vbox/src/VBox/Main/src-client/ |
H A D | RemoteUSBBackend.cpp | 42 * submit asynchronous RDP request and return success immediately. 44 * On actual completion of each request, the status will be saved as 56 * the timeout is -1, and the request is expected to be processed synchronously. 59 * device description and when such request are submitted, just return 154 /* Called by VRDP server when the client responds to a request on USB channel. */ 200 Log(("USBClientResponseCallback: WARNING: response to a request %d is not expected!!!\n", code)); 866 /* Send a request for device list. */ 1051 LogRel(("VRDP: ERROR: invalid remote USB negotiate request packet size %d.\n", cbRet)); 1076 LogRel(("VRDP: ERROR: invalid remote USB negotiate request packet size %d.\n", cbRet)); 1110 void RemoteUSBBackend::request(voi function in class:RemoteUSBBackend [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/net/ |
H A D | fcoe.c | 559 * Send FIP VLAN request 569 } __attribute__ (( packed )) *request; local 573 iobuf = alloc_iob ( MAX_LL_HEADER_LEN + sizeof ( *request ) ); 578 /* Construct VLAN request */ 579 request = iob_put ( iobuf, sizeof ( *request ) ); 580 memset ( request, 0, sizeof ( *request ) ); 581 request->hdr.version = FIP_VERSION; 582 request [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
H A D | myri10ge.c | 254 mcp_kreq_ether_recv_t *request; local 264 request = &priv->receive_post_ring[receives_posted 266 request->addr_high = 0; 268 request->addr_low = htonl ( virt_to_bus ( iob->data ) );
|
/vbox/src/VBox/NetworkServices/NAT/ |
H A D | pxdns.c | 70 struct request; 102 struct request *timeout_list[TIMEOUT]; 106 struct request *request_hash[1 << HASHSIZE]; 110 struct request { struct 112 * Request ID that we use in relayed request. 117 * pxdns::generation used for this request 127 * PCB from which we have received this request. lwIP doesn't 134 * Client this request is from and its original request ID. 143 struct request **pprev_has [all...] |