HomeSort by relevance Sort by last modified time
    Searched refs:request (Results 926 - 950 of 1458) sorted by null

<<31323334353637383940>>

  /external/kernel-headers/original/linux/mmc/
host.h 68 void (*request)(struct mmc_host *host, struct mmc_request *req); member in struct:mmc_host_ops
mmc.h 15 struct request;
65 struct mmc_request *mrq; /* associated request */
85 struct mmc_request *mrq; /* associated request */
  /external/libnl-headers/netlink/cli/
utils.h 45 #include <netlink/fib_lookup/request.h>
  /external/webkit/Source/JavaScriptCore/jit/
ExecutableAllocator.h 82 inline size_t roundUpAllocationSize(size_t request, size_t granularity)
84 if ((std::numeric_limits<size_t>::max() - granularity) <= request)
88 size_t size = request + (granularity - 1);
90 ASSERT(size >= request);
204 // If the request is large, we just provide a unshared allocator
  /external/webkit/Source/WebKit/gtk/webkit/
webkitdownload.h 73 webkit_download_new (WebKitNetworkRequest *request);
  /external/webkit/Source/WebKit/win/
WebMutableURLRequest.cpp 76 WebMutableURLRequest* WebMutableURLRequest::createInstance(const ResourceRequest& request)
80 instance->m_request = request;
91 WebMutableURLRequest* WebMutableURLRequest::createImmutableInstance(const ResourceRequest& request)
95 instance->m_request = request;
DefaultDownloadDelegate.cpp 199 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::willSendRequest(IWebDownload* download, IWebMutableURLRequest* request,
202 LOG(Download, "DefaultDownloadDelegate %p - willSendRequest %p %p", download, request, redirectResponse);
205 *finalRequest = request;
  /external/webkit/Source/WebKit/wince/
WebView.h 65 void load(const WebCore::ResourceRequest &request);
  /frameworks/base/core/java/android/net/http/
RequestHandle.java 35 * RequestHandle: handles a request session that may include multiple
47 private Request mRequest;
60 * Creates a new request session.
64 InputStream bodyProvider, int bodyLength, Request request) {
79 mRequest = request;
83 * Creates a new request session with a given Connection. This connection
84 * is used during a synchronous load to handle this request.
88 InputStream bodyProvider, int bodyLength, Request request,
    [all...]
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.h 31 const struct timespec *request,
  /hardware/ti/wlan/wl1271/stad/src/AirLink_Managment/
measurementMgr.h 74 MeasurementRequest_t request,
127 /* Request Frame Params */
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
apConnApi.h 65 * \brief Connect to AP request types
217 * \brief Connection Request
220 * Holds the Type of Request needed to establish the Connection,
221 * and a buffer for the case of vendor specific IEs in Association Request Packet
227 apConn_connRequest_e requestType; /** Type of Request to establish connection */
229 TI_CHAR *dataBuf; /** (Optional) attached buffer - can be used in case of vendor specific IEs in Association Request Packet */
355 * \param request - The Connection Request Type: Connect to new AP, current AP (retain to current AP or re-connect)
372 apConn_connRequest_t *request,
  /packages/apps/Nfc/tests/src/com/android/nfc/snep/
SnepBasicTests.java 213 SnepMessage request = new SnepMessage( local
215 client.sendMessage(request);
249 SnepMessage request = new SnepMessage( local
251 client.sendMessage(request);
  /system/core/include/usbhost/
usbhost.h 182 int request,
202 /* Releases all resources associated with the request */
205 /* Submits a read or write request on the specified device */
  /cts/tests/tests/drm/src/android/drm/cts/
DRMTest.java 169 int type, HashMap<String, String> request, String mimeType) throws Exception {
172 for (Iterator it = request.keySet().iterator(); it.hasNext(); ) {
174 String value = request.get(key);
  /development/scripts/app_engine_server/gae_shell/
shell.py 90 unpicklables list property. On each request, before executing the current
175 session_key = self.request.get('session')
206 statement = self.request.get('statement')
228 # use this request's __builtin__, since it changes on each request.
234 session = Session.get(self.request.get('session'))
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbelo.c 298 int eloSendQuery(unsigned char *request, unsigned char* reply, int fd) {
301 if (eloSendPacket(request, fd)) {
302 ok = eloWaitReply(toupper(request[1]), reply, fd);
  /external/webkit/Source/WebCore/inspector/
InspectorInstrumentation.cpp 226 InspectorInstrumentationCookie InspectorInstrumentation::willChangeXHRReadyStateImpl(InspectorAgent* inspectorAgent, XMLHttpRequest* request)
230 if (timelineAgent && request->hasEventListeners(eventNames().readystatechangeEvent)) {
231 timelineAgent->willChangeXHRReadyState(request->url().string(), request->readyState());
340 InspectorInstrumentationCookie InspectorInstrumentation::willLoadXHRImpl(InspectorAgent* inspectorAgent, XMLHttpRequest* request)
344 if (timelineAgent && request->hasEventListeners(eventNames().loadEvent)) {
345 timelineAgent->willLoadXHR(request->url());
397 void InspectorInstrumentation::willSendRequestImpl(InspectorAgent* inspectorAgent, unsigned long identifier, DocumentLoader* loader, ResourceRequest& request, const ResourceResponse& redirectResponse)
400 timelineAgent->willSendResourceRequest(identifier, request);
402 resourceAgent->willSendRequest(identifier, loader, request, redirectResponse)
    [all...]
TimelineRecordFactory.cpp 132 PassRefPtr<InspectorObject> TimelineRecordFactory::createResourceSendRequestData(unsigned long identifier, const ResourceRequest& request)
136 data->setString("url", request.url().string());
137 data->setString("requestMethod", request.httpMethod());
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGText.cpp 185 bool RenderSVGText::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction)
187 PointerEventsHitRules hitRules(PointerEventsHitRules::SVG_TEXT_HITTESTING, request, style()->pointerEvents());
197 return RenderBlock::nodeAtPoint(request, result, (int)localPoint.x(), (int)localPoint.y(), 0, 0, hitTestAction);
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginStream.mm 143 WebNetscapePluginStream::WebNetscapePluginStream(NSURLRequest *request, NPP plugin, bool sendNotification, void* notifyData)
144 : m_requestURL([request URL])
156 , m_request(AdoptNS, [request mutableCopy])
165 ASSERT(core([view webFrame])->document()->securityOrigin()->canDisplay([request URL]));
167 ASSERT([request URL]);
174 if (SecurityOrigin::shouldHideReferrer([request URL], core([view webFrame])->loader()->outgoingReferrer()))
342 // <rdar://problem/4470599> tracks a request for -[NSURLResponse expectedContentLength] to incorporate this logic.
438 // NPP_URLNotify expects the request URL, not the response URL.
  /frameworks/base/services/common_time/
common_time_server.cpp 76 // timeout used when waiting for a response to a WhoIsMaster request
92 // timeout used when waiting for a response to a WhoIsMaster request
637 // retry the WhoIsMaster request
650 // a sync request has timed out, so retry
653 // The master has failed to respond to a sync request for too many
659 // initiate the next sync request
683 const WhoIsMasterRequestPacket* request,
686 // is this request related to this master's timeline?
687 if (request->timelineID != ICommonClock::kInvalidTimelineID &&
688 request->timelineID != mTimelineID
    [all...]
  /frameworks/base/test-runner/src/android/test/mock/
MockContentProvider.java 108 public Bundle call(String method, String request, Bundle args)
110 return MockContentProvider.this.call(method, request, args);
224 public Bundle call(String method, String request, Bundle args) {
  /hardware/ril/mock-ril/src/cpp/
experiments.cpp 66 bool callOnRilRequest(v8::Handle<v8::Context> context, int request,
82 // Create the request
83 v8::Handle<v8::Value> v8RequestValue = v8::Number::New(request);
85 // Create the parameter for the request
88 switch(request) {
108 ALOGD("callOnRilRequest X unknown request");
  /packages/apps/Browser/src/com/android/browser/
GoogleAccountLogin.java 113 HttpPost request = new HttpPost(url); local
117 HttpResponse response = client.execute(request);
146 request.abort();
160 // Check mRunnable in case the request has been canceled. This

Completed in 1793 milliseconds

<<31323334353637383940>>