HomeSort by relevance Sort by last modified time
    Searched refs:request (Results 351 - 375 of 816) sorted by null

<<11121314151617181920>>

  /external/webkit/WebKit/win/
WebDownloadCFNet.cpp 63 static CFURLRequestRef willSendRequestCallback(CFURLDownloadRef download, CFURLRequestRef request, CFURLResponseRef redirectionResponse, const void *clientInfo);
74 void WebDownload::init(ResourceHandle* handle, const ResourceRequest& request, const ResourceResponse& response, IWebDownloadDelegate* delegate)
87 m_request.adoptRef(WebMutableURLRequest::createInstance(request));
88 m_download.adoptCF(CFURLDownloadCreateAndStartWithLoadingConnection(0, connection, request.cfURLRequest(), response.cfURLResponse(), &client));
94 LOG_ERROR("WebDownload - Failed to create WebDownload from existing connection (%s)", request.url().string().utf8().data());
96 LOG(Download, "WebDownload - Created WebDownload %p from existing connection (%s)", this, request.url().string().utf8().data());
110 ResourceRequest request(url);
111 CFURLRequestRef cfRequest = request.cfURLRequest();
116 m_request.adoptRef(WebMutableURLRequest::createInstance(request));
128 /* [in] */ IWebURLRequest* request,
    [all...]
WebDownloadCurl.cpp 61 void WebDownload::init(ResourceHandle* handle, const ResourceRequest& request, const ResourceResponse& response, IWebDownloadDelegate* delegate)
74 /* [in] */ IWebURLRequest* request,
  /frameworks/base/core/java/android/view/inputmethod/
InputConnection.java 129 * @param request Description of how the text should be returned.
136 public ExtractedText getExtractedText(ExtractedTextRequest request,
InputConnectionWrapper.java 61 public ExtractedText getExtractedText(ExtractedTextRequest request,
63 return mTarget.getExtractedText(request, flags);
  /hardware/ti/wlan/wl1271/stad/src/AirLink_Managment/
spectrumMngmntMgr.h 78 TI_STATUS measurementMgr_dot11hBuildReport(TI_HANDLE hMeasurementMgr, MeasurementRequest_t request, TMeasurementTypeReply * reply);
  /hardware/ti/wlan/wl1271/stad/src/Application/
roamingMngr_manualSM.c 47 * beacon Missed or External request.
48 * In each Internal Roaming request, scan is performed and selection for
225 apConn_connRequest_t request; local
227 request.dataBufLength = 0;
228 request.requestType = AP_CONNECT_RETAIN_CURR_AP;
229 apConn_connectToAP(pRoamingMngr->hAPConnection, NULL , &request , TI_FALSE);
  /packages/apps/Browser/src/com/android/browser/
DownloadTouchIcon.java 74 HttpGet request = new HttpGet(url); local
80 HttpResponse response = client.execute(request);
94 request.abort();
96 request.abort();
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/AirLink/inc/
spectrumMngmntMgr.h 79 TI_STATUS measurementMgr_dot11hBuildReport(TI_HANDLE hMeasurementMgr, MeasurementRequest_t request, measurement_typeReply_t * reply);
  /system/wlan/ti/wilink_6_1/stad/src/AirLink_Managment/
spectrumMngmntMgr.h 78 TI_STATUS measurementMgr_dot11hBuildReport(TI_HANDLE hMeasurementMgr, MeasurementRequest_t request, TMeasurementTypeReply * reply);
  /system/wlan/ti/wilink_6_1/stad/src/Application/
roamingMngr_manualSM.c 47 * beacon Missed or External request.
48 * In each Internal Roaming request, scan is performed and selection for
225 apConn_connRequest_t request; local
227 request.dataBufLength = 0;
228 request.requestType = AP_CONNECT_RETAIN_CURR_AP;
229 apConn_connectToAP(pRoamingMngr->hAPConnection, NULL , &request , TI_FALSE);
  /external/chromium/net/http/
http_auth_handler_digest.h 20 const HttpRequestInfo* request,
40 // Hashes are run for every request.
74 // Extract the method and path of the request, as needed by
76 void GetRequestMethodAndPath(const HttpRequestInfo* request,
  /external/chromium/net/socket/
client_socket_pool_base.h 125 class Request {
127 Request(ClientSocketHandle* handle,
134 virtual ~Request() {}
147 DISALLOW_COPY_AND_ASSIGN(Request);
157 const Request& request,
174 // Note that |request| must be heap allocated. If ERR_IO_PENDING is returned,
175 // then ClientSocketPoolBaseHelper takes ownership of |request|.
176 int RequestSocket(const std::string& group_name, const Request* request);
    [all...]
socks_client_socket.cc 41 // A struct holding the essential details of the SOCKS4/4a Server Request.
259 SOCKS4ServerRequest request; local
260 request.version = kSOCKSVersion4;
261 request.command = kSOCKSStreamRequest;
262 request.nw_port = htons(host_request_info_.port());
271 memcpy(&request.ip, &(ipv4_host->sin_addr), sizeof(ipv4_host->sin_addr));
276 memcpy(&request.ip, kInvalidIp, arraysize(kInvalidIp));
281 std::string handshake_data(reinterpret_cast<char*>(&request),
282 sizeof(request));
382 LOG(ERROR) << "SOCKS request rejected or failed"
    [all...]
  /external/chromium/net/url_request/
url_request_context.h 111 // be added to the request. The cookie might still be modified though.
112 virtual bool InterceptRequestCookies(const URLRequest* request,
119 virtual bool InterceptResponseCookie(const URLRequest* request,
142 // The charset of the referrer where this request comes from. It's not
  /external/kernel-headers/original/linux/
ptrace.h 84 extern long arch_ptrace(struct task_struct *child, long request, long addr, long data);
93 extern int ptrace_request(struct task_struct *child, long request, long addr, long data);
  /external/speex/libspeex/
modes.h 158 int nb_mode_query(const void *mode, int request, void *ptr);
159 int wb_mode_query(const void *mode, int request, void *ptr);
sb_celp.h 151 int sb_encoder_ctl(void *state, int request, void *ptr);
153 int sb_decoder_ctl(void *state, int request, void *ptr);
  /external/webkit/WebCore/loader/
WorkerThreadableLoader.h 59 static PassRefPtr<WorkerThreadableLoader> create(WorkerContext* workerContext, ThreadableLoaderClient* client, const String& taskMode, const ResourceRequest& request, const ThreadableLoaderOptions& options)
61 return adoptRef(new WorkerThreadableLoader(workerContext, client, taskMode, request, options));
  /external/webkit/WebCore/plugins/
PluginStream.h 60 static PassRefPtr<PluginStream> create(PluginStreamClient* client, Frame* frame, const ResourceRequest& request, bool sendNotification, void* notifyData, const NPPluginFuncs* functions, NPP instance, const PluginQuirkSet& quirks)
62 return adoptRef(new PluginStream(client, frame, request, sendNotification, notifyData, functions, instance, quirks));
  /external/webkit/WebKit/android/jni/
WebCoreFrameBridge.h 61 const WebCore::ResourceRequest& request, bool mainResource,
93 virtual bool canHandleRequest(const WebCore::ResourceRequest& request);
114 * We also check it to determine whether or not to allow webkit to request
  /external/webkit/WebKit/mac/Plugins/Hosted/
HostedNetscapePluginStream.h 50 static PassRefPtr<HostedNetscapePluginStream> create(NetscapePluginInstanceProxy* instance, uint32_t streamID, NSURLRequest *request)
52 return adoptRef(new HostedNetscapePluginStream(instance, streamID, request));
  /external/webkit/WebKit/win/Interfaces/
IWebResourceLoadDelegatePrivate.idl 51 @method webView:didLoadResourceFromMemoryCache:request:response:length:fromDataSource:
52 @param request The request for the resource.
57 - (id)webView:(WebView *)sender didLoadResourceFromMemoryCache:(NSURLRequest *)request response:(NSURLResponse *)response length:(NSInteger)length fromDataSource:(WebDataSource *)dataSource
59 HRESULT didLoadResourceFromMemoryCache([in] IWebView* webView, [in] IWebURLRequest* request, [in] IWebURLResponse* response, [in] UINT length, [in] IWebDataSource* dataSource);
  /frameworks/base/core/java/android/net/http/
AndroidHttpClientConnection.java 249 * Sends the request line and all headers over the connection.
250 * @param request the request whose headers to send.
254 public void sendRequestHeader(final HttpRequest request)
256 if (request == null) {
257 throw new IllegalArgumentException("HTTP request may not be null");
260 this.requestWriter.write(request);
265 * Sends the request entity over the connection.
266 * @param request the request whose entity to send
    [all...]
  /frameworks/base/include/utils/
Looper.h 192 struct Request {
201 Request request; member in struct:android::Looper::Response
214 KeyedVector<int, Request> mRequests; // guarded by mLock
231 Vector<Request> mRequests; // must hold mLock and mPolling must be false to modify
262 void pushResponse(int events, const Request& request);
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractPublicApiTest.java 99 protected DownloadManager.Request getRequest() throws MalformedURLException {
103 protected DownloadManager.Request getRequest(String path) {
104 return new DownloadManager.Request(Uri.parse(path));
107 protected Download enqueueRequest(DownloadManager.Request request) {
108 return new Download(mManager.enqueue(request));

Completed in 1267 milliseconds

<<11121314151617181920>>