HomeSort by relevance Sort by last modified time
    Searched refs:request (Results 501 - 525 of 1669) sorted by null

<<21222324252627282930>>

  /external/smack/src/org/jivesoftware/smackx/workgroup/user/
Workgroup.java 223 * A user cannot request to join the queue again if already in the queue. Therefore,
242 * request to join the queue.
260 * A user cannot request to join the queue again if already in the queue. Therefore,
276 * @param answerForm the completed form the send for the join request.
279 * request to join the queue.
297 * A user cannot request to join the queue again if already in the queue. Therefore,
316 * request to join the queue.
319 // If already in the queue ignore the join request.
358 * A user cannot request to join the queue again if already in the queue. Therefore,
377 * request to join the queue.
663 ChatSettings request = new ChatSettings(); local
716 OfflineSettings request = new OfflineSettings(); local
744 SoundSettings request = new SoundSettings(); local
772 WorkgroupProperties request = new WorkgroupProperties(); local
801 WorkgroupProperties request = new WorkgroupProperties(); local
    [all...]
  /external/svox/pico/compat/src/com/android/tts/compat/
CompatTtsService.java 118 protected void onSynthesizeText(SynthesisRequest request, SynthesisCallback callback) {
125 String lang = request.getLanguage();
126 String country = request.getCountry();
127 String variant = request.getVariant();
135 int speechRate = request.getSpeechRate();
143 int pitch = request.getPitch();
151 if (mNativeSynth.speak(request, callback) != TextToSpeech.SUCCESS) {
  /external/webkit/Source/WebCore/storage/
IDBTransaction.cpp 106 void IDBTransaction::registerRequest(IDBRequest* request)
108 m_childRequests.add(request);
111 void IDBTransaction::unregisterRequest(IDBRequest* request)
113 // If we aborted the request, it will already have been removed.
114 m_childRequests.remove(request);
120 IDBRequest* request = *m_childRequests.begin(); local
121 m_childRequests.remove(request);
122 request->abort();
136 // get a handle to us or any child request object and any of those have
165 // FIXME: Technically we can suspend before the first request is schedul
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
JavaNetHttpHelper.java 59 * Executes a GET request and returns the response content.
61 * @param request Request.
67 public String get(GetRequest request) throws IOException, HttpException {
68 return get(request.getUrl(), request.getHeaders());
72 * Executes a GET request and returns the response content.
74 * @param url Request URI.
75 * @param requestHeaders Request headers.
97 public String post(PostRequest request) throws IOException, HttpException
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
proxy_error_handler.js 48 * Handle request messages from the popup.
50 * @param {!{type:string}} request The external request to answer.
52 * the request.
56 handleOnRequest_: function(request, sender, sendResponse) {
57 if (request.type === 'getError') {
59 } else if (request.type === 'clearError') {
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 41 * Methods for an OAuth consumer to request tokens from a service provider.
43 * This class can also be used to request access to protected resources, in some
58 * handled at the HTTP level, if the second request must carry another OAuth
61 * the redirected request to be signed.
84 * Get a fresh request token from the service provider.
91 * request token.
101 * Get a fresh request token from the service provider.
108 * request token.
120 /** Get a fresh request token from the service provider.
127 * request token
220 OAuthMessage request = accessor.newRequestMessage(httpMethod, url, local
    [all...]
  /external/chromium/chrome/browser/history/
history.h 81 // only invoked if the request was not canceled and returned true from
94 // This service is thread safe. Each request callback is invoked in the
95 // thread that made the request.
319 // if the request is not canceled.
354 // Request the top |result_count| most visited URLs and the chain of redirects
364 // Request the |result_count| most visited URLs and the chain of
373 // Implemented by consumers to get thumbnail data. Called when a request for
374 // the thumbnail data is complete. Once this callback is made, the request
383 // database or the request will be ignored.
422 // Begins a history request to create a new persistent entry for a download
    [all...]
  /external/chromium/net/server/
http_server.cc 42 const HttpServerRequestInfo& request,
45 request.headers.find(header_name);
46 if (it != request.headers.end())
72 const HttpServerRequestInfo& request) {
77 std::string key1 = GetHeaderValue(request, "Sec-WebSocket-Key1");
78 std::string key2 = GetHeaderValue(request, "Sec-WebSocket-Key2");
86 memcpy(data + 8, &request.data[0], 8);
91 std::string origin = GetHeaderValue(request, "Origin");
92 std::string host = GetHeaderValue(request, "Host");
93 std::string location = "ws://" + host + request.path
379 HttpServerRequestInfo request; local
    [all...]
  /frameworks/native/libs/utils/
Looper.cpp 162 int ident = response.request.ident;
164 int fd = response.request.fd;
166 void* data = response.request.data;
313 if (response.request.ident == ALOOPER_POLL_CALLBACK) {
314 int fd = response.request.fd;
316 void* data = response.request.data;
319 this, response.request.callback.get(), fd, events, data);
321 int callbackResult = response.request.callback->handleEvent(fd, events, data);
327 response.request.callback.clear();
389 void Looper::pushResponse(int events, const Request& request)
427 Request request; local
    [all...]
  /external/v8/src/
d8.js 292 // Converts a text command to a JSON request.
303 // If the very first character is a { assume that a JSON request have been
304 // entered as a command. Converting that to a JSON request is trivial.
314 cmd_line = 'break'; // Not in debugger mode, break with a frame request.
529 this.type = 'request';
582 var request = this.createRequest(command);
583 request.arguments = {};
584 request.arguments.start = start_index;
585 request.arguments.count = lines_to_dump;
587 return request;
    [all...]
  /external/chromium/net/socket/
client_socket_pool_base.cc 24 // disabled, sockets are closed next time a socket request is made.
140 ClientSocketPoolBaseHelper::Request::Request(
162 ClientSocketPoolBaseHelper::Request::~Request() {}
200 // InsertRequestIntoQueue inserts the request into the queue based on
206 const Request* r, RequestQueue* pending_requests) {
214 const ClientSocketPoolBaseHelper::Request*
217 const Request* req = *it;
227 const Request* request)
    [all...]
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceHandleCFNet.cpp 62 CFURLRequestRef request,
143 ResourceRequest request; local
162 request = mutableRequest.get();
166 if (request.isNull())
167 request = cfRequest;
170 if (!request.url().protocolIs("https") && protocolIs(request.httpReferrer(), "https"))
171 request.clearHTTPReferrer();
173 handle->willSendRequest(request, cfRedirectResponse);
175 if (request.isNull()
    [all...]
  /external/chromium/third_party/libevent/
evrpc.c 282 /* let's check that we can parse the request */
283 rpc_state->request = rpc->request_new();
284 if (rpc_state->request == NULL)
290 rpc_state->request, req->input_buffer) == -1) {
291 /* we failed to parse the request; that's a bummer */
295 /* at this point, we have a well formed request, prepare the reply */
322 if (rpc_state->request != NULL)
323 rpc->request_free(rpc_state->request);
350 /* do hook based tweaks to the request */
402 evrpc_request_wrapper_free(struct evrpc_request_wrapper *request)
412 struct evrpc_request_wrapper *request; local
467 struct evrpc_request_wrapper *request = local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 37 Base class for our page-based request handlers that contains
83 data = ContactForm(data=self.request.POST)
102 id = int(self.request.get('id'))
108 id = int(self.request.get('id'))
110 data = ContactForm(data=self.request.POST, instance=contact)
122 """Processes delete contact request."""
125 id = int(self.request.get('id'))
142 id = int(self.request.get('id'))
153 id = int(self.request.get('id'))
155 #avatar = images.resize(self.request.get("avatar"), 128, 128
    [all...]
  /external/chromium/chrome/browser/sessions/
base_session_service.cc 258 InternalGetCommandsRequest* request,
260 scoped_refptr<InternalGetCommandsRequest> request_wrapper(request);
261 AddRequest(request, consumer);
266 backend()->ReadLastSessionCommands(request);
268 return request->handle();
273 InternalGetCommandsRequest* request,
275 scoped_refptr<InternalGetCommandsRequest> request_wrapper(request);
276 AddRequest(request, consumer);
283 backend()->ReadCurrentSessionCommands(request);
285 return request->handle()
    [all...]
  /external/chromium/net/url_request/
url_request_ftp_job.cc 22 URLRequestFtpJob::URLRequestFtpJob(URLRequest* request)
23 : URLRequestJob(request),
29 context_(request->context()),
34 URLRequestJob* URLRequestFtpJob::Factory(URLRequest* request,
38 int port = request->url().IntPort();
39 if (request->url().has_port() &&
41 return new URLRequestErrorJob(request, ERR_UNSAFE_PORT);
43 DCHECK(request->context());
44 DCHECK(request->context()->ftp_transaction_factory());
45 return new URLRequestFtpJob(request);
    [all...]
  /external/qemu-pc-bios/bochs/bios/
notes 34 transferred, the drive sets the data-request bit to 1, sets
37 the data, the drive sets the data-request bit and the busy bit to 0.
39 the first sector of data, the drive sets the data-request bit to 0,
41 transferred, the drive sets the data-request bit to 1, the busy bit to 0,
43 the drive sets the data-request bit and busy bit to 0.
  /external/speex/libspeex/
speex.c 180 EXPORT int speex_encoder_ctl(void *state, int request, void *ptr)
182 return (*((SpeexMode**)state))->enc_ctl(state, request, ptr);
185 EXPORT int speex_decoder_ctl(void *state, int request, void *ptr)
187 return (*((SpeexMode**)state))->dec_ctl(state, request, ptr);
192 int nb_mode_query(const void *mode, int request, void *ptr)
196 switch (request)
210 speex_warning_int("Unknown nb_mode_query request: ", request);
218 EXPORT int speex_lib_ctl(int request, void *ptr)
220 switch (request)
    [all...]
  /external/valgrind/main/memcheck/tests/
holey_buffer_too_small.stderr.exp 4 Uninitialised byte(s) found during client check request
13 Unaddressable byte(s) found during client check request
22 Unaddressable byte(s) found during client check request
31 Unaddressable byte(s) found during client check request
40 Unaddressable byte(s) found during client check request
  /external/webkit/Source/WebCore/loader/
FrameLoader.cpp 261 bool FrameLoader::canHandleRequest(const ResourceRequest& request)
263 return m_client->canHandleRequest(request);
1437 policyChecker()->checkNewWindowPolicy(NavigationAction(request.url(), NavigationTypeOther), FrameLoader::callContinueLoadAfterNewWindowPolicy, request, 0, frameName, this); local
1635 ResourceRequest& request = loader->request(); local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
FrameLoaderClientImpl.cpp 280 const ResourceRequest& request)
283 WrappedResourceRequest webreq(request);
289 // If the request being loaded by |loader| is a frame, update the ResourceType.
298 static void setTargetTypeFromLoader(ResourceRequest& request, DocumentLoader* loader)
306 request.setTargetType(type);
311 DocumentLoader* loader, unsigned long identifier, ResourceRequest& request,
315 // We want to distinguish between a request for a document to be loaded into
317 setTargetTypeFromLoader(request, loader);
321 && request.httpMethod() == "POST"
323 request.setCachePolicy(ReturnCacheDataDontLoad)
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepServer.java 141 SnepMessage request; local
143 request = messenger.getMessage();
155 if (((request.getVersion() & 0xF0) >> 4) != SnepMessage.VERSION_MAJOR) {
158 } else if (request.getField() == SnepMessage.REQUEST_GET) {
159 messenger.sendMessage(callback.doGet(request.getAcceptableLength(),
160 request.getNdefMessage()));
161 } else if (request.getField() == SnepMessage.REQUEST_PUT) {
162 if (DBG) Log.d(TAG, "putting message " + request.toString());
163 messenger.sendMessage(callback.doPut(request.getNdefMessage()));
165 if (DBG) Log.d(TAG, "Unknown request (" + request.getField() +")")
    [all...]
  /frameworks/base/media/java/android/media/
MediaPlayer.java 614 * Create a request parcel which can be routed to the native media
620 * @return A parcel suitable to hold a request for the native
632 * parcels for the request and reply. Both payloads' format is a
637 * @param request Parcel with the data for the extension. The
645 public void invoke(Parcel request, Parcel reply) {
646 int retcode = native_invoke(request, reply);
749 Parcel request = Parcel.obtain(); local
1268 Parcel request = newRequest(); local
1691 Parcel request = Parcel.obtain(); local
1845 Parcel request = Parcel.obtain(); local
1913 Parcel request = Parcel.obtain(); local
    [all...]
  /hardware/libhardware/tests/camera2/
camera2.cpp 423 camera_metadata_t *request; local
424 request = allocate_camera_metadata(20, 2000);
427 add_camera_metadata_entry(request,
431 add_camera_metadata_entry(request,
436 add_camera_metadata_entry(request,
440 add_camera_metadata_entry(request,
444 add_camera_metadata_entry(request,
448 add_camera_metadata_entry(request,
453 add_camera_metadata_entry(request,
458 std::cout << "Input request: " << std::endl
557 camera_metadata_t *request; local
676 camera_metadata_t *request = NULL; local
726 camera_metadata_t *request; local
    [all...]

Completed in 1306 milliseconds

<<21222324252627282930>>