HomeSort by relevance Sort by last modified time
    Searched defs:sendResponse (Results 1 - 25 of 30) sorted by null

1 2

  /external/nist-sip/java/javax/sip/
ServerTransaction.java 6 void sendResponse(Response response)
SipProvider.java 49 void sendResponse(Response response) throws SipException;
  /external/chromium_org/chrome/browser/resources/hangout_services/
thunk.js 6 function(message, sender, sendResponse) {
9 sendResponse({'value': value, 'error': errorMessage});
161 function sendResponse(streamId) {
171 sources, port.sender.tab, sendResponse);
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RespondWithObserver.cpp 77 sendResponse(nullptr);
91 void RespondWithObserver::sendResponse(PassRefPtr<Response> response)
102 sendResponse(nullptr);
114 sendResponse(V8Response::toNative(object));
  /development/tools/axl/
axl.py 49 def sendResponse(self, response):
  /packages/apps/Stk/src/com/android/stk/
ToneDialog.java 52 sendResponse(StkAppService.RES_ID_DONE);
117 sendResponse(StkAppService.RES_ID_END_SESSION);
128 sendResponse(StkAppService.RES_ID_END_SESSION);
143 private void sendResponse(int resId) {
StkDialogActivity.java 48 sendResponse(StkAppService.RES_ID_TIMEOUT);
107 sendResponse(StkAppService.RES_ID_CONFIRM, true);
111 sendResponse(StkAppService.RES_ID_CONFIRM, false);
121 sendResponse(StkAppService.RES_ID_BACKWARD);
168 sendResponse(StkAppService.RES_ID_TIMEOUT);
186 private void sendResponse(int resId, boolean confirmed) {
195 private void sendResponse(int resId) {
196 sendResponse(resId, true);
StkInputActivity.java 79 sendResponse(StkAppService.RES_ID_TIMEOUT);
107 sendResponse(StkAppService.RES_ID_INPUT, input, false);
176 sendResponse(StkAppService.RES_ID_BACKWARD, null, false);
183 private void sendResponse(int resId) {
184 sendResponse(resId, null, false);
187 private void sendResponse(int resId, String input, boolean help) {
222 sendResponse(StkAppService.RES_ID_END_SESSION);
226 sendResponse(StkAppService.RES_ID_INPUT, "", true);
StkMenuActivity.java 73 sendResponse(StkAppService.RES_ID_TIMEOUT);
119 sendResponse(StkAppService.RES_ID_MENU_SELECTION, item.id, false);
138 sendResponse(StkAppService.RES_ID_BACKWARD);
226 sendResponse(StkAppService.RES_ID_END_SESSION);
237 sendResponse(StkAppService.RES_ID_MENU_SELECTION, stkItem.id, true);
274 sendResponse(StkAppService.RES_ID_MENU_SELECTION, stkItem.id, true);
364 private void sendResponse(int resId) {
365 sendResponse(resId, 0, false);
368 private void sendResponse(int resId, int itemId, boolean help) {
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattServer.java 474 public boolean sendResponse(BluetoothDevice device, int requestId,
476 if (VDBG) Log.d(TAG, "sendResponse() - device: " + device.getAddress());
480 mService.sendResponse(mServerIf, device.getAddress(), requestId,
  /pdk/apps/CameraITS/service/src/com/android/camera2/its/
ItsService.java 306 mSocketRunnableObj.sendResponse("cameraOpened", "");
319 mSocketRunnableObj.sendResponse("cameraClosed", "");
358 mSocketRunnableObj.sendResponse(tag, null, jsonObj, null);
554 public void sendResponse(String tag, String str, JSONObject obj, ByteBuffer bbuf)
585 public void sendResponse(String tag, String str)
587 sendResponse(tag, str, null, null);
590 public void sendResponse(String tag, JSONObject obj)
592 sendResponse(tag, null, obj, null);
597 sendResponse(tag, null, null, bbuf);
600 public void sendResponse(LinkedList<MySensorEvent> events
    [all...]
  /frameworks/base/core/java/android/net/
DnsPinger.java 180 sendResponse(msg.arg1, -9999, SOCKET_EXCEPTION);
216 sendResponse(curPing.internalId, curPing.packetId, curPing.result);
221 sendResponse(curPing.internalId, curPing.packetId, TIMEOUT);
279 private void sendResponse(int internalId, int externalId, int responseVal) {
  /frameworks/base/obex/javax/obex/
ServerOperation.java 162 mParent.sendResponse(ResponseCodes.OBEX_HTTP_REQ_TOO_LARGE, null);
192 mParent.sendResponse(ResponseCodes.OBEX_HTTP_UNAUTHORIZED, null);
324 mParent.sendResponse(ResponseCodes.OBEX_HTTP_INTERNAL_ERROR, null);
330 mParent.sendResponse(type, sendHeader);
399 mParent.sendResponse(type, out.toByteArray());
425 mParent.sendResponse(ResponseCodes.OBEX_HTTP_OK, null);
431 mParent.sendResponse(ResponseCodes.OBEX_HTTP_BAD_REQUEST, null);
448 mParent.sendResponse(ResponseCodes.OBEX_HTTP_REQ_TOO_LARGE, null);
477 mParent.sendResponse(ResponseCodes.OBEX_HTTP_UNAUTHORIZED, null);
ServerSession.java 138 sendResponse(ResponseCodes.OBEX_HTTP_NOT_IMPLEMENTED, null);
176 sendResponse(code, null);
219 sendResponse(ResponseCodes.OBEX_HTTP_INTERNAL_ERROR, null);
246 sendResponse(ResponseCodes.OBEX_HTTP_INTERNAL_ERROR, null);
256 public void sendResponse(int code, byte[] header) throws IOException {
361 sendResponse(ResponseCodes.OBEX_HTTP_INTERNAL_ERROR, null);
469 sendResponse(ResponseCodes.OBEX_HTTP_INTERNAL_ERROR, null);
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
MockTransport.java 156 private void sendResponse(Transaction pair) {
167 Assert.fail("Invalid action for sendResponse: " + pair.mAction);
263 sendResponse(pair);
325 sendResponse(pair);
  /frameworks/base/services/usb/java/com/android/server/usb/
UsbDebuggingManager.java 133 private void sendResponse(String msg) {
200 sendResponse("OK");
205 sendResponse("NO");
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipHelper.java 362 transaction.sendResponse(response);
392 inviteTransaction.sendResponse(response);
414 inviteTransaction.sendResponse(response);
447 public void sendResponse(RequestEvent event, int responseCode)
457 getServerTransaction(event).sendResponse(response);
459 throw new SipException("sendResponse()", e);
488 inviteTransaction.sendResponse(response);
SipSessionGroup.java 493 mSipHelper.sendResponse(event, response);
515 mSipHelper.sendResponse((RequestEvent) evt, Response.OK);
822 mSipHelper.sendResponse((RequestEvent) evt, Response.OK);
826 mSipHelper.sendResponse((RequestEvent) evt,
840 mSipHelper.sendResponse((RequestEvent) evt, Response.OK);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 738 * @see javax.sip.SipProvider#sendResponse(javax.sip.message.Response)
740 public void sendResponse(Response response) throws SipException {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 404 private void sendResponse(SIPResponse transactionResponse) throws IOException {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhone.java     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
GattService.java 509 public void sendResponse(int serverIf, String address, int requestId,
513 service.sendResponse(serverIf, address, requestId, status, offset, value);
    [all...]
  /hardware/ril/libril/
ril.cpp 250 static int sendResponse (Parcel &p, RIL_SOCKET_ID socket_id);
504 sendResponse(pErr, socket_id);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 

Completed in 1111 milliseconds

1 2