/external/nist-sip/java/gov/nist/javax/sip/stack/ |
SIPDialog.java | 104 import javax.sip.message.Request; 154 // so when a subsequent request will be sent it will be set and a new message channel can be 203 // The following fields are extracted from the request that created the 323 Request byeRequest = SIPDialog.this.createRequest(Request.BYE); 343 * side. Wait for any ACK retransmissions to finish. Then send out the request. 518 Request byeRequest = SIPDialog.this.createRequest(Request.BYE); 770 // incoming request. 2887 SIPRequest request = this.originalRequest; local [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...] |
/external/webkit/WebCore/loader/ |
HistoryController.cpp | 309 m_currentItem->setFormInfoFromRequest(frameLoader->documentLoader()->request()); 348 m_currentItem->setFormInfoFromRequest(m_frame->loader()->documentLoader()->request()); 496 item->setFormInfoFromRequest(docLoader->request());
|
/frameworks/base/core/tests/coretests/src/android/app/ |
DownloadManagerBaseTest.java | 20 import android.app.DownloadManager.Request; 798 * @param dlRequest the download request id used by Download Manager to track the download. 934 Request request = new Request(uri); local [all...] |
/frameworks/base/media/libmedia/ |
mediaplayer.cpp | 161 status_t MediaPlayer::invoke(const Parcel& request, Parcel *reply) 168 LOGV("invoke %d", request.dataSize()); 169 return mPlayer->invoke(request, reply); 408 LOGW("Attempt to seek to past end of file: request = %d, EOF = %d", msec, mDuration);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
TestActivity.java | 484 public int onConnect(HeaderSet request, HeaderSet reply) { 545 public int onSetPath(HeaderSet request, HeaderSet reply, boolean backup, boolean create) { 550 public int onDelete(HeaderSet request, HeaderSet reply) {
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
PublicApiFunctionalTest.java | 89 RecordedRequest request = takeRequest(); local 90 assertEquals("GET", request.getMethod()); 91 assertEquals(REQUEST_PATH, request.getPath()); 145 takeRequest(); // get the first request out of the queue 389 // if the cancel didn't work, we should get an unexpected request to the HTTP server 443 .setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI)); 575 * 1) Request to REQUEST_PATH with 3xx response redirecting to another URI 576 * 2) Request to REDIRECTED_PATH with interrupted partial response 577 * 3) Resume request to complete download 578 * @return the last request sent to the server, resuming after the interruptio [all...] |
/external/chromium/net/http/ |
http_cache_transaction.cc | 46 // If the request includes one of these request headers, then avoid caching 65 // If the request includes one of these request headers, then avoid reusing 73 // If the request includes one of these request headers, then force our 172 int HttpCache::Transaction::Start(const HttpRequestInfo* request, 175 DCHECK(request); 187 SetRequest(load_log, request); 192 cache_key_ = cache_->GenerateCacheKey(request); [all...] |
http_stream_parser.cc | 39 int HttpStreamParser::SendRequest(const HttpRequestInfo* request, 49 request_ = request; 192 // Record our best estimate of the 'request time' as the time when we send 193 // out the first bytes of the request headers. 474 // a message is dependent on both the request method and the response 475 // status code (section 6.1.1). All responses to the HEAD request method
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_unittest.cc | [all...] |
/development/simulator/wrapsim/ |
DevEvent.c | 166 static int ioctlEvent(FakeDev* dev, int fd, int request, void* argp) 169 unsigned int urequest = (unsigned int) request; 227 wsLog("GLITCH: UNKNOWN ioctl request 0x%x on %s\n",
|
/device/samsung/crespo/alsa-lib/src/hwdep/ |
hwdep.c | 453 * \param request ioctl command 457 int snd_hwdep_ioctl(snd_hwdep_t *hwdep, unsigned int request, void * arg) 460 return hwdep->ops->ioctl(hwdep, request, arg);
|
/external/chromium/net/websockets/ |
websocket.cc | 30 bool WebSocket::Request::is_secure() const { 34 WebSocket::WebSocket(Request* request, WebSocketDelegate* delegate) 37 request_(request), 161 std::string WebSocket::Request::CreateClientHandshakeMessage() const {
|
/external/qemu/hw/ |
usb-hub.c | 206 static int usb_hub_handle_control(USBDevice *dev, int request, int value, 212 switch(request) {
|
usb-msd.c | 213 because annother request may be issued before 230 static int usb_msd_handle_control(USBDevice *dev, int request, int value, 236 switch (request) {
|
/external/v8/test/mjsunit/regress/ |
regress-1081309.js | 76 json = '{"seq":0,"type":"request","command":"backtrace"}'
|
/external/webkit/WebCore/platform/network/win/ |
ResourceHandleWin.cpp | 172 // Need to actually send the request now. 202 ResourceRequest request((StringImpl*) lParam); 204 client()->willSendRequest(this, request, redirectResponse); 217 // End the request. 298 _snprintf(buf, sizeof(buf), "request-complete: result=%p, error=%u\n", 303 // tell the main thread that the request is done
|
/external/webkit/WebKit/chromium/src/ |
ChromeClientImpl.cpp | 221 // The request is empty when we are just being asked to open a blank window. 224 WrappedResourceRequest request(r.resourceRequest()); 225 newView->mainFrame()->loadRequest(request);
|
/external/webkit/WebKit/qt/WebCoreSupport/ |
ChromeClientQt.cpp | 157 Page* ChromeClientQt::createWindow(Frame*, const FrameLoadRequest& request, const WindowFeatures& features) 162 newPage->mainFrame()->load(request.resourceRequest().url());
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
UIDelegate.cpp | 349 /* [in] */ IWebURLRequest *request, 528 /* [in] */ IWebURLRequest *request,
|
UIDelegate.h | 54 /* [in] */ IWebURLRequest *request, 291 /* [in] */ IWebURLRequest *request,
|
/frameworks/base/core/java/com/android/internal/view/ |
IInputConnectionWrapper.java | 105 public void getExtractedText(ExtractedTextRequest request, 108 request, seq, callback));
|
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/ |
cu_cmd.c | 240 OS_802_11_AUTHENTICATION_REQUEST *request; local 330 request = (OS_802_11_AUTHENTICATION_REQUEST *) (buf + sizeof(tiUINT32)); 331 if( request->Flags == OS_802_11_REQUEST_PAIRWISE_ERROR || 332 request->Flags == OS_802_11_REQUEST_GROUP_ERROR) 1857 TIWLAN_DATA_FILTER_REQUEST request; local 1880 TIWLAN_DATA_FILTER_REQUEST request; local [all...] |
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
InputConnectionWrapperTest.java | 265 public ExtractedText getExtractedText(ExtractedTextRequest request, int flags) {
|
/development/scripts/app_engine_server/gae_shell/static/ |
shell.js | 122 * The XmlHttpRequest callback. If the request succeeds, it adds the command 187 // send the request and tell the user.
|