HomeSort by relevance Sort by last modified time
    Searched refs:Request (Results 101 - 125 of 198) sorted by null

1 2 3 45 6 7 8

  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageFactoryImpl.java 93 * Creates a new Request message of type specified by the method paramater,
94 * containing the URI of the Request, the mandatory headers of the message
121 public Request createRequest(javax.sip.address.URI requestURI,
150 * Creates a new Request message of type specified by the method paramater,
151 * containing the URI of the Request, the mandatory headers of the message
178 public Request createRequest(URI requestURI, String method,
188 + ", unable to create the request", 0);
208 * Creates a new Request message of type specified by the method paramater,
209 * containing the URI of the Request, the mandatory headers of the message.
210 * This new Request does not contain a body
    [all...]
SIPResponse.java 58 import javax.sip.message.Request;
129 retval = "Bad request";
161 retval = "Request timeout";
173 retval = "Request entity too large";
177 retval = "Request-URI too large";
225 retval = "Request Terminated";
238 retval = "Request Pending";
290 retval = "Conditional request failed";
432 * Encode the SIP Request as a string.
628 if (method.equals( Request.ACK ) )
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 183 VALUE Termination-Action RADIUS-Request 1
195 VALUE Acct-Terminate-Cause User-Request 1
204 VALUE Acct-Terminate-Cause NAS-Request 10
212 VALUE Acct-Terminate-Cause Host-Request 18
  /external/webkit/Source/WebCore/inspector/front-end/
CookieParser.js 57 this._addCookie(kv, WebInspector.Cookie.Type.Request);
208 Request: 0,
  /frameworks/volley/src/com/android/volley/toolbox/
ImageRequest.java 22 import com.android.volley.Request;
31 * A canned request for getting an image at a given URL and calling
34 public class ImageRequest extends Request<Bitmap> {
53 * Creates a new image request, decoding to a maximum specified width and
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cciss_ioctl.h 168 RequestBlock_struct Request;
176 RequestBlock_struct Request;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cciss_ioctl.h 168 RequestBlock_struct Request;
176 RequestBlock_struct Request;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cciss_ioctl.h 168 RequestBlock_struct Request;
176 RequestBlock_struct Request;
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 143 // Check if this request has already created a
159 // Discard the duplicate request if a
161 // to handle the request statelessly, then the listener
164 // you to handle the request statefully or statelessly.
180 if (sipRequest.getMethod().equals(Request.ACK)
204 // request comes along it will not get assigned a
263 .equals(Request.ACK)) {
295 * If the response for a request within a dialog is a 481
296 * (Call/Transaction Does Not Exist) or a 408 (Request
316 * INVITE request due to a forking proxy. Each response i
    [all...]
SipProviderImpl.java 77 import javax.sip.message.Request;
272 * @see javax.sip.SipProvider#getNewClientTransaction(javax.sip.message.Request)
274 public ClientTransaction getNewClientTransaction(Request request)
276 if (request == null)
277 throw new NullPointerException("null request");
281 SIPRequest sipRequest = (SIPRequest) request;
284 "Transaction already assigned to request");
285 if ( sipRequest.getMethod().equals(Request.ACK)) {
286 throw new TransactionUnavailableException ("Cannot create client transaction for " + Request.ACK)
872 SIPRequest request = (SIPRequest) sipClientTx.getRequest(); local
    [all...]
SipStackImpl.java 69 import javax.sip.message.Request;
164 * : If the request has no tag in the To header field, the UAS core MUST check
165 * the request against ongoing transactions. If the From tag, Call-ID, and CSeq
166 * exactly match those associated with an ongoing transaction, but the request
179 * controlled as follows : If the previous in-DIALOG request was an invite
307 * retransmitted request if the original request contained a timestamp. This is
338 * the state of INVITE when you send the CANCEL request. Hence you can CANCEL an
350 * controlled as follows : If the previous in-DIALOG request was an invite
671 if (em.equalsIgnoreCase(Request.BYE
    [all...]
  /frameworks/base/core/java/android/net/http/
ConnectionThread.java 78 // next request starts.
87 Request request; local
89 /* Get a request to process */
90 request = mRequestFeeder.getRequest();
93 if (request == null) {
108 if (HttpLog.LOGV) HttpLog.v("ConnectionThread: new request " +
109 request.mHost + " " + request );
112 request.mHost)
    [all...]
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...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultRouter.java 59 * request and had run out of othe options, then it calls this method to figure
60 * out where to send the request. The default router implements a simple
69 * <li> If the request contains one or more Route headers, use the URI of the
70 * topmost Route header as next hop, possibly modifying the request in the
74 * <li> Otherwise, use the request URI as next hop. If the request URI is not a
75 * SIP URI, call {@link javax.sip.address.Router#getNextHop(Request)} provided
84 * modifications will be made to the request:
86 * <li>The implementation places the Request-URI into the Route header field as
89 * the Request-URI and removes that value from the Route header field
    [all...]
SIPTransaction.java 56 import javax.sip.message.Request;
107 * INVITE request retransmit interval, for UDP only
186 // Original request that is being handled by this transaction
215 // Method of the Request used to create the transaction.
218 // Sequence number of request used to create the transaction
236 // Hang on to these - we clear out the request URI after
369 * Sets the request message that this transaction handles.
372 * Request being handled.
389 // original request can be released later.
423 * Gets the request being handled by this transaction
    [all...]
SIPTransactionStack.java 78 import javax.sip.message.Request;
187 * Internal router. Use this for all sip: request routing.
232 * Request factory interface (to be provided by the application)
237 * Router to determine where to forward the request.
316 // request. Default is "infinity". This property allows
414 dialogCreatingMethods.add(Request.REFER);
415 dialogCreatingMethods.add(Request.INVITE);
416 dialogCreatingMethods.add(Request.SUBSCRIBE);
431 // Close the request socket after infinite time.
589 if (extensionMethod.equals(Request.NOTIFY))
    [all...]
  /packages/apps/Browser/src/com/android/browser/
DownloadHandler.java 56 * @param privateBrowsing If the request is coming from a private browsing tab.
140 * @param privateBrowsing If the request is coming from a private browsing tab.
188 final DownloadManager.Request request; local
190 request = new DownloadManager.Request(uri);
195 request.setMimeType(mimetype);
198 request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, filename);
201 request.allowScanningByMediaScanner();
202 request.setDescription(webAddress.getHost())
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelperImpl.java 48 import javax.sip.message.Request;
135 Request reoriginatedRequest = null;
137 * If the challenged request is part of a Dialog and the
138 * Dialog is confirmed the re-originated request should be
139 * generated as an in-Dialog request.
144 reoriginatedRequest = (Request) challengedRequest.clone();
147 * Re-originate the request by consulting the dialog. In particular
148 * the route set could change between the original request and the
167 // remove the branch id so that we could use the request in a new
190 // Remove all authorization headers from the request (we'll re-add the
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
ActionBatch.java 20 import android.app.DownloadManager.Request;
147 final Request request = new Request(uri); local
166 DownloadManagerCompatUtils.setAllowedOverMetered(request, allowOverMetered);
168 request.setAllowedNetworkTypes(Request.NETWORK_WIFI);
170 request.setAllowedOverRoaming(res.getBoolean(R.bool.allow_over_roaming));
172 request.setTitle(mWordList.mDescription);
173 request.setNotificationVisibility
    [all...]
UpdateHandler.java 21 import android.app.DownloadManager.Request;
220 final Request metadataRequest = new Request(Uri.parse(metadataUri + disambiguator));
221 Utils.l("Request =", metadataRequest);
232 metadataRequest.setAllowedNetworkTypes(Request.NETWORK_WIFI);
242 ? Request.VISIBILITY_VISIBLE : Request.VISIBILITY_HIDDEN);
260 // overwrite the id and request it again. If the old one happens to finish
310 * Registers a download request and flags it as downloading in the metadata table.
314 * It registers the request with the DownloadManager service and also updates the metadat
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_results_uploader.py 92 request = urllib2.Request(url, data, headers)
93 urllib2.urlopen(request)
  /frameworks/volley/tests/src/com/android/volley/toolbox/
HurlStackTest.java 19 import com.android.volley.Request.Method;
39 TestRequest.DeprecatedGet request = new TestRequest.DeprecatedGet(); local
40 assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST);
42 HurlStack.setConnectionParametersForRequest(mMockConnection, request);
48 TestRequest.DeprecatedPost request = new TestRequest.DeprecatedPost(); local
49 assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST);
51 HurlStack.setConnectionParametersForRequest(mMockConnection, request);
57 TestRequest.Get request = new TestRequest.Get(); local
58 assertEquals(request.getMethod(), Method.GET);
60 HurlStack.setConnectionParametersForRequest(mMockConnection, request);
66 TestRequest.Post request = new TestRequest.Post(); local
75 TestRequest.PostWithBody request = new TestRequest.PostWithBody(); local
84 TestRequest.Put request = new TestRequest.Put(); local
93 TestRequest.PutWithBody request = new TestRequest.PutWithBody(); local
102 TestRequest.Delete request = new TestRequest.Delete(); local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
SDL_main.cpp 204 TInt Request(TInt aService);
289 TInt CSdlAppServ::Request(TInt aService)
303 Request(aService);
304 Request(EAppSrvNoop);
439 gEpocEnv->iAppSrv->Request(CSdlAppServ::EAppSrvStopThread);
514 void EpocSdlEnv::Request(TInt aService)
517 gEpocEnv->iAppSrv->Request(aService);
601 Request(CSdlAppServ::EAppSrvDsaStatus);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadReceiver.java 19 import static android.app.DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED;
20 import static android.app.DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_ONLY_COMPLETION;
DownloadNotifier.java 19 import static android.app.DownloadManager.Request.VISIBILITY_VISIBLE;
20 import static android.app.DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED;
21 import static android.app.DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_ONLY_COMPLETION;

Completed in 1752 milliseconds

1 2 3 45 6 7 8